Packages

p

cask

internal

package internal

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. class Conversion[T, V] extends AnyRef
    Annotations
    @implicitNotFound( "Cannot return ${T} as a ${V}" )
  2. case class DispatchTrie[T](current: Option[(T, Boolean)], children: Map[String, DispatchTrie[T]]) extends Product with Serializable

    A simple Trie that can be compiled from a list of endpoints, to allow endpoint lookup in O(length-of-request-path) time.

    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)

Value Members

  1. object Conversion
  2. object DispatchTrie extends Serializable
  3. object Util

Ungrouped