@cran/lib.vue.ref
Version:
Vue Reactivity Extensions
14 lines (11 loc) • 317 B
text/typescript
import { type MaybeWrapped, eagerComputed, unwrap } from "../utility";
/**
* @since 0.0.1
* @category Math
* @inheritdoc Math.imul
*/
export function useImul ( x: MaybeWrapped<number>, y: MaybeWrapped<number> ) {
return eagerComputed(function compute ( ) {
return Math.imul(unwrap(x), unwrap(y));
});
}