class Rust::DataFrameArray
Public Instance Methods
bind_all()
click to toggle source
# File lib/rust-core.rb, line 666 def bind_all return nil if self.size == 0 result = self.first.clone for i in 1...self.size result .bind_rows!(self[i]) end return result end