/** * Performs this transaction the specified number of times, discarding the * results. * * @tsplus static effect/core/stm/STM.Aspects replicateSTMDiscard * @tsplus pipeable effect/core/stm/STM replicateSTMDiscard */ export function replicateSTMDiscard(n: number) { return (self: STM): STM => STM.collectAllDiscard(self.replicate(n)) }