def get()

in scala-repl/src/main/scala/org/jetbrains/ztools/scala/core/TrieMap.scala [108:113]


  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
  }