RawRadixTree.containsAt

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

Return Value

Type: bool

true if key is stored under curr, false otherwise.

Meta