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]
177 |
# File 'sig/jsonschema.rbs', line 177
def deconstruct_keys: (untyped keys) -> Hash[Symbol, untyped]
|
#inspect ⇒ String
176 |
# File 'sig/jsonschema.rbs', line 176
def inspect: () -> String
|
#maximum ⇒ Integer?
173 |
# File 'sig/jsonschema.rbs', line 173
def maximum: () -> Integer?
|
#minimum ⇒ Integer?
172 |
# File 'sig/jsonschema.rbs', line 172
def minimum: () -> Integer?
|
#multiple_of ⇒ Array[Integer | Float]
174 |
# File 'sig/jsonschema.rbs', line 174
def multiple_of: () -> Array[Integer | Float]
|
#not_multiple_of ⇒ Array[Integer | Float]
175 |
# File 'sig/jsonschema.rbs', line 175
def not_multiple_of: () -> Array[Integer | Float]
|