class Crystalline::Containers::Trie(T)

Defined in:

containers/trie.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new #

[View source]

Instance Method Detail

def [](key) #

[View source]
def []=(key, value) #

[View source]
def get(key : String) #

[View source]
def has_key?(key : String) #

[View source]
def longest_prefix(string : String) #

[View source]
def push(key : String, value : T) #

[View source]
def wildcard(string : String) #

[View source]