Line constructor

Line(
  1. List<int> bytes
)

Create a new line from an input list of bytes representing a line from the file (without NL).

Implementation

Line(List<int> bytes) {
  _init(bytes);
}