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

Abstract Value Members

  1. def log : LOG[L]

    Attributes
    abstract
  2. def over : A

    Attributes
    abstract

Concrete 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 :++-> (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. def == (arg0: AnyRef): Boolean

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

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

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

    Attributes
    final
    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. def getClass (): java.lang.Class[_]

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

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

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

  29. def ne (arg0: AnyRef): Boolean

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

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

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

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

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

    Definition Classes
    LoggerNewType
  41. def wait (): Unit

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

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

    Attributes
    final
    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