/** * Returns an effect with the value on the right part. * * @tsplus static effect/core/io/Effect.Ops right */ export function succeedRight(value: A): Effect> { return Effect.succeed(Either.right(value)) }