Class: Lisp::Format::Directives::SExpression

Inherits:
Print show all
Defined in:
lib/carat/lisp-format.rb

Overview

Represents the ~S (S-Expression) directive.

Instance Attribute Summary

Attributes inherited from Directive

#pos

Instance Method Summary collapse

Methods inherited from Print

#execute

Methods inherited from Directive

#execute, #join

Constructor Details

#initialize(*args) ⇒ SExpression

Sets inspect to true in the argument list.



632
633
634
# File 'lib/carat/lisp-format.rb', line 632

def initialize(*args)
  super(*args << true)
end