Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Effect-TS/effect
/ increment
Function
increment
packages/effect/src/MutableRef.ts:567–567 ·
view source on GitHub ↗
(self: MutableRef<number>)
Source
from the content-addressed store, hash-verified
565
* @since 2.0.0
566
*/
567
export
const
increment = (self: MutableRef<number>): MutableRef<number> => update(self, (n) => n + 1)
568
569
/**
570
* Increments a numeric MutableRef by 1 and returns the
new
value.
Callers
nothing calls this directly
Calls
1
update
Function · 0.50
Tested by
no test coverage detected