Changeset 3883
- Timestamp:
- 08/16/08 18:08:42 (4 months ago)
- Files:
-
- trunk/tango/text/convert/Integer.d (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tango/text/convert/Integer.d
r3601 r3883 35 35 radix is set to zero, conversion will default to decimal. 36 36 37 Throws an exception where the input text is not parsable37 Throws: IllegalArgumentException where the input text is not parsable 38 38 in its entirety. 39 39 40 See_also: the low level functions parse() and convert() 41 40 42 ******************************************************************************/ 41 43 … … 53 55 /****************************************************************************** 54 56 55 Parse an integer value from the provided 'digits' string. 56 57 The string is inspected for a sign and an optional radix 58 prefix. A radix may be provided as an argument instead, 57 Parse an integer value from the provided 'digits' string. 58 59 The string is inspected for a sign and an optional radix 60 prefix. A radix may be provided as an argument instead, 59 61 whereupon it must match the prefix (where present). When 60 62 radix is set to zero, conversion will default to decimal. 61 63 62 Throws an exception where the input text is not parsable64 Throws: IllegalArgumentException where the input text is not parsable 63 65 in its entirety. 64 66 67 See_also: the low level functions parse() and convert() 68 65 69 ******************************************************************************/ 66 70 … … 333 337 to construct the returned value. 334 338 339 Throws: none. The 'ate' param should be checked for valid input. 340 335 341 ******************************************************************************/ 336 342 … … 359 365 Returns the value and updates 'ate' with the number of 360 366 characters consumed. 367 368 Throws: none. The 'ate' param should be checked for valid input. 361 369 362 370 ******************************************************************************/












