Deprecation: module std.stream is deprecated
    Spacen Jasset via Digitalmars-d-learn 
    digitalmars-d-learn at puremagic.com
       
    Sat Nov  7 04:10:05 PST 2015
    
    
  
Deprecation: module std.stream is deprecated - It will be removed 
from Phobos in October 2016.
The std.stream module documentation doesn't give any clues as to 
what an alternative might be.
I have this sort of code:
this(InputStream input)
	{
		
		int line_no = 1;
		foreach (char[] line; input) {
Am I right in thinking to use std.stdio with an InputRange?
- Jason
    
    
More information about the Digitalmars-d-learn
mailing list