Class: JSONSchema::Canonical::NumberView
- Inherits:
-
Object
- Object
- JSONSchema::Canonical::NumberView
- Defined in:
- sig/jsonschema.rbs
Overview
A number value within a real interval.
Instance Method Summary collapse
- #deconstruct_keys ⇒ Hash[Symbol, untyped]
- #exclusive_maximum ⇒ Boolean
- #exclusive_minimum ⇒ Boolean
- #inspect ⇒ String
- #maximum ⇒ Integer, ...
- #minimum ⇒ Integer, ...
- #multiple_of ⇒ Array[Integer | Float]
Instance Method Details
#deconstruct_keys ⇒ Hash[Symbol, untyped]
102 |
# File 'sig/jsonschema.rbs', line 102
def deconstruct_keys: (untyped keys) -> Hash[Symbol, untyped]
|
#exclusive_maximum ⇒ Boolean
99 |
# File 'sig/jsonschema.rbs', line 99
def exclusive_maximum: () -> bool
|
#exclusive_minimum ⇒ Boolean
97 |
# File 'sig/jsonschema.rbs', line 97
def exclusive_minimum: () -> bool
|
#inspect ⇒ String
101 |
# File 'sig/jsonschema.rbs', line 101
def inspect: () -> String
|
#maximum ⇒ Integer, ...
98 |
# File 'sig/jsonschema.rbs', line 98
def maximum: () -> (Integer | Float)?
|
#minimum ⇒ Integer, ...
96 |
# File 'sig/jsonschema.rbs', line 96
def minimum: () -> (Integer | Float)?
|
#multiple_of ⇒ Array[Integer | Float]
100 |
# File 'sig/jsonschema.rbs', line 100
def multiple_of: () -> Array[Integer | Float]
|