class Rserve::REXP::Function
represents a Function
in R
Attributes
body[RW]
head[RW]
Public Class Methods
new(head,body)
click to toggle source
Calls superclass method
Rserve::REXP::new
# File lib/rserve/rexp/function.rb, line 6 def initialize(head,body) super() @head=head @body=body end
Public Instance Methods
to_ruby()
click to toggle source
# File lib/rserve/rexp/function.rb, line 11 def to_ruby {:head=>@head.to_ruby,:body=>@body.to_ruby} end