implicit class AssociativeFlattenCovariantIdentityBothIdentityEitherOps[F[+_], A] extends AnyRef
Provides infix syntax for filtering covariant types.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- AssociativeFlattenCovariantIdentityBothIdentityEitherOps
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new AssociativeFlattenCovariantIdentityBothIdentityEitherOps(fa: F[A])
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( ... ) @native()
-
def
collect[B](pf: PartialFunction[A, B])(implicit flatten: AssociativeFlatten[F], covariant: Covariant[F], identityBoth: IdentityBoth[F], identityEither: IdentityEither[F]): F[B]
Collects values of
Afor which the partial functionpfis defined. -
def
collectM[B](pf: PartialFunction[A, F[B]])(implicit flatten: AssociativeFlatten[F], covariant: Covariant[F], identityEither: IdentityEither[F]): F[B]
Collects values of
Afor which the partial functionpfis defined. -
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
filter[B](f: (A) ⇒ Boolean)(implicit flatten: AssociativeFlatten[F], covariant: Covariant[F], identityBoth: IdentityBoth[F], identityEither: IdentityEither[F]): F[A]
Filters an
F[A]value with a predicatef. -
def
filterM[B](f: (A) ⇒ F[Boolean])(implicit flatten: AssociativeFlatten[F], covariant: Covariant[F], identityBoth: IdentityBoth[F], identityEither: IdentityEither[F]): F[A]
Filters an
F[A]value with a predicatef. -
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
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()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
withFilter(f: (A) ⇒ Boolean)(implicit flatten: AssociativeFlatten[F], covariant: Covariant[F], identityBoth: IdentityBoth[F], identityEither: IdentityEither[F]): F[A]
Provides support for filtering
F[A]values in for comphrensions.