Class

scalaz.syntax

IdOpsDeprecated

Related Doc: package syntax

Permalink

final class IdOpsDeprecated[A] extends IdOps[A]

Source
IdOps.scala
Linear Supertypes
IdOps[A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IdOpsDeprecated
  2. IdOps
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new IdOpsDeprecated(self: A)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def <|(f: (A) ⇒ Any): A

    Permalink

    Alias for unsafeTap.

    Alias for unsafeTap.

    Definition Classes
    IdOps
  4. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. final def ??(d: ⇒ A)(implicit ev: <:<[Null, A]): A

    Permalink

    Returns self if it is non-null, otherwise returns d.

    Returns self if it is non-null, otherwise returns d.

    Definition Classes
    IdOps
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def doWhile(f: (A) ⇒ A, p: (A) ⇒ Boolean): A

    Permalink

    Repeatedly apply f, seeded with self, checking after each iteration whether the predicate p holds.

    Repeatedly apply f, seeded with self, checking after each iteration whether the predicate p holds.

    Definition Classes
    IdOps
  9. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  15. def matchOrZero[B](pf: PartialFunction[A, B])(implicit arg0: Monoid[B]): B

    Permalink

    returns

    the result of pf(value) if defined, otherwise the the Zero element of type B.

    Definition Classes
    IdOps
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def squared: (A, A)

    Permalink
    Definition Classes
    IdOps
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  21. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  22. final def unsafeTap(f: (A) ⇒ Any): A

    Permalink

    Applies self to the provide function for its side effect, and returns self.

    Applies self to the provide function for its side effect, and returns self. The Kestrel combinator. Mostly for use with dodgy libraries that give you values that need additional initialization or mutation before they're valid to use.

    The name tap comes from the Ruby method: http://ruby-doc.org/core-2.0.0/Object.html#method-i-tap which allows you to "tap into" a method call chain, in order to perform operations on intermediate results within the chain. unsafe because it enables side effects.

    Definition Classes
    IdOps
  23. def visit[F[_]](p: PartialFunction[A, F[A]])(implicit arg0: Applicative[F]): F[A]

    Permalink

    If the provided partial function is defined for self run this, otherwise lift self into F with the provided scalaz.Applicative.

    If the provided partial function is defined for self run this, otherwise lift self into F with the provided scalaz.Applicative.

    Definition Classes
    IdOps
  24. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def whileDo(f: (A) ⇒ A, p: (A) ⇒ Boolean): A

    Permalink

    Repeatedly apply f, seeded with self, checking before each iteration whether the predicate p holds.

    Repeatedly apply f, seeded with self, checking before each iteration whether the predicate p holds.

    Definition Classes
    IdOps
  28. final def |>[B](f: (A) ⇒ B): B

    Permalink

    Applies self to the provided function.

    Applies self to the provided function. The Thrush combinator.

    Definition Classes
    IdOps
  29. final def [B](f: (A) ⇒ B): B

    Permalink

    Applies self to the provided function.

    Applies self to the provided function. The Thrush combinator.

    Definition Classes
    IdOps
  30. final def (f: (A) ⇒ Any): A

    Permalink

    Alias for unsafeTap.

    Alias for unsafeTap.

    Definition Classes
    IdOps

Deprecated Value Members

  1. def left[B]: \/[A, B]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 7.1) use scalaz.syntax.either._

  2. def right[B]: \/[B, A]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 7.1) use scalaz.syntax.either._

  3. final def wrapNel: NonEmptyList[A]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 7.1) use scalaz.syntax.nel._

Inherited from IdOps[A]

Inherited from AnyRef

Inherited from Any

Ungrouped