scala

util

package util

Visibility
  1. Public
  2. All

Type Members

  1. class DynamicVariable[T] extends AnyRef

    DynamicVariables provide a binding mechanism where the current value is found through dynamic scope, but where access to the variable itself is resolved through static scope.

  2. final case class Failure[+T](exception: Throwable) extends Try[T] with Product with Serializable

  3. class MurmurHash[T] extends (T) ⇒ Unit

    A class designed to generate well-distributed non-cryptographic hashes.

  4. class Random extends AnyRef

  5. final case class Success[+T](value: T) extends Try[T] with Product with Serializable

  6. sealed abstract class Try[+T] extends AnyRef

    The Try type represents a computation that may either result in an exception, or return a successfully computed value.

Value Members

  1. object Marshal extends AnyRef

    Marshalling of Scala objects using Scala manifests.

  2. object MurmurHash extends AnyRef

    An object designed to generate well-distributed non-cryptographic hashes.

  3. object Properties extends PropertiesTrait

    Loads library.

  4. object Random extends Random

    The object Random offers a default implementation of scala.

  5. object Sorting extends AnyRef

    The Sorting object provides functions that can sort various kinds of objects.

  6. object Try extends AnyRef

  7. package automata

  8. package continuations

    Delimited continuations are a feature for modifying the usual control flow of a program.

  9. package control

  10. package grammar

  11. package logging

  12. package matching

  13. package parsing

  14. package regexp