The trie map is:
- A prefix tree written for Scala,
- Generic enough for storing any kind of
Seq[K]
-s - Efficient (d*log n, where d is the depth of the trie) for prefix 'string' (
Seq[K]
) search - Can store any type of value with the keys, under their respective prefixes
Add the following to the build.sbt:
libraryDependencies += "com.hiya" %% "trie-map" % "0.0.4"