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