listPrint

fun <T> listPrint(vals: List<T>)

Prints a list in bracketed format. String elements are double-quoted; other types use toString.

Parameters

vals

the list to print

Type Parameters

T

the element type