Class: TypedData::Schema::NullType
- Inherits:
-
Type
- Object
- Type
- TypedData::Schema::NullType
show all
- Defined in:
- lib/typed_data/schema/null_type.rb
Constant Summary
Constants inherited
from Type
Type::SUPPORTED_LOGICAL_TYPES
Instance Method Summary
collapse
Methods inherited from Type
#accept, #initialize, #to_s
Instance Method Details
#match?(value) ⇒ Boolean
10
11
12
|
# File 'lib/typed_data/schema/null_type.rb', line 10
def match?(value)
value.nil?
end
|
#primitive? ⇒ Boolean
6
7
8
|
# File 'lib/typed_data/schema/null_type.rb', line 6
def primitive?
true
end
|