Class: Rubex::DataType::Int16

Inherits:
Object
  • Object
show all
Includes:
IntHelpers
Defined in:
lib/rubex/data_type/int_16.rb

Instance Method Summary collapse

Methods included from IntHelpers

#to_ruby_object

Methods included from Helpers

#==, #base_type, #c_function_ptr?, #char_ptr?, #to_ruby_object

Instance Method Details

#<=>(other) ⇒ Object



21
22
23
24
25
26
27
28
29
# File 'lib/rubex/data_type/int_16.rb', line 21

def <=>(other)
  if other.char? || other.int8?
    1
  elsif other.int16?
    0
  else
    -1
  end
end

#from_ruby_object(arg) ⇒ Object



9
10
11
# File 'lib/rubex/data_type/int_16.rb', line 9

def from_ruby_object(arg)
  "(int16_t)NUM2INT(#{arg})"
end

#int16?Boolean

Returns:



13
14
15
# File 'lib/rubex/data_type/int_16.rb', line 13

def int16?
  true
end

#p_formatterObject



17
18
19
# File 'lib/rubex/data_type/int_16.rb', line 17

def p_formatter
  '%d'
end

#to_sObject



5
6
7
# File 'lib/rubex/data_type/int_16.rb', line 5

def to_s
  'int16_t'
end