// ets_tracing: off import * as Tp from "../Collections/Immutable/Tuple/index.js" import type { Option } from "../Option/index.js" import { getOrElse_ } from "../Option/index.js" import { modify } from "./modify.js" /** * Atomically modifies the `FiberRef` with the specified partial function, which computes * a return value for the modification if the function is defined in the current value * otherwise it returns a default value. * This is a more powerful version of `updateSome`. */ export function modifySome(defaultValue: () => B) { return (f: (a: A) => Option>) => modify((v) => getOrElse_(f(v), () => Tp.tuple(defaultValue(), v))) }