gonzedge/rambling-trie

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

Summary

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

%w(node missing compressed raw).each do |file|
  require File.join('rambling', 'trie', 'nodes', file)
end

module Rambling
  module Trie
    # Namespace for all nodes.
    module Nodes
    end
  end
end