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



178
179
180
# File 'lib/rust/core/types/language.rb', line 178

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