See Section 9.17 for an overview of range types.
Table 10.54 shows the specialized operators available for range types. In addition to those, the usual comparison operators shown in Table 10.1 are available for range types. The comparison operators order first by the range lower bounds, and only if those are equal do they compare the upper bounds. This does not usually result in a useful overall ordering, but the operators are provided to allow unique indexes to be constructed on ranges.
Table 10.54. Range Operators
Operator Description Example(s) |
---|
Does the first range contain the second?
|
Does the range contain the element?
|
Is the first range contained by the second?
|
Is the element contained in the range?
|
Do the ranges overlap, that is, have any elements in common?
|
Is the first range strictly left of the second?
|
Is the first range strictly right of the second?
|
Does the first range not extend to the right of the second?
|
Does the first range not extend to the left of the second?
|
Are the ranges adjacent?
|
Computes the union of the ranges. The ranges must overlap or be
adjacent, so that the union is a single range (but
see
|
Computes the intersection of the ranges.
|
Computes the difference of the ranges. The second range must not be contained in the first in such a way that the difference would not be a single range.
|
The left-of/right-of/adjacent operators always return false when an empty range is involved; that is, an empty range is not considered to be either before or after any other range.
Table 10.55 shows the functions available for use with range types.
Table 10.55. Range Functions
The lower_inc
, upper_inc
,
lower_inf
, and upper_inf
functions all return false for an empty range.