scala.runtime

RichChar

final class RichChar extends AnyVal with IntegralProxy[Char]

Linear Supertypes
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RichChar
  2. IntegralProxy
  3. RangedProxy
  4. ScalaWholeNumberProxy
  5. ScalaNumberProxy
  6. OrderedProxy
  7. Ordered
  8. Comparable
  9. Typed
  10. Proxy
  11. ScalaNumericAnyConversions
  12. AnyVal
  13. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RichChar(self: Char)

Type Members

  1. type ResultWithoutStep = NumericRange[Char]

    Definition Classes
    IntegralProxyRangedProxy

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  2. final def ##(): Int

    Definition Classes
    Any
  3. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from RichChar to any2stringadd[RichChar] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (RichChar, B)

    Implicit information
    This member is added by an implicit conversion from RichChar to ArrowAssoc[RichChar] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. def <(that: Char): Boolean

    Returns true if this is less than that

    Returns true if this is less than that

    Definition Classes
    Ordered
  6. def <=(that: Char): Boolean

    Returns true if this is less than or equal to that.

    Returns true if this is less than or equal to that.

    Definition Classes
    Ordered
  7. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  8. def >(that: Char): Boolean

    Returns true if this is greater than that.

    Returns true if this is greater than that.

    Definition Classes
    Ordered
  9. def >=(that: Char): Boolean

    Returns true if this is greater than or equal to that.

    Returns true if this is greater than or equal to that.

    Definition Classes
    Ordered
  10. def abs: Char

    Returns the absolute value of this.

    Returns the absolute value of this.

    Definition Classes
    RichCharScalaNumberProxy
  11. def asDigit: Int

  12. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  13. def byteValue(): Byte

  14. def compare(y: Char): Int

    Result of comparing this with operand that.

    Result of comparing this with operand that.

    Implement this method to determine how instances of A will be sorted.

    Returns x where:

    • x < 0 when this < that
    • x == 0 when this == that
    • x > 0 when this > that
    Definition Classes
    OrderedProxyOrdered
  15. def compareTo(that: Char): Int

    Result of comparing this with operand that.

    Result of comparing this with operand that.

    Definition Classes
    Ordered → Comparable
  16. def doubleValue(): Double

  17. def ensuring(cond: (RichChar) ⇒ Boolean, msg: ⇒ Any): RichChar

    Implicit information
    This member is added by an implicit conversion from RichChar to Ensuring[RichChar] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: (RichChar) ⇒ Boolean): RichChar

    Implicit information
    This member is added by an implicit conversion from RichChar to Ensuring[RichChar] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: Boolean, msg: ⇒ Any): RichChar

    Implicit information
    This member is added by an implicit conversion from RichChar to Ensuring[RichChar] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. def ensuring(cond: Boolean): RichChar

    Implicit information
    This member is added by an implicit conversion from RichChar to Ensuring[RichChar] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. def floatValue(): Float

  22. def formatted(fmtstr: String): String

    Returns string formatted according to given format string.

    Returns string formatted according to given format string. Format strings are as for String.format (@see java.lang.String.format).

    Implicit information
    This member is added by an implicit conversion from RichChar to Predef.StringFormat[RichChar] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  23. def getClass(): Class[_ <: AnyVal]

    Definition Classes
    AnyVal → Any
  24. def getDirectionality: Byte

  25. def getNumericValue: Int

  26. def getType: Int

  27. def intValue(): Int

  28. def isControl: Boolean

  29. def isDigit: Boolean

  30. def isHighSurrogate: Boolean

  31. def isIdentifierIgnorable: Boolean

  32. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  33. def isLetter: Boolean

  34. def isLetterOrDigit: Boolean

  35. def isLowSurrogate: Boolean

  36. def isLower: Boolean

  37. def isMirrored: Boolean

  38. def isSpaceChar: Boolean

  39. def isSurrogate: Boolean

  40. def isTitleCase: Boolean

  41. def isUnicodeIdentifierPart: Boolean

  42. def isUnicodeIdentifierStart: Boolean

  43. def isUpper: Boolean

  44. def isValidByte: Boolean

    Returns true iff this has a zero fractional part, and is within the range of scala.Byte MinValue and MaxValue; otherwise returns false.

    Returns true iff this has a zero fractional part, and is within the range of scala.Byte MinValue and MaxValue; otherwise returns false.

    Definition Classes
    ScalaNumericAnyConversions
  45. def isValidChar: Boolean

    Returns true iff this has a zero fractional part, and is within the range of scala.Char MinValue and MaxValue; otherwise returns false.

    Returns true iff this has a zero fractional part, and is within the range of scala.Char MinValue and MaxValue; otherwise returns false.

    Definition Classes
    RichCharScalaNumericAnyConversions
  46. def isValidInt: Boolean

    Returns true iff this has a zero fractional part, and is within the range of scala.Int MinValue and MaxValue; otherwise returns false.

    Returns true iff this has a zero fractional part, and is within the range of scala.Int MinValue and MaxValue; otherwise returns false.

    Definition Classes
    ScalaNumericAnyConversions
  47. def isValidShort: Boolean

    Returns true iff this has a zero fractional part, and is within the range of scala.Short MinValue and MaxValue; otherwise returns false.

    Returns true iff this has a zero fractional part, and is within the range of scala.Short MinValue and MaxValue; otherwise returns false.

    Definition Classes
    ScalaNumericAnyConversions
  48. def isWhitespace: Boolean

  49. def isWhole(): Boolean

    returns

    true if this number has no decimal component, false otherwise.

    Definition Classes
    ScalaWholeNumberProxyScalaNumericAnyConversions
  50. def longValue(): Long

  51. def max(that: Char): Char

    Returns this if this > that or that otherwise.

    Returns this if this > that or that otherwise.

    Definition Classes
    RichCharScalaNumberProxy
  52. def min(that: Char): Char

    Returns this if this < that or that otherwise.

    Returns this if this < that or that otherwise.

    Definition Classes
    RichCharScalaNumberProxy
  53. def num: CharIsIntegral.type

    Attributes
    protected
    Definition Classes
    RichCharIntegralProxyScalaNumberProxy
  54. def ord: math.Ordering.Char.type

    Attributes
    protected
    Definition Classes
    RichCharOrderedProxy
  55. def reverseBytes: Char

  56. val self: Char

    Definition Classes
    RichCharTypedProxy
  57. def shortValue(): Short

  58. def signum: Int

    Returns the signum of this.

    Returns the signum of this.

    Definition Classes
    RichCharScalaNumberProxy
  59. def to(end: Char, step: Char): Inclusive[Char]

    Definition Classes
    IntegralProxyRangedProxy
  60. def to(end: Char): Inclusive[Char]

    Definition Classes
    IntegralProxyRangedProxy
  61. def toByte: Byte

    Returns the value of this as a scala.Byte.

    Returns the value of this as a scala.Byte. This may involve rounding or truncation.

    Definition Classes
    ScalaNumericAnyConversions
  62. def toChar: Char

    Returns the value of this as a scala.Char.

    Returns the value of this as a scala.Char. This may involve rounding or truncation.

    Definition Classes
    ScalaNumericAnyConversions
  63. def toDouble: Double

    Returns the value of this as a scala.Double.

    Returns the value of this as a scala.Double. This may involve rounding or truncation.

    Definition Classes
    ScalaNumericAnyConversions
  64. def toFloat: Float

    Returns the value of this as a scala.Float.

    Returns the value of this as a scala.Float. This may involve rounding or truncation.

    Definition Classes
    ScalaNumericAnyConversions
  65. def toInt: Int

    Returns the value of this as an scala.Int.

    Returns the value of this as an scala.Int. This may involve rounding or truncation.

    Definition Classes
    ScalaNumericAnyConversions
  66. def toLong: Long

    Returns the value of this as a scala.Long.

    Returns the value of this as a scala.Long. This may involve rounding or truncation.

    Definition Classes
    ScalaNumericAnyConversions
  67. def toLower: Char

  68. def toShort: Short

    Returns the value of this as a scala.Short.

    Returns the value of this as a scala.Short. This may involve rounding or truncation.

    Definition Classes
    ScalaNumericAnyConversions
  69. def toString(): String

    Definition Classes
    Proxy → Any
  70. def toTitleCase: Char

  71. def toUpper: Char

  72. def underlying(): AnyRef

  73. def unifiedPrimitiveEquals(x: Any): Boolean

    Should only be called after all known non-primitive types have been excluded.

    Should only be called after all known non-primitive types have been excluded. This method won't dispatch anywhere else after checking against the primitives to avoid infinite recursion between equals and this on unknown "Number" variants.

    Additionally, this should only be called if the numeric type is happy to be converted to Long, Float, and Double. If for instance a BigInt much larger than the Long range is sent here, it will claim equality with whatever Long is left in its lower 64 bits. Or a BigDecimal with more precision than Double can hold: same thing. There's no way given the interface available here to prevent this error.

    Attributes
    protected
    Definition Classes
    ScalaNumericAnyConversions
  74. def unifiedPrimitiveHashcode(): Int

    Attributes
    protected
    Definition Classes
    ScalaNumericAnyConversions
  75. def until(end: Char, step: Char): Exclusive[Char]

    Definition Classes
    IntegralProxyRangedProxy
  76. def until(end: Char): Exclusive[Char]

    Definition Classes
    IntegralProxyRangedProxy
  77. def [B](y: B): (RichChar, B)

    Implicit information
    This member is added by an implicit conversion from RichChar to ArrowAssoc[RichChar] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from IntegralProxy[Char]

Inherited from RangedProxy[Char]

Inherited from ScalaWholeNumberProxy[Char]

Inherited from ScalaNumberProxy[Char]

Inherited from OrderedProxy[Char]

Inherited from math.Ordered[Char]

Inherited from Comparable[Char]

Inherited from Typed[Char]

Inherited from Proxy

Inherited from AnyVal

Inherited from Any

Inherited by implicit conversion any2stringadd from RichChar to any2stringadd[RichChar]

Inherited by implicit conversion StringFormat from RichChar to Predef.StringFormat[RichChar]

Inherited by implicit conversion Ensuring from RichChar to Ensuring[RichChar]

Inherited by implicit conversion ArrowAssoc from RichChar to ArrowAssoc[RichChar]

Ungrouped