Class: RinRuby::R_DataType

Inherits:
Object show all
Defined in:
lib/rinruby.rb

Direct Known Subclasses

R_Character, R_Double, R_Integer, R_Logical

Constant Summary collapse

ID =
RinRuby_Type_Unknown

Class Method Summary collapse

Class Method Details

.===(value) ⇒ Object



656
657
658
# File 'lib/rinruby.rb', line 656

def ===(value)
  convertable?(value)
end

.convertable?(value) ⇒ Boolean

Returns:

  • (Boolean)


653
654
655
# File 'lib/rinruby.rb', line 653

def convertable?(value)
  false
end

.receive(io) ⇒ Object



662
663
664
# File 'lib/rinruby.rb', line 662

def receive(io)
  nil
end

.send(value, io) ⇒ Object



659
660
661
# File 'lib/rinruby.rb', line 659

def send(value, io)
  nil
end