(self: MutableRef<number>)
| 134 | * @category numeric |
| 135 | */ |
| 136 | export const increment = (self: MutableRef<number>): MutableRef<number> => update(self, (n) => n + 1) |
| 137 | |
| 138 | /** |
| 139 | * @since 2.0.0 |
nothing calls this directly
no test coverage detected
searching dependent graphs…