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

Changeset 2065

Show
Ignore:
Timestamp:
04/16/07 17:00:37 (2 years ago)
Author:
kris
Message:

flush() removed from buffer.copy(), per ticket #405

Files:

Legend:

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

    r2029 r2065  
    940940                The src conduit has its content transferred through  
    941941                this buffer via a series of fill & drain operations,  
    942                 until there is no more content available 
     942                until there is no more content available. The buffer 
     943                content should be explicitly flushed by the caller. 
    943944 
    944945                Throws an IOException on premature eof 
     
    954955                   } while (fill(src) != IConduit.Eof); 
    955956 
    956                 return flush (conduit_)
     957                return this
    957958        }  
    958959 
  • trunk/tango/io/model/IBuffer.d

    r2029 r2065  
    493493                The src conduit has its content transferred through  
    494494                this buffer via a series of fill & drain operations,  
    495                 until there is no more content available 
     495                until there is no more content available. The buffer 
     496                content should be explicitly flushed by the caller. 
    496497 
    497498                Throws an IOException on premature eof