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]
92 |
# File 'sig/jsonschema.rbs', line 92
def deconstruct_keys: (untyped keys) -> Hash[Symbol, untyped]
|
#exclusive_maximum ⇒ Boolean
89 |
# File 'sig/jsonschema.rbs', line 89
def exclusive_maximum: () -> bool
|
#exclusive_minimum ⇒ Boolean
87 |
# File 'sig/jsonschema.rbs', line 87
def exclusive_minimum: () -> bool
|
#inspect ⇒ String
91 |
# File 'sig/jsonschema.rbs', line 91
def inspect: () -> String
|
#maximum ⇒ Integer, ...
88 |
# File 'sig/jsonschema.rbs', line 88
def maximum: () -> (Integer | Float)?
|
#minimum ⇒ Integer, ...
86 |
# File 'sig/jsonschema.rbs', line 86
def minimum: () -> (Integer | Float)?
|
#multiple_of ⇒ Array[Integer | Float]
90 |
# File 'sig/jsonschema.rbs', line 90
def multiple_of: () -> Array[Integer | Float]
|