org.specs2.internal.scalaz

Logger

trait Logger[L, A] extends NewType[Writer[IndSeq[L], A]]

Linear Supertypes
NewType[Writer[IndSeq[L], A]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Logger
  2. NewType
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def log: LOG[L]

  2. abstract def over: A

Concrete 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. def :++->(e: LOG[L]): Logger[L, A]

    Append the given value to the current log.

  5. def :+->(e: L): Logger[L, A]

    Append the given value to the current log.

  6. def :+->>(e: (A) ⇒ LOG[L]): Logger[L, A]

    Append the given value to the current log by applying to the underlying value.

  7. def :->>(e: (A) ⇒ L): Logger[L, A]

    Append the given value to the current log by applying to the underlying value.

  8. def <-++:(e: LOG[L]): Logger[L, A]

    Prepend the given value to the current log.

  9. def <-+:(e: L): Logger[L, A]

    Prepend the given value to the current log.

  10. def <<-+:(e: (A) ⇒ LOG[L]): Logger[L, A]

    Prepend the given value to the current log by applying to the underlying value.

  11. def <<-:(e: (A) ⇒ L): Logger[L, A]

    Prepend the given value to the current log by applying to the underlying value.

  12. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  14. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  15. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  16. def effectEachLog(k: (L) ⇒ Unit): Logger[L, A]

    Runs the given side-effect on each element of the log, then returns this underlying value.

    Runs the given side-effect on each element of the log, then returns this underlying value. CAUTION: side-effect

  17. def effectLog(k: (LOG[L]) ⇒ Unit): Logger[L, A]

    Runs the given side-effect on the log, then returns this underlying value.

    Runs the given side-effect on the log, then returns this underlying value. CAUTION: side-effect

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

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

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

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  21. def flatMap[B](f: (A) ⇒ Logger[L, B]): Logger[L, B]

  22. def flushEachLog(k: (L) ⇒ Unit): Logger[L, A]

    Runs the given side-effect on each element of the log, then returns this underlying value with an empty log.

    Runs the given side-effect on each element of the log, then returns this underlying value with an empty log. CAUTION: side-effect

  23. def flushLog(k: (LOG[L]) ⇒ Unit): Logger[L, A]

    Runs the given side-effect on the log, then returns this underlying value with an empty log.

    Runs the given side-effect on the log, then returns this underlying value with an empty log. CAUTION: side-effect

  24. def foreach(f: (A) ⇒ Unit): Unit

  25. final def getClass(): Class[_]

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

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

    Definition Classes
    Any
  28. def map[B](f: (A) ⇒ B): Logger[L, B]

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

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

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

    Definition Classes
    AnyRef
  32. def printEachLog(implicit s: Show[L]): Logger[L, A]

    Prints each element of the log, then returns this underlying value.

    Prints each element of the log, then returns this underlying value. CAUTION: side-effect

  33. def printFlushEachLog(implicit s: Show[L]): Logger[L, A]

    Prints each element of the log, then returns this underlying value with an empty log.

    Prints each element of the log, then returns this underlying value with an empty log. CAUTION: side-effect

  34. def printFlushLog(implicit s: Show[L]): Logger[L, A]

    Prints the log, then returns this underlying value with an empty log.

    Prints the log, then returns this underlying value with an empty log. CAUTION: side-effect

  35. def printLog(implicit s: Show[L]): Logger[L, A]

    Prints the log, then returns this underlying value.

    Prints the log, then returns this underlying value. CAUTION: side-effect

  36. def resetLog: Logger[L, A]

    Set the log to be empty.

  37. def setLog(l: LOG[L]): Logger[L, A]

    Set the log to the given value, losing any previous value.

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

    Definition Classes
    AnyRef
  39. def toString(): String

    Definition Classes
    NewType → AnyRef → Any
  40. val value: Writer[LOG[L], A]

    Definition Classes
    LoggerNewType
  41. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  44. def withEachLog(k: (L) ⇒ L): Logger[L, A]

    Transform each log value by the given function.

  45. def withLog(k: (LOG[L]) ⇒ LOG[L]): Logger[L, A]

    Transform the log by the given function.

Inherited from NewType[Writer[IndSeq[L], A]]

Inherited from AnyRef

Inherited from Any