Packages

object Char extends AnyValCompanion

Source
Char.scala
Linear Supertypes
AnyValCompanion, Specializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Char
  2. AnyValCompanion
  3. Specializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final val MaxValue: Char('￿')

    The largest value representable as a Char.

  2. final val MinValue: Char('\u0000')

    The smallest value representable as a Char.

  3. def box(x: Char): Character

    Transform a value type into a boxed reference type.

    Transform a value type into a boxed reference type.

    Runtime implementation determined by scala.runtime.BoxesRunTime.boxToCharacter. See src/library/scala/runtime/BoxesRunTime.java.

    x

    the Char to be boxed

    returns

    a java.lang.Character offering x as its underlying value.

  4. implicit def char2double(x: Char): Double
  5. implicit def char2float(x: Char): Float
  6. implicit def char2int(x: Char): Int
  7. implicit def char2long(x: Char): Long
  8. def toString(): String

    The String representation of the scala.Char companion object.

    The String representation of the scala.Char companion object.

    returns

    a String representation of the object.

    Definition Classes
    Char → AnyRef → Any
  9. def unbox(x: AnyRef): Char

    Transform a boxed type into a value type.

    Transform a boxed type into a value type. Note that this method is not typesafe: it accepts any Object, but will throw an exception if the argument is not a java.lang.Character.

    Runtime implementation determined by scala.runtime.BoxesRunTime.unboxToChar. See src/library/scala/runtime/BoxesRunTime.java.

    x

    the java.lang.Character to be unboxed.

    returns

    the Char resulting from calling charValue() on x

    Exceptions thrown

    ClassCastException if the argument is not a java.lang.Character