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

Traditional comparison functions for temporal types. More...

Functions

int temporal_cmp (const Temporal *temp1, const Temporal *temp2)
 Return -1, 0, or 1 depending on whether the first temporal value is less than, equal, or greater than the second one. More...
 
bool temporal_eq (const Temporal *temp1, const Temporal *temp2)
 Return true if two temporal values are equal. More...
 
bool temporal_ge (const Temporal *temp1, const Temporal *temp2)
 Return true if the first temporal value is greater than or equal to the second one. More...
 
bool temporal_gt (const Temporal *temp1, const Temporal *temp2)
 Return true if the first temporal value is greater than the second one. More...
 
bool temporal_le (const Temporal *temp1, const Temporal *temp2)
 Return true if the first temporal value is less than or equal to the second one. More...
 
bool temporal_lt (const Temporal *temp1, const Temporal *temp2)
 Return true if the first temporal value is less than the second one. More...
 
bool temporal_ne (const Temporal *temp1, const Temporal *temp2)
 Return true if two temporal values are different. More...
 

Detailed Description

Traditional comparison functions for temporal types.