scalaz.http

Util

object Util

Utility functions not specific to any particular context within HTTP.

Source
Util.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Util
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. trait AsHashMap[T[_], SM[_]] extends AnyRef

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. object Digits

  7. object Nel

  8. def asHashMap[T[_], SM[_]]: AsHashMap[T, SM]

    Indexes the given sequence of key/value pairs using an empty hash-map.

    Indexes the given sequence of key/value pairs using an empty hash-map. The key/value pair type constructor must support fold-left and the index is created in constant space.

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def asMap[T[_], SM[_], K, V](e: Map[K, SM[V]], kvs: T[(K, V)])(implicit f: Foldable[T], s: Semigroup[SM[V]], md: Monad[SM]): Map[K, SM[V]]

    Indexes the given sequence of key/value pairs using the given map.

    Indexes the given sequence of key/value pairs using the given map. The key/value pair type constructor must support fold-left and the index is created in constant space.

  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  12. def encode(p: (String, String)*): String

    Encodes the given parameters by inserting an ampersand (&) between each pair and an equals sign (=) with each pair.

  13. def encodeParameters(p: (List[Char], List[Char])*): String

    Encodes the given parameters by inserting an ampersand (&) between each pair and an equals sign (=) with each pair.

  14. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  17. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. def mapHeads[K, C](p: Map[K, NonEmptyList[C]]): Map[K, C]

    Returns a map of key/value pairs where only the first value for the given key is available.

  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  24. def parameters(p: List[Char]): List[(List[Char], List[Char])]

    Splits the given argument by ampersand (&) then each list again by the equals sign (=).

    Splits the given argument by ampersand (&) then each list again by the equals sign (=). e.g. parameters("a=b&c=d&e=f") == [("a", "b"), ("c", "d"), ("e", "f")]

  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  26. def toString(): String

    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  28. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  29. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any

Ungrouped