nullTerminatedList property

void nullTerminatedList=(List<int> list)

Writes a null terminated list of ints from the buffer. The given list should not contain the terminating zero.

Implementation

set nullTerminatedList(List<int> list) {
  writeList(list);
  byte = 0;
}