forked from glatan/typed_numeric_deno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.ts
25 lines (21 loc) · 1.1 KB
/
mod.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
export { Int8 } from "./src/numeric/int8.ts";
export { Int16 } from "./src/numeric/int16.ts";
export { Int32 } from "./src/numeric/int32.ts";
export { Int64 } from "./src/numeric/int64.ts";
export { Int128 } from "./src/numeric/int128.ts";
export { Int256 } from "./src/numeric/int256.ts";
export { Uint8 } from "./src/numeric/uint8.ts";
export { Uint16 } from "./src/numeric/uint16.ts";
export { Uint32 } from "./src/numeric/uint32.ts";
export { Uint64 } from "./src/numeric/uint64.ts";
export { Uint128 } from "./src/numeric/uint128.ts";
export { Uint256 } from "./src/numeric/uint256.ts";
export { Float32 } from "./src/numeric/float32.ts";
export { Int8Vector } from "./src/vector/int8vector.ts";
export { Int16Vector } from "./src/vector/int16vector.ts";
export { Int32Vector } from "./src/vector/int32vector.ts";
export { Int64Vector } from "./src/vector/int64vector.ts";
export { Uint8Vector } from "./src/vector/uint8vector.ts";
export { Uint16Vector } from "./src/vector/uint16vector.ts";
export { Uint32Vector } from "./src/vector/uint32vector.ts";
export { Uint64Vector } from "./src/vector/uint64vector.ts";