RawRadixTree.containsAt

  1. inout(Value*) containsAt(Leaf1!Value curr, UKey key)
    template RawRadixTree(Value = void, A_)
    pure nothrow @safe @nogc
    static if(isValue)
    inout(Value*)
    containsAt
    (
    inout Leaf1!Value curr
    ,)
    if (
    isAllocator!A_
    )
  2. inout(Value*) containsAt(Node curr, UKey key)
  3. bool containsAt(Leaf1!Value curr, UKey key)
  4. bool containsAt(Node curr, UKey key)

Return Value

Type: inout(Value*)

true if key is stored under curr, false otherwise.

Meta