module CasePredicates::IsA

IsA includes predicate methods for type checks

@example

v = "foo"
case v
when string?
  puts "it's a string"
else
  raise "on no!"
end

Constants

TYPES