Method: Gnuplot::Plot#<<

Defined in:
lib/gnuplot.rb

#<<(line) ⇒ Object

Adds an arbitrary line to write to the GNUPLOT process. Returns self to allow chaining.



165
166
167
168
# File 'lib/gnuplot.rb', line 165

def <<(line)
  @arbitrary_lines << line.to_s
  self
end