Class: Rust::Variable
Overview
Represents an R variable.
Instance Method Summary collapse
-
#initialize(name) ⇒ Variable
constructor
Creates a variable with the given
name
. - #to_R ⇒ Object
Constructor Details
#initialize(name) ⇒ Variable
Creates a variable with the given name
.
165 166 167 |
# File 'lib/rust/core/types/language.rb', line 165 def initialize(name) @name = name end |
Instance Method Details
#to_R ⇒ Object
169 170 171 |
# File 'lib/rust/core/types/language.rb', line 169 def to_R @name end |