Class: JSONSchema::Canonical::IntegerView
- Inherits:
-
Object
- Object
- JSONSchema::Canonical::IntegerView
- Defined in:
- sig/jsonschema.rbs
Overview
An integer value within a closed interval, optionally a multiple of a divisor.
Instance Method Summary collapse
- #deconstruct_keys ⇒ Hash[Symbol, untyped]
- #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]
117 |
# File 'sig/jsonschema.rbs', line 117
def deconstruct_keys: (untyped keys) -> Hash[Symbol, untyped]
|
#inspect ⇒ String
116 |
# File 'sig/jsonschema.rbs', line 116
def inspect: () -> String
|
#maximum ⇒ Integer?
113 |
# File 'sig/jsonschema.rbs', line 113
def maximum: () -> Integer?
|
#minimum ⇒ Integer?
112 |
# File 'sig/jsonschema.rbs', line 112
def minimum: () -> Integer?
|
#multiple_of ⇒ Array[Integer | Float]
114 |
# File 'sig/jsonschema.rbs', line 114
def multiple_of: () -> Array[Integer | Float]
|
#not_multiple_of ⇒ Array[Integer | Float]
115 |
# File 'sig/jsonschema.rbs', line 115
def not_multiple_of: () -> Array[Integer | Float]
|