rapture

core

package core

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

Type Members

  1. case class BadHttpResponse() extends Exception with HttpExceptions with Product with Serializable

  2. trait Cell[T] extends AnyRef

  3. class Counter extends AnyRef

  4. sealed trait CryptoExceptions extends Exception with IoException

  5. case class Csv(data: Seq[Seq[String]]) extends Product with Serializable

  6. case class DecryptionException() extends Exception with CryptoExceptions with Product with Serializable

  7. case class Default[+T](default: T) extends Product with Serializable

    Annotations
    @implicitNotFound( "No default value for type ${T}" )
  8. trait ExceptionHandler extends AnyRef

    Annotations
    @implicitNotFound( ... )
  9. case class Forbidden() extends Exception with HttpExceptions with Product with Serializable

  10. sealed trait GeneralIoExceptions extends Exception with IoException

  11. sealed trait HttpExceptions extends Exception with IoException

  12. case class InterruptedIo() extends Exception with GeneralIoExceptions with Product with Serializable

  13. implicit class Into[T] extends AnyRef

  14. sealed trait IoException extends Exception

  15. trait Lookup[Index] extends AnyRef

    Provides a simple class mixin for creating a list of items from which items can be looked up.

  16. case class NotFound() extends Exception with NotFoundExceptions with HttpExceptions with Product with Serializable

  17. sealed trait NotFoundExceptions extends Exception with GeneralIoExceptions

  18. case class ParseException(source: String, line: Option[Int] = scala.None, column: Option[Int] = scala.None) extends Exception with Product with Serializable

  19. abstract class Pool[Resource] extends AnyRef

    Implements a dynamic pool of some resource, e.

  20. class Repeater[T] extends AnyRef

  21. implicit class SeqExtras[A, C[A] <: Seq[A]] extends AnyRef

    Annotations
    @inline()
  22. case class StandardParser[T](parse: (String) ⇒ Option[T]) extends Product with Serializable

    A generic string parser

  23. trait TimeSystem[Instant, Duration] extends AnyRef

    Annotations
    @implicitNotFound( ... )
  24. case class TooManyRedirects() extends Exception with HttpExceptions with Product with Serializable

  25. type implicitNotFound = scala.annotation.implicitNotFound

Value Members

  1. final def ?[T](implicit t: T): T

    Annotations
    @inline()
  2. object Cell

  3. object Main extends App

  4. object TimeSystem

  5. object Utils

  6. object Var

  7. implicit val booleanParser: StandardParser[Boolean]

  8. implicit val byteParser: StandardParser[Byte]

  9. implicit val charParser: StandardParser[Char]

  10. object defaults

  11. implicit val doubleParser: StandardParser[Double]

  12. implicit val floatParser: StandardParser[Float]

  13. def fork(blk: ⇒ Unit): Thread

    Convenience method for forking a block of code to a new thread

  14. implicit val implicitConversions: implicitConversions

  15. implicit val intParser: StandardParser[Int]

  16. implicit val longParser: StandardParser[Long]

  17. object raw extends ThrowExceptions

  18. def repeat[T](blk: ⇒ T): Repeater[T]

  19. implicit val shortParser: StandardParser[Short]

  20. object strategy

  21. implicit val stringParser: StandardParser[String]

  22. def time[T](blk: ⇒ T): (T, Long)

    Times how long it takes to perform an operation, returning a pair of the result and the duration of the operation in milliseconds.

  23. object timeSystems

  24. def yCombinator[A, B](fn: ((A) ⇒ B) ⇒ (A) ⇒ B): (A) ⇒ B

  25. def yielding[T](result: T)(fn: ⇒ Unit): T

Inherited from AnyRef

Inherited from Any

Ungrouped