Kùzu C++ API
|
Stores a vector of Values. More...
#include <flat_tuple.h>
Public Member Functions | |
void | addValue (std::unique_ptr< common::Value > value) |
KUZU_API uint32_t | len () const |
KUZU_API common::Value * | getValue (uint32_t idx) const |
KUZU_API std::string | toString () |
KUZU_API std::string | toString (const std::vector< uint32_t > &colsWidth, const std::string &delimiter="|", uint32_t maxWidth=-1) |
Stores a vector of Values.
void kuzu::processor::FlatTuple::addValue | ( | std::unique_ptr< common::Value > | value | ) |
KUZU_API common::Value * kuzu::processor::FlatTuple::getValue | ( | uint32_t | idx | ) | const |
idx | value index to get. |
KUZU_API uint32_t kuzu::processor::FlatTuple::len | ( | ) | const |
KUZU_API std::string kuzu::processor::FlatTuple::toString | ( | ) |
KUZU_API std::string kuzu::processor::FlatTuple::toString | ( | const std::vector< uint32_t > & | colsWidth, |
const std::string & | delimiter = "|", | ||
uint32_t | maxWidth = -1 ) |
colsWidth | The length of each column |
delimiter | The delimiter to separate each value. |
maxWidth | The maximum length of each column. Only the first maxWidth number of characters of each column will be displayed. |