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]
- #excludes_integers ⇒ Boolean
- #exclusive_maximum ⇒ Boolean
- #exclusive_minimum ⇒ Boolean
- #inspect ⇒ String
- #maximum ⇒ Integer, ...
- #minimum ⇒ Integer, ...
- #multiple_of ⇒ Array[Integer | Float]
- #not_multiple_of ⇒ Array[Integer | Float]
Instance Method Details
#deconstruct_keys ⇒ Hash[Symbol, untyped]
107 |
# File 'sig/jsonschema.rbs', line 107
def deconstruct_keys: (untyped keys) -> Hash[Symbol, untyped]
|
#excludes_integers ⇒ Boolean
105 |
# File 'sig/jsonschema.rbs', line 105
def excludes_integers: () -> bool
|
#exclusive_maximum ⇒ Boolean
102 |
# File 'sig/jsonschema.rbs', line 102
def exclusive_maximum: () -> bool
|
#exclusive_minimum ⇒ Boolean
100 |
# File 'sig/jsonschema.rbs', line 100
def exclusive_minimum: () -> bool
|
#inspect ⇒ String
106 |
# File 'sig/jsonschema.rbs', line 106
def inspect: () -> String
|
#maximum ⇒ Integer, ...
101 |
# File 'sig/jsonschema.rbs', line 101
def maximum: () -> (Integer | Float)?
|
#minimum ⇒ Integer, ...
99 |
# File 'sig/jsonschema.rbs', line 99
def minimum: () -> (Integer | Float)?
|
#multiple_of ⇒ Array[Integer | Float]
103 |
# File 'sig/jsonschema.rbs', line 103
def multiple_of: () -> Array[Integer | Float]
|
#not_multiple_of ⇒ Array[Integer | Float]
104 |
# File 'sig/jsonschema.rbs', line 104
def not_multiple_of: () -> Array[Integer | Float]
|