Turi Create
4.0
|
#include <core/storage/sframe_data/sframe_rows.hpp>
Classes | |
struct | const_iterator |
Public Member Functions | |
void | copy_reference (const row &other) |
row & | operator= (const row &other) |
row & | operator= (row &&other) |
operator std::vector< flexible_type > () const | |
const flexible_type & | at (size_t i) const |
flexible_type & | at (size_t i) |
const flexible_type & | fast_at (size_t i) const |
const flexible_type & | operator[] (size_t i) const |
flexible_type & | operator[] (size_t i) |
size_t | size () const |
const_iterator | begin () const |
const_iterator | end () const |
An row object which refererences a row of the sframe_rows and mimics a std::vector<flexible_type>.
Definition at line 177 of file sframe_rows.hpp.
|
inline |
Equivalent to operator[] but performs bounds checking
Definition at line 237 of file sframe_rows.hpp.
|
inline |
Equivalent to operator[] but performs bounds checking
Definition at line 245 of file sframe_rows.hpp.
|
inline |
Gets a constant iterator to the first element of the row.
Definition at line 337 of file sframe_rows.hpp.
|
inline |
Makes the current row object have the same reference as another row object.
Definition at line 193 of file sframe_rows.hpp.
|
inline |
Gets a constant iterator to the last element of the row
Definition at line 344 of file sframe_rows.hpp.
|
inline |
Directly index column i of this row
Definition at line 254 of file sframe_rows.hpp.
|
inline |
Implicit cast to std::vector<flexible_type>
Definition at line 228 of file sframe_rows.hpp.
Assigns the value of this row. Modifies the row this row references to have the same values as another row.
Definition at line 202 of file sframe_rows.hpp.
Moves another row value to this row. Modifies the row this row references to have the same values as another row.
Definition at line 214 of file sframe_rows.hpp.
|
inline |
Directly index column i of this row
Definition at line 262 of file sframe_rows.hpp.
|
inline |
Directly index column i of this row
Definition at line 270 of file sframe_rows.hpp.
|
inline |
Returns the number of columns in this row.
Definition at line 278 of file sframe_rows.hpp.