MCPcopy Index your code
hub / github.com/Effect-TS/effect / decrement

Function decrement

packages/effect/src/MutableRef.ts:78–78  ·  view source on GitHub ↗
(self: MutableRef<number>)

Source from the content-addressed store, hash-verified

76 * @category numeric
77 */
78export const decrement = (self: MutableRef<number>): MutableRef<number> => update(self, (n) => n - 1)
79
80/**
81 * @since 2.0.0

Callers

nothing calls this directly

Calls 1

updateFunction · 0.50

Tested by

no test coverage detected