Normalizer

final class Normalizer[T](o: T)(implicit normalization: Normalization[T])

Class containing a norm method that normalizes the given object o of type T via the implicitly passed Normalization[T].

Source:
NormMethods.scala
class Object
trait Matchable
class Any

Value members

Concrete methods

def norm: T

Normalizes the object o of type T via the implicitly passed Normalization[T] passed to the constructor of this Normalizer.

Normalizes the object o of type T via the implicitly passed Normalization[T] passed to the constructor of this Normalizer.

Returns:

a normalized form of o

Source:
NormMethods.scala