/** * A schedule that always recurs, mapping input values through the specified * function. * * @tsplus static effect/core/io/Schedule.Ops fromFunction */ export function fromFunction( f: (a: A) => B ): Schedule { return Schedule.identity().map(f) }