RadixTreeUtils class abstract

Radix tree utility functions.

Constructors

RadixTreeUtils()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

largestPrefixLength(String first, String second) int
Finds the length of the largest prefix for two character sequences.
putValue<T>(RadixTreeNode<T> node, String key, T? value) → void
Put the value with the given key from the subtree rooted at the given node.
removeValue<T>(RadixTreeNode<T> node, String key) → T?
Remove the value with the given key from the subtree rooted at the given node.