Class used internally to represent native booleans.
| INT_ | Class used internally to represent native booleans. |
| Functions and Properties | |
| INT_.bits | Get number of bits of the native integers represented by this class. |
| INT_. | Set number of bits of the native integers represented by this class. |
| INT_. | Get boolean indicating whether this class represents signed or unsigned integers. |
| INT_. | Set boolean indicating whether this class represents signed or unsigned integers. |
| INT_.to_s | Display name of this type. |
| INT_. | Return default value for this type. |
| INT_. | Get memory size of this type. |
| INT_. | Descriptor for Array.pack and String.unpack. |
| INT_. | Ruby coercion mechanism. |
| INT_. | Native coercion. |
| INT_.== | Ruby comparison operator. |
| Related | |
| Constants | |
| Signed or unsigned | To be used with the method INT. |
| Integer type shortcuts | |
| Functions | |
| INT | Create integer class. |
| Constants | |
| Signed or unsigned | To be used with the method INT. |
| Integer type shortcuts | |
| Functions | |
| INT | Create integer class. |
To be used with the method INT.
| SIGNED | true |
| UNSIGNED | false |
Get number of bits of the native integers represented by this class.
def INT_.bits
Set number of bits of the native integers represented by this class.
def INT_.bits=( value )
Display name of this type.
def INT_.to_s
Return default value for this type.
def INT_.default
Get memory size of this type.
def INT_.typesize
Descriptor for Array.pack and String.unpack.
def INT_.descriptor
Ruby coercion mechanism.
def INT_.coercion( other )
Native coercion.
def INT_.coerce( other )
Ruby comparison operator.
def INT_.==( other )