Imported File#ftype spec from rubyspecs.
[rbx.git] / lib / rbyaml / util.rb
blob8af4f7acc22b97cc3818d505539c194fd8449894
1 class Object
2   def __is_str; false end
3   def __is_sym; false end
4   def __is_a; false end
5   def __is_int; false end
6 end
8 class String
9   def __is_str; true end
10 end
12 class Symbol
13   def __is_sym; true end
14 end
16 class Array
17   def __is_a; true end
18 end
20 class Integer
21   def __is_int; true end
22 end
24 class Fixnum
25   def __is_ascii_num
26     self <= ?9 && self >= ?0
27   end
28 end