cask.internal

Type members

Classlikes

@implicitNotFound("Cannot return ${T} as a ${V}")
class Conversion[T, V](val f: T => V)
Companion:
object
object Conversion
Companion:
class
Companion:
class
case class DispatchTrie[T](current: Option[(T, Boolean)], children: Map[String, DispatchTrie[T]])

A simple Trie that can be compiled from a list of endpoints, to allow endpoint lookup in O(length-of-request-path) time. Lookup returns the T this trie contains, as well as a map of bound wildcards (path segments starting with :) and any remaining un-used path segments (only when current._2 == true, indicating this route allows trailing segments)

A simple Trie that can be compiled from a list of endpoints, to allow endpoint lookup in O(length-of-request-path) time. Lookup returns the T this trie contains, as well as a map of bound wildcards (path segments starting with :) and any remaining un-used path segments (only when current._2 == true, indicating this route allows trailing segments)

Companion:
object
object Util