/** * Makes a new `TMap` that is initialized with specified values. * * @tsplus static effect/core/stm/TMap.Ops make * @tsplus static effect/core/stm/TMap.Ops __call */ export function make(...data: Array): USTM> { return TMap.fromIterable(data) }