Module: Icss::Meta::NilClassSchema
Instance Method Summary collapse
Methods included from PrimitiveSchema
Instance Method Details
#fullname ⇒ Object
14 |
# File 'lib/icss/type/simple_types.rb', line 14 def fullname() :null ; end |
#receive(val = nil) ⇒ Object
14 |
# File 'lib/icss/type/simple_types.rb', line 14 def receive(val=nil) raise(ArgumentError, "#{self} must be initialized with nil, but [#{val}] was given") unless val.nil? ; nil ; end |