rubyx/lib/crystal.rb

6 lines
69 B
Ruby
Raw Normal View History

class Numeric
def fits_u8?
self >= 0 and self <= 255
end
end