OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
VarlenDatum Struct Reference

#include <Datum.h>

+ Inheritance diagram for VarlenDatum:

Public Member Functions

DEVICE VarlenDatum ()
 
virtual DEVICE ~VarlenDatum ()
 
 VarlenDatum (const size_t l, int8_t *p, const bool n)
 

Public Attributes

size_t length
 
int8_t * pointer
 
bool is_null
 

Detailed Description

Definition at line 54 of file Datum.h.

Constructor & Destructor Documentation

DEVICE VarlenDatum::VarlenDatum ( )
inline

Definition at line 59 of file Datum.h.

59 : length(0), pointer(nullptr), is_null(true) {}
bool is_null
Definition: Datum.h:57
int8_t * pointer
Definition: Datum.h:56
size_t length
Definition: Datum.h:55
virtual DEVICE VarlenDatum::~VarlenDatum ( )
inlinevirtual

Definition at line 60 of file Datum.h.

60 {}
VarlenDatum::VarlenDatum ( const size_t  l,
int8_t *  p,
const bool  n 
)
inline

Definition at line 62 of file Datum.h.

63  : length(l), pointer(p), is_null(n) {}
bool is_null
Definition: Datum.h:57
int8_t * pointer
Definition: Datum.h:56
constexpr double n
Definition: Utm.h:38
size_t length
Definition: Datum.h:55

Member Data Documentation


The documentation for this struct was generated from the following file: