Interval.opBinary

Set operators for interval intersection (|) and union (&). If the intervals are non-overlapping, an empty interval is returned i.e ZBHO.init union is not a true union but returns the convex hull.

  1. auto opBinary(Interval!cs other)
    struct Interval(CoordSystem cs)
    @safe nothrow pure @nogc
    opBinary
    (
    string op
    )
    if (
    op == "|" ||
    op == "&"
    )
  2. auto opBinary(T off)

Meta