enum

Nucleoc::Normalization

Inherits Enum < Comparable < Value < Object

How to handle unicode normalization.

Constants

Never = 0

Characters never match their normalized version (a != ä).

Smart = 1

Acts like Never if any character in a pattern atom would need to be normalized. Otherwise normalization occurs (a == ä but ä != a).

Instance methods

never?

Returns true if this enum value equals Never

Source
smart?

Returns true if this enum value equals Smart

Source