MCPcopy
hub / github.com/sparkjsdev/spark / div

Function div

src/dyno/math.ts:72–75  ·  view source on GitHub ↗
(
  a: DynoVal<A>,
  b: DynoVal<B>,
)

Source from the content-addressed store, hash-verified

70 b: DynoVal<B>,
71): DynoVal<MulOutput<A, B>> => new Mul({ a, b });
72export const div = <A extends AllValueTypes, B extends AllValueTypes>(
73 a: DynoVal<A>,
74 b: DynoVal<B>,
75): DynoVal<DivOutput<A, B>> => new Div({ a, b });
76export const imod = <A extends AllIntTypes, B extends AllIntTypes>(
77 a: DynoVal<A>,
78 b: DynoVal<B>,

Callers 1

staticBoxFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected