object ASCIIFolding
- Alphabetic
- By Inheritance
- ASCIIFolding
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
val
MaxASCIIExpandedLength: Int
The maximum number of ASCII characters a single Unicode character will expand to
The maximum number of ASCII characters a single Unicode character will expand to
All examples that expands to 4 characters:
'⑽' => "(10)" // ⑽ [PARENTHESIZED NUMBER TEN] '⑾' => "(11)" // ⑾ [PARENTHESIZED NUMBER ELEVEN] '⑿' => "(12)" // ⑿ [PARENTHESIZED NUMBER TWELVE] '⒀' => "(13)" // ⒀ [PARENTHESIZED NUMBER THIRTEEN] '⒁' => "(14)" // ⒁ [PARENTHESIZED NUMBER FOURTEEN] '⒂' => "(15)" // ⒂ [PARENTHESIZED NUMBER FIFTEEN] '⒃' => "(16)" // ⒃ [PARENTHESIZED NUMBER SIXTEEN] '⒄' => "(17)" // ⒄ [PARENTHESIZED NUMBER SEVENTEEN] '⒅' => "(18)" // ⒅ [PARENTHESIZED NUMBER EIGHTEEN] '⒆' => "(19)" // ⒆ [PARENTHESIZED NUMBER NINETEEN] '⒇' => "(20)" // ⒇ [PARENTHESIZED NUMBER TWENTY]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
fold(s: String): String
Converts Accented Characters to the Non-Accented Equivalent String.
Converts Accented Characters to the Non-Accented Equivalent String.
Note: This expands stuff like Æ to AE)
-
def
fold(c: Char): String
Converts Accented Characters to a Non-Accented Equivalent String or returns back the original Char as a String if no mapping available.
-
def
foldAsChar(c: Char): Char
Converts Accented Characters to a Non-Accented Equivalent Char or returns back the original Char if no mapping available.
Converts Accented Characters to a Non-Accented Equivalent Char or returns back the original Char if no mapping available.
Note: This only works for when there is a 1 to 1 Character equivalence (i.e. it does not work for stuff like Æ which needs to expand to AE)
-
def
get(c: Char): Option[String]
Converts Accented Characters to the Non-Accented Equivalent String (or None if already ASCII or no conversionn exists).
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
getOrNull(c: Char): String
Converts Accented Characters to the Non-Accented Equivalent String (or null if already ASCII or no conversion exists).
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()