class Class

Public Instance Methods

===(other) click to toggle source
# File lib/cbor-pp.rb, line 138
def ===(other)
  if other.respond_to? :__getobj__
    other.__getobj__.kind_of? self
  else
    other.kind_of? self
  end
end