object Chars

Contains constants and classifier methods for characters

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Chars
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final val CR: Char('\r')
  5. final val FF: Char('\f')
  6. final val LF: Char('\n')
  7. final val SU: Char('\u001A')
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def char2uescape(c: Char): String

    Convert a character to a backslash-u escape

  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  11. def digit2int(ch: Char, base: Int): Int

    Convert a character digit to an Int according to given base, -1 if no success

  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def isIdentifierPart(c: Char): Boolean

    Can character form part of an alphanumeric Scala identifier?

  18. def isIdentifierStart(c: Char): Boolean

    Can character start an alphanumeric Scala identifier?

    Can character start an alphanumeric Scala identifier?

    Annotations
    @inline()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def isLineBreakChar(c: Char): Boolean

    Is character a line break?

  21. def isNameChar(ch: Char): Boolean

    NameChar ::= Letter | Digit | '.' | '-' | '_' | ':'
               | CombiningChar | Extender

    See [4] and Appendix B of XML 1.0 specification.

  22. def isNameStart(ch: Char): Boolean

    NameStart ::= ( Letter | '_' )

    where Letter means in one of the Unicode general categories

    Ll, Lu, Lo, Lt, Nl

    .

    We do not allow a name to start with ':'. See [3] and Appendix B of XML 1.0 specification

    Ll, Lu, Lo, Lt, Nl }}}

    We do not allow a name to start with ':'. See [3] and Appendix B of XML 1.0 specification

  23. def isOperatorPart(c: Char): Boolean

    Can character form part of a Scala operator name?

  24. def isScalaLetter(ch: Char): Boolean
  25. final def isSpace(ch: Char): Boolean

    (#x20 | #x9 | #xD | #xA)
  26. def isSpecial(c: Char): Boolean

    Is character a math or other symbol in Unicode?

  27. def isUnicodeIdentifierPart(c: Char): Boolean
    Annotations
    @inline()
  28. def isVarPart(c: Char): Boolean

    Can character form part of a doc comment variable xxx?

  29. def isWhitespace(c: Char): Boolean

    Is character a whitespace character (but not a new line)?

  30. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  33. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  34. def toString(): String
    Definition Classes
    AnyRef → Any
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped