(self: MutableRef<number>)
| 76 | * @category numeric |
| 77 | */ |
| 78 | export const decrement = (self: MutableRef<number>): MutableRef<number> => update(self, (n) => n - 1) |
| 79 | |
| 80 | /** |
| 81 | * @since 2.0.0 |
nothing calls this directly
no test coverage detected
searching dependent graphs…