Class

scala.runtime

RichChar

Related Doc: package runtime

Permalink

final class RichChar extends AnyVal with IntegralProxy[Char]

Linear Supertypes
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
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RichChar(self: Char)

    Permalink

Type Members

  1. type ResultWithoutStep = NumericRange[Char]

    Permalink
    Definition Classes
    IntegralProxyRangedProxy

Value Members

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

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

    Permalink
    Definition Classes
    Any
  3. def <(that: Char): Boolean

    Permalink

    Returns true if this is less than that

    Returns true if this is less than that

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

    Permalink

    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
  5. final def ==(arg0: Any): Boolean

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

    Permalink

    Returns true if this is greater than that.

    Returns true if this is greater than that.

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

    Permalink

    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
  8. def abs: Char

    Permalink

    Returns the absolute value of this.

    Returns the absolute value of this.

    Definition Classes
    RichCharScalaNumberProxy
  9. def asDigit: Int

    Permalink
  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. def byteValue(): Byte

    Permalink
  12. def compare(y: Char): Int

    Permalink

    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
  13. def compareTo(that: Char): Int

    Permalink

    Result of comparing this with operand that.

    Result of comparing this with operand that.

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

    Permalink
  15. def floatValue(): Float

    Permalink
  16. def getClass(): Class[_ <: AnyVal]

    Permalink
    Definition Classes
    AnyVal → Any
  17. def getDirectionality: Byte

    Permalink
  18. def getNumericValue: Int

    Permalink
  19. def getType: Int

    Permalink
  20. def intValue(): Int

    Permalink
  21. def isControl: Boolean

    Permalink
  22. def isDigit: Boolean

    Permalink
  23. def isHighSurrogate: Boolean

    Permalink
  24. def isIdentifierIgnorable: Boolean

    Permalink
  25. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  26. def isLetter: Boolean

    Permalink
  27. def isLetterOrDigit: Boolean

    Permalink
  28. def isLowSurrogate: Boolean

    Permalink
  29. def isLower: Boolean

    Permalink
  30. def isMirrored: Boolean

    Permalink
  31. def isSpaceChar: Boolean

    Permalink
  32. def isSurrogate: Boolean

    Permalink
  33. def isTitleCase: Boolean

    Permalink
  34. def isUnicodeIdentifierPart: Boolean

    Permalink
  35. def isUnicodeIdentifierStart: Boolean

    Permalink
  36. def isUpper: Boolean

    Permalink
  37. def isValidByte: Boolean

    Permalink

    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
  38. def isValidChar: Boolean

    Permalink

    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
  39. def isValidInt: Boolean

    Permalink

    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
  40. def isValidShort: Boolean

    Permalink

    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
  41. def isWhitespace: Boolean

    Permalink
  42. def isWhole(): Boolean

    Permalink

    returns

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

    Definition Classes
    ScalaWholeNumberProxyScalaNumericAnyConversions
  43. def longValue(): Long

    Permalink
  44. def max(that: Char): Char

    Permalink

    Returns this if this > that or that otherwise.

    Returns this if this > that or that otherwise.

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

    Permalink

    Returns this if this < that or that otherwise.

    Returns this if this < that or that otherwise.

    Definition Classes
    RichCharScalaNumberProxy
  46. def num: CharIsIntegral.type

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

    Permalink
    Attributes
    protected
    Definition Classes
    RichCharOrderedProxy
  48. def reverseBytes: Char

    Permalink
  49. val self: Char

    Permalink
    Definition Classes
    RichCharTypedProxy
  50. def shortValue(): Short

    Permalink
  51. def signum: Int

    Permalink

    Returns the signum of this.

    Returns the signum of this.

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

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

    Permalink
    Definition Classes
    IntegralProxyRangedProxy
  54. def toByte: Byte

    Permalink

    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
  55. def toChar: Char

    Permalink

    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
  56. def toDouble: Double

    Permalink

    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
  57. def toFloat: Float

    Permalink

    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
  58. def toInt: Int

    Permalink

    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
  59. def toLong: Long

    Permalink

    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
  60. def toLower: Char

    Permalink
  61. def toShort: Short

    Permalink

    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
  62. def toString(): String

    Permalink
    Definition Classes
    Proxy → Any
  63. def toTitleCase: Char

    Permalink
  64. def toUpper: Char

    Permalink
  65. def underlying(): AnyRef

    Permalink
  66. def unifiedPrimitiveEquals(x: Any): Boolean

    Permalink

    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
  67. def unifiedPrimitiveHashcode(): Int

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

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

    Permalink
    Definition Classes
    IntegralProxyRangedProxy

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

Ungrouped