Class: Rust::Null
- Inherits:
-
RustDatatype
- Object
- RustDatatype
- Rust::Null
- Defined in:
- lib/rust/core/types/datatype.rb
Overview
The null value in R
Class Method Summary collapse
Methods inherited from RustDatatype
#load_in_r_as, pull_priority, #r_hash, #r_mirror, #r_mirror_to
Class Method Details
.can_pull?(type, klass) ⇒ Boolean
111 112 113 |
# File 'lib/rust/core/types/datatype.rb', line 111 def self.can_pull?(type, klass) return type == "NULL" && klass == "NULL" end |
.pull_variable(variable, type, klass) ⇒ Object
115 116 117 |
# File 'lib/rust/core/types/datatype.rb', line 115 def self.pull_variable(variable, type, klass) return nil end |