object NormMethods extends NormMethods
Companion object for NormMethods
enabling its members to be imported as an alternative to mixing them in.
- Source
- NormMethods.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- NormMethods
- NormMethods
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- final class Normalizer[T] extends AnyRef
Class containing a
norm
method that normalizes the given objecto
of typeT
via the implicitly passedNormalization[T]
.Class containing a
norm
method that normalizes the given objecto
of typeT
via the implicitly passedNormalization[T]
.- Definition Classes
- NormMethods
Value Members
- implicit def convertToNormalizer[T](o: T)(implicit normalization: Normalization[T]): Normalizer[T]
Implicit conversion that adds a
norm
method to a value of any typeT
for which an implicitNormalization[T]
exists.Implicit conversion that adds a
norm
method to a value of any typeT
for which an implicitNormalization[T]
exists.- o
the object to convert
- returns
a
Normalizer
that enables anorm
method to be invoked on the passed object
- Definition Classes
- NormMethods