Class: RinRuby::R_DataType
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
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
|