RawRadixTree.containsAt

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