RawRadixTree.containsAt

  1. inout(Value*) containsAt(Leaf1!Value curr, UKey key)
  2. inout(Value*) containsAt(Node curr, UKey key)
    template RawRadixTree(Value = void, A_)
    @safe pure nothrow @nogc @trusted
    static if(isValue)
    inout(Value*)
    containsAt
    (
    inout Node curr
    ,)
  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