Class: Object
- Inherits:
- BasicObject
- Defined in:
- lib/relisp/type_conversion/programming_types.rb
Overview
Every object is given a default to_elisp
method, and classes get a dummy from_elisp
method.
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.from_elisp(*args) ⇒ Object
344 345 346 |
# File 'lib/relisp/type_conversion/programming_types.rb', line 344 def self.from_elisp(*args) nil end |
Instance Method Details
#to_elisp ⇒ Object
340 341 342 |
# File 'lib/relisp/type_conversion/programming_types.rb', line 340 def to_elisp self.to_s end |