Class: Rust::Arguments

Inherits:
Array show all
Defined in:
lib/rust/core/types/language.rb

Overview

Represents the arguments of a function in R. Works as an Array of objects.

Instance Method Summary collapse

Methods inherited from Array

#_rust_prob_distance, #distribution

Instance Method Details

#to_RObject



194
195
196
# File 'lib/rust/core/types/language.rb', line 194

def to_R
    return self.map { |v| v.to_R }.join(", ")
end