Class: Unsigned
- Inherits:
- BasicObject
- Defined in:
- lib/identikey/unsigned.rb
Overview
Wrapper for an integer immediate value, that is used only as an annotation for typed_attributes_list_from() in order to generate the correct XSD type from an Object’s class.
Instance Method Summary collapse
- #class ⇒ Object
-
#initialize(value) ⇒ Unsigned
constructor
A new instance of Unsigned.
- #method_missing(meth, *args, &block) ⇒ Object
Constructor Details
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(meth, *args, &block) ⇒ Object
19 20 21 |
# File 'lib/identikey/unsigned.rb', line 19 def method_missing(meth, *args, &block) @int.public_send(meth, *args, &block) end |
Instance Method Details
#class ⇒ Object
15 16 17 |
# File 'lib/identikey/unsigned.rb', line 15 def class ::Unsigned end |