FromDigits (original) (raw)
scala.util.FromDigits
See theFromDigits companion trait
Members list
A subclass of FromDigits
that also allows to convert number literals containing a decimal point ".".
A subclass of FromDigits
that also allows to convert number literals containing a decimal point ".".
Attributes
Source
Supertypes
Known subtypes
A subclass of FromDigits
that allows also to convert number literals containing a decimal point "." or an exponent ('e' | 'E')['+' | '-']digit digit*
.
A subclass of FromDigits
that allows also to convert number literals containing a decimal point "." or an exponent ('e' | 'E')['+' | '-']digit digit*
.
Attributes
Source
Supertypes
Known subtypes
The base type for exceptions that can be thrown from fromDigits
conversions
The base type for exceptions that can be thrown from fromDigits
conversions
Attributes
Source
Supertypes
Known subtypes
Thrown if digit string is not legal for the given type
Thrown if digit string is not legal for the given type
Attributes
Source
Supertypes
Thrown if value of result does not fit into result type's range
Thrown if value of result does not fit into result type's range
Attributes
Source
Supertypes
Thrown in case of numeric underflow (e.g. a non-zero floating point literal that produces a zero value)
Thrown in case of numeric underflow (e.g. a non-zero floating point literal that produces a zero value)
Attributes
Source
Supertypes
A subclass of FromDigits
that also allows to convert whole number literals with a radix other than 10
A subclass of FromDigits
that also allows to convert whole number literals with a radix other than 10
Attributes
Source
Supertypes
Known subtypes
Convert digit string to Double number
Convert digit string to Double number
Value parameters
digits
The string to convert
Attributes
Throws
if digits is not a legal digit string for floating point numbers..
if the resulting number is 0.0d, yet the digits string contains non-zero digits before the exponent.
Source
Convert digit string to Float number
Convert digit string to Float number
Value parameters
digits
The string to convert
Attributes
Throws
if digits is not a legal digit string for floating point numbers.
if the resulting number is 0.0f, yet the digits string contains non-zero digits before the exponent.
Source
Convert digit string to Int number
Convert digit string to Int number
Value parameters
digits
The string to convert
radix
The radix
Attributes
Throws
if digits is not a legal digit string. Legal strings consist only of digits conforming to radix, possibly preceded by a "-" sign.
Source
Convert digit string to Long number
Convert digit string to Long number
Value parameters
digits
The string to convert
radix
The radix
Attributes
Throws
if digits is not a legal digit string. Legal strings consist only of digits conforming to radix, possibly preceded by a "-" sign.
Source
In this article