Hooks
Core
- useToggle - A boolean switcher with utility functions.
Math
- logicAnd - `AND` logic for signals.
- logicNot - `NOT` logic for signals.
- logicOr - `OR` logic for signals.
- useAbs - Reactive `Math.abs`.
- useAverage - Calculates the average of the given numbers reactively.
- useCeil - Calculates the ceiling of the given number reactively.
- useClamp - Clamp a value between a minimum and maximum reactively.
- useFloor - Calculates the floor of the given number reactively.
- useMax - Reactive `Math.max`.
- useMin - Reactive `Math.min`.
- useRound - Reactive `Math.round`.
- useSum - Calculates the sum of the given numbers reactively.
- useTrunc - Reactive `Math.trunc`.