An analog to Scala's RichChar class, providing some methods
that neither RichChar nor Char (nor, for that matter,
java.lang.Character) provide.
An analog to Scala's RichChar class, providing some methods
that neither RichChar nor Char (nor, for that matter,
java.lang.Character) provide. By importing the implicit conversion
functions, you can use the methods in this class transparently from a
Char, RichChar or Character object.
import grizzled.string.implicits._ val ch = 'a' println(ch.isHexDigit) // prints: true
Charenrichments