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]
Instance Method Details
#deconstruct_keys ⇒ Hash[Symbol, untyped]
101 |
# File 'sig/jsonschema.rbs', line 101
def deconstruct_keys: (untyped keys) -> Hash[Symbol, untyped]
|
#inspect ⇒ String
100 |
# File 'sig/jsonschema.rbs', line 100
def inspect: () -> String
|
#maximum ⇒ Integer?
98 |
# File 'sig/jsonschema.rbs', line 98
def maximum: () -> Integer?
|
#minimum ⇒ Integer?
97 |
# File 'sig/jsonschema.rbs', line 97
def minimum: () -> Integer?
|
#multiple_of ⇒ Array[Integer | Float]
99 |
# File 'sig/jsonschema.rbs', line 99
def multiple_of: () -> Array[Integer | Float]
|