module Rambling module Trie # A representation of a missing node in the Trie data structure. class MissingNode < Node end end end