Class: IntegerT

Inherits:
Any show all
Defined in:
lib/types/integer_t.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Any

#t, #t=, #to_s

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

Raises:



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