class TheAfterWord extends AnyRef
This class is part of the Scalactic “explicitly DSL”. Please
see the documentation for Explicitly
for an overview of
the explicitly DSL.
- Source
- Explicitly.scala
- Alphabetic
- By Inheritance
- TheAfterWord
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new TheAfterWord()
Value Members
- def being[N](normalization: Normalization[N])(implicit equivalence: Equivalence[N]): NormalizingEquivalence[N]
This method enables syntax such as the following, given a
Normalization[String]
namedcapitalized
(and assuming the members ofTypeCheckedTripleEquals
orConversionCheckedTripleEquals
are in scope:This method enables syntax such as the following, given a
Normalization[String]
namedcapitalized
(and assuming the members ofTypeCheckedTripleEquals
orConversionCheckedTripleEquals
are in scope:result should === ("hello") (after being capitalized) ^
- normalization
a
Normalization
with which to normalize an object of typeN
before comparing it for equality with anotherN
using the implicitly passedEquivalence[N]
.
- def being[N](uniformity: Uniformity[N])(implicit equality: Equality[N]): NormalizingEquality[N]
This method enables syntax such as the following:
This method enables syntax such as the following:
result should equal ("hello") (after being lowerCased) ^
- uniformity
a
Uniformity
with which to normalize an object of typeN
before comparing it for equality with anotherN
using the implicitly passedEquality[N]
.