Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 3883

Show
Ignore:
Timestamp:
08/16/08 18:08:42 (4 months ago)
Author:
keinfarbton
Message:

ddoc edits

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/text/convert/Integer.d

    r3601 r3883  
    3535        radix is set to zero, conversion will default to decimal. 
    3636 
    37         Throws an exception where the input text is not parsable 
     37        Throws: IllegalArgumentException where the input text is not parsable 
    3838        in its entirety. 
    39          
     39 
     40        See_also: the low level functions parse() and convert() 
     41 
    4042******************************************************************************/ 
    4143 
     
    5355/****************************************************************************** 
    5456 
    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, 
    5961        whereupon it must match the prefix (where present). When 
    6062        radix is set to zero, conversion will default to decimal. 
    6163 
    62         Throws an exception where the input text is not parsable 
     64        Throws: IllegalArgumentException where the input text is not parsable 
    6365        in its entirety. 
    64          
     66 
     67        See_also: the low level functions parse() and convert() 
     68 
    6569******************************************************************************/ 
    6670 
     
    333337        to construct the returned value. 
    334338 
     339        Throws: none. The 'ate' param should be checked for valid input. 
     340 
    335341******************************************************************************/ 
    336342 
     
    359365        Returns the value and updates 'ate' with the number of 
    360366        characters consumed. 
     367 
     368        Throws: none. The 'ate' param should be checked for valid input. 
    361369 
    362370******************************************************************************/