Class: IntegerT
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(value) ⇒ IntegerT
constructor
A new instance of IntegerT.
Methods inherited from Any
Constructor Details
#initialize(value) ⇒ IntegerT
Returns a new instance of IntegerT.
37 |
# File 'lib/types/integer_t.rb', line 37 def initialize(value) = super(setup_value(value)) |
Class Method Details
.t(value) ⇒ Object
8 9 10 11 12 |
# File 'lib/types/integer_t.rb', line 8 def t(value) raise RubytTypeError.new(IntegerT, value.class) unless value.is_a? IntegerT value end |