gonzedge/rambling-trie

View on GitHub
lib/rambling/trie/nodes/missing.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module Rambling
  module Trie
    module Nodes
      # A representation of a missing node in the trie data structure. Returned when a node is not found.
      class Missing < Rambling::Trie::Nodes::Node
      end
    end
  end
end