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

Changeset 2729

Show
Ignore:
Timestamp:
10/27/07 23:35:21 (1 year ago)
Author:
kris
Message:

added a .dup method

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/io/FilePath.d

    r2656 r2729  
    174174        { 
    175175                return fp [0 .. end_]; 
     176        } 
     177 
     178        /*********************************************************************** 
     179 
     180                Duplicate this path 
     181 
     182        ***********************************************************************/ 
     183 
     184        final FilePath dup () 
     185        { 
     186                return FilePath (toUtf8); 
    176187        } 
    177188