scalaz.http

Util

object Util extends AnyRef

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. Hide All
  2. Show all
  1. Util
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Type Members

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

Value Members

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

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

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

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

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

    Attributes
    final
    Definition Classes
    Any
  6. object Digits extends AnyRef

  7. object Nel extends AnyRef

  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. def asInstanceOf [T0] : T0

    Attributes
    final
    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[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. def eq (arg0: AnyRef): Boolean

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

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

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

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

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

    Attributes
    final
    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. def ne (arg0: AnyRef): Boolean

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

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

    Attributes
    final
    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. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  26. def toString (): String

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

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any