import { ISync } from "@effect/core/io/Effect/definition/primitives"
/**
* Returns an effect that models success with the specified synchronous
* side-effect.
*
* @tsplus static effect/core/io/Effect.Ops __call
* @tsplus static effect/core/io/Effect.Ops sync
*/
export function sync(f: LazyArg): Effect {
return new ISync(f)
}