nxt.bylinefast

Undocumented in source.

Members

Aliases

KeepTerminator
alias KeepTerminator = Flag!"keepTerminator"
Undocumented in source.

Functions

byLineFast
auto byLineFast(File f, KeepTerminator keepTerminator, string separator, uint bufferSize)
Undocumented in source. Be warned that the author may not have intended to support it.

Structs

ByLineFast
struct ByLineFast(Char, Terminator)

Reads by line in an efficient way (10 times faster than File.byLine from std.stdio). This is accomplished by reading entire buffers (fgetc() is not used), and allocating as little as possible.

Meta