Previous Up Next

5.38.6 The intersection of intervals: intersect

The intersect operator is a binary infixed operator that finds the intersection of two intervals.

Example

Input:

i[1,3] intersect i[2,4]

Output:

[2.00000000000000..3.00000000000000]

Previous Up Next