Class: Rust::Verbatim
Overview
Represents a verbatim R expression
Instance Method Summary collapse
-
#initialize(expression) ⇒ Verbatim
constructor
Creates a verbatim R expression.
- #to_R ⇒ Object
Constructor Details
#initialize(expression) ⇒ Verbatim
Creates a verbatim R expression
181 182 183 |
# File 'lib/rust/core/types/language.rb', line 181 def initialize(expression) @expression = expression end |
Instance Method Details
#to_R ⇒ Object
185 186 187 |
# File 'lib/rust/core/types/language.rb', line 185 def to_R @expression end |