TSet.fromList constructor

TSet.fromList(
  1. TList list
)

Implementation

factory TSet.fromList(TList list) {
  return TSet(list.elementType, list.length);
}