trait Ops[F[_], A] extends Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- Ops
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def self: F[A]
- abstract val typeClassInstance: TypeClassType
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def flatSequence[G[_], B](implicit arg0: <:<[A, G[F[B]]], G: Applicative[G], F: FlatMap[F]): G[F[B]]
- def flatTraverse[G[_], B](f: (A) => G[F[B]])(implicit G: Applicative[G], F: FlatMap[F]): G[F[B]]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def mapAccumulate[S, B](init: S)(f: (S, A) => (S, B)): (S, F[B])
- def mapWithIndex[B](f: (A, Int) => B): F[B]
- def mapWithLongIndex[B](f: (A, Long) => B): F[B]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def sequence[G[_], B](implicit arg0: <:<[A, G[B]], arg1: Applicative[G]): G[F[B]]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def traverse[G[_], B](f: (A) => G[B])(implicit arg0: Applicative[G]): G[F[B]]
- def traverseTap[G[_], B](f: (A) => G[B])(implicit arg0: Applicative[G]): G[F[A]]
- def traverseWithIndexM[G[_], B](f: (A, Int) => G[B])(implicit G: Monad[G]): G[F[B]]
- def traverseWithLongIndexM[G[_], B](f: (A, Long) => G[B])(implicit G: Monad[G]): G[F[B]]
- def updated_[B >: A](idx: Long, b: B): Option[F[B]]
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def zipWithIndex: F[(A, Int)]
- def zipWithLongIndex: F[(A, Long)]