MobilityDB 1.3
Loading...
Searching...
No Matches
Functions

Constructor functions for set and span types. More...

Functions

Setbigintset_make (const int64 *values, int count)
 Return a big integer set from an array of values. More...
 
Spanbigintspan_make (int64 lower, int64 upper, bool lower_inc, bool upper_inc)
 Return a big integer span from the bounds. More...
 
Setdateset_make (const DateADT *values, int count)
 Return a date set from an array of values. More...
 
Spandatespan_make (DateADT lower, DateADT upper, bool lower_inc, bool upper_inc)
 Return a date span from the bounds. More...
 
Setfloatset_make (const double *values, int count)
 Return a float set from an array of values. More...
 
Spanfloatspan_make (double lower, double upper, bool lower_inc, bool upper_inc)
 Return a float span from the bounds. More...
 
Setintset_make (const int *values, int count)
 Return an integer set from an array of values. More...
 
Spanintspan_make (int lower, int upper, bool lower_inc, bool upper_inc)
 Return an integer span from the bounds. More...
 
Setset_copy (const Set *s)
 Return a copy of a set. More...
 
Spanspan_copy (const Span *s)
 Return a copy of a span. More...
 
SpanSetspanset_copy (const SpanSet *ss)
 Return a copy of a span set. More...
 
SpanSetspanset_make (Span *spans, int count)
 Return a span set from an array of disjoint spans. More...
 
Settextset_make (const text **values, int count)
 Return a text set from an array of values. More...
 
Settstzset_make (const TimestampTz *values, int count)
 Return a timestamptz set from an array of values. More...
 
Spantstzspan_make (TimestampTz lower, TimestampTz upper, bool lower_inc, bool upper_inc)
 Return a timestamptz span from the bounds. More...
 

Detailed Description

Constructor functions for set and span types.