We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2850be commit 3c33271Copy full SHA for 3c33271
library/src/scala/util/FromDigits.scala
@@ -14,9 +14,9 @@ trait FromDigits[T] {
14
* - sign `+` or `-`
15
* - sequence of digits between 0 and 9
16
*
17
- * @throws MalformedNumber if digit string is not legal for the given type
18
- * @throws NumberTooLarge if value of result does not fit into `T`'s range
19
- * @throws NumberTooSmall in case of numeric underflow (e.g. a non-zero
+ * @throws FromDigits.MalformedNumber if digit string is not legal for the given type
+ * @throws FromDigits.NumberTooLarge if value of result does not fit into `T`'s range
+ * @throws FromDigits.NumberTooSmall in case of numeric underflow (e.g. a non-zero
20
* floating point literal that produces a zero value)
21
*/
22
def fromDigits(digits: String): T
0 commit comments