- lazy_read_lines(+Stream, +Options, -List, -Tail) is det
- Lazy list iterator to read lines from Stream. Options include:
- chunk(ChunkSize)
- Determines the read chunk size. Default is 10.
- as(+Type)
- Determine the output type for each line. Valid values are
atom
, string
, codes
or chars
. Default is string
.