Previous Up Next

5.40.9  The intersection of intervals: intersect

The intersect operator is an infixed operator.
intersect takes two intervals and returns their intersection.
Input:

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

Output:

[2.00000000000000..3.00000000000000]

Previous Up Next