Creates a new FileReader using the GC reading from stdin using a platform optimized implementation or StdFileReader if none is available.
The created instance can then be started using the start method and stopped at exit using the stop method.
auto input = newStdinReader(); input.start(); scope (exit) input.stop();
See Implementation
Creates a new FileReader using the GC reading from stdin using a platform optimized implementation or StdFileReader if none is available.
The created instance can then be started using the start method and stopped at exit using the stop method.