class Icss::Meta::IdenticalHashFactory

Public Class Methods

receive(obj) click to toggle source
# File lib/icss/type/type_factory.rb, line 18
def self.receive(obj)
  unless obj.nil? || obj.respond_to?(:each_pair) then raise(ArgumentError, "Must supply a hashlike value, got #{obj.to_s[0..100]}") ; end
  obj
end
to_schema() click to toggle source
# File lib/icss/type/type_factory.rb, line 17
def self.to_schema() { :type => 'map' } ; end