class Array

Extensions for Ruby's `Array` class.

Public Instance Methods

to_sxp() click to toggle source

Returns the SXP representation of this object.

@return [String]

# File lib/sxp/writer.rb, line 123
def to_sxp
  '(' << map { |x| x.to_sxp }.join(' ') << ')'
end