case class Eval[F[_], A](f: F[A]) extends Matcher[F, A] with Product with Serializable
- Source
- Matcher.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Eval
- Serializable
- Serializable
- Product
- Equals
- Matcher
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new Eval(f: F[A])
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
*>[B](b: B): Matcher[F, B]
defined ad map { _ => b} *
defined ad map { _ => b} *
- Definition Classes
- Matcher
- def +(other: String): String
- def ->[B](y: B): (Eval[F, A], B)
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
?: Matcher[F, Option[A]]
matches this or yields to None *
matches this or yields to None *
- Definition Classes
- Matcher
-
def
advance: Matcher[F, A]
advances path by one segment, after this matches *
advances path by one segment, after this matches *
- Definition Classes
- Matcher
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
- def ensuring(cond: (Eval[F, A]) ⇒ Boolean, msg: ⇒ Any): Eval[F, A]
- def ensuring(cond: (Eval[F, A]) ⇒ Boolean): Eval[F, A]
- def ensuring(cond: Boolean, msg: ⇒ Any): Eval[F, A]
- def ensuring(cond: Boolean): Eval[F, A]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val f: F[A]
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
map[B](f: (A) ⇒ B): Matcher[F, B]
transforms this matcher with supplied
f
*transforms this matcher with supplied
f
*- Definition Classes
- Matcher
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
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()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- def →[B](y: B): (Eval[F, A], B)
Deprecated Value Members
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] ) @Deprecated
- Deprecated
-
def
formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from Eval[F, A] to StringFormat[Eval[F, A]] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.12.16) Use
formatString.format(value)
instead ofvalue.formatted(formatString)
, or use thef""
string interpolator. In Java 15 and later,formatted
resolves to the new method in String which has reversed parameters.