@rivo-ts/math
TypeScript icon, indicating that this package has built-in type declarations

0.0.0-dev.20240707.5 • Public • Published

@rivo-ts/math

Type-level math operations for TypeScript.

This package is essentially an independent part of the Rivo project which does not rely on @rivo-ts/core. Many other packages in the Rivo project depend on this package.

You can use it with any TypeScript project that needs type-level math operations, not just Rivo.

Usage

import type { Add, Div, Exp, Pow } from "@rivo-ts/math";

type R1 = Add<1339642.329553, -2775689265.941>;
//   ^?: -2774349623.611447
type R2 = Div<388.6, 15>;
//   ^?: 25.906666666666666
type R3 = Exp<3>;
//   ^?: 20.063392857142855
type R4 = Pow<2, 3>;
//   ^?: 8
type R5 = Pow<2, 0.5>;
//   ^?: 1.414212636572998

Package Sidebar

Install

npm i @rivo-ts/math

Weekly Downloads

2

Version

0.0.0-dev.20240707.5

License

MIT

Unpacked Size

56.6 kB

Total Files

65

Last publish

Collaborators

  • snowflyt