IntervalAVLTree.cmpfn

@safe @nogc nothrow alias cmpfn = (x, y) => ((y.interval < x.interval) - (x.interval < y.interval));

  1. int cmpfn(IntervalType x, inout(Node)* y)
    struct IntervalAVLTree(IntervalType)
    pragma(inline, true) @safe @nogc nothrow
    int
    cmpfn
    (
    IntervalType x
    ,
    inout(Node)* y
    )
  2. int cmpfn(inout(Node)* x, inout(Node)* y)

Meta