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
387 388 389 |
# File 'lib/relisp/type_conversion/programming_types.rb', line 387 def self.from_elisp(*args) nil end |
Instance Method Details
#to_elisp ⇒ Object
383 384 385 |
# File 'lib/relisp/type_conversion/programming_types.rb', line 383 def to_elisp self.to_s end |