def get()

in scala-repl/src/main/scala/spark/ztools.sc [110:115]


    def get(key: String): Option[T] = {
      val k = TrieMap.split(key)
      val node = subtree(k, k.length)
      if (node == null) return Option.empty
      node.value
    }