writeLongs

fun writeLongs(values: Iterator<Long>)

Write an array of long values.

Parameters

values

An Iterator of Long values.

Throws

If an I/O exception occurs.

If an array cannot be written.


fun writeLongs(values: Iterable<Long>)

Write an array of long values.

Parameters

values

An Iterable of Long values.

Throws

If an I/O exception occurs.

If an array cannot be written.


fun writeLongs(values: Sequence<Long>)

Write an array of long values.

Parameters

values

An Sequence of Long values.

Throws

If an I/O exception occurs.

If an array cannot be written.