class Moguro::Types::Any

@since 0.0.1

Public Instance Methods

type() click to toggle source

Type name for error message @since 0.0.1 @private

# File lib/moguro/types/any.rb, line 18
def type
  'Any'
end
valid?(_val) click to toggle source
# File lib/moguro/types/any.rb, line 9
def valid?(_val)
  true
end