SortedList.has

Returns whether the set has the given element.

  1. bool has(E a)
    struct SortedList(E, alias cmp = "a < b", bool allowDuplicates = true, alias equal = "a == b")
    @nogc @safe nothrow pure const
    static if(!allowDuplicates)
    bool
    has
    (
    const E a
    )
  2. bool has(T a)

Meta