Skip to content

Commit 0f04026

Browse files
committed
tabula rasa
1 parent eebd673 commit 0f04026

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+47
-3557
lines changed

README.md

+2-824
Large diffs are not rendered by default.

dist/Group.d.ts.map

+1
Original file line numberDiff line numberDiff line change

dist/Ring.d.ts.map

+1
Original file line numberDiff line numberDiff line change

dist/boole.d.ts

-4
This file was deleted.

dist/boole.js

-12
This file was deleted.

dist/cayleyDickson.d.ts

-7
This file was deleted.

dist/cayleyDickson.js

-13
This file was deleted.

dist/complex.d.ts

-1
This file was deleted.

dist/complex.js

-3
This file was deleted.

dist/errors.d.ts

-12
This file was deleted.

dist/errors.js

-20
This file was deleted.

dist/examples/assert.js

-13
This file was deleted.

dist/examples/quick-start.js

-5
This file was deleted.

dist/group.d.ts

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
export declare type Group<T> = Readonly<{
2-
zero: T;
3-
includes: (arg: unknown) => arg is T;
4-
eq: (a: T, b: T) => boolean;
5-
add: (a: T, b: T) => T;
6-
neg: (a: T) => T;
7-
sub: (a: T, b: T) => T;
8-
}>;
1+
export type Group<Scalar> = {
2+
zero: Scalar;
3+
includes(arg: unknown): boolean;
4+
add(a: Scalar, b: Scalar): Scalar;
5+
neg(a: Scalar): Scalar;
6+
};
7+
//# sourceMappingURL=Group.d.ts.map

dist/index.d.ts

+3-11
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
export * from "./boole.js";
2-
export * from "./cayleyDickson.js";
3-
export * from "./complex.js";
4-
export * from "./errors.js";
5-
export * from "./group.js";
6-
export * from "./matrix.js";
7-
export * from "./octonion.js";
8-
export * from "./quaternion.js";
9-
export * from "./real.js";
10-
export * from "./ring.js";
11-
export * from "./vector.js";
1+
export * from './Group.js';
2+
export * from './Ring.js';
3+
//# sourceMappingURL=index.d.ts.map

dist/index.d.ts.map

+1
Original file line numberDiff line numberDiff line change

dist/index.js

+2-11
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,2 @@
1-
export * from "./boole.js";
2-
export * from "./cayleyDickson.js";
3-
export * from "./complex.js";
4-
export * from "./errors.js";
5-
export * from "./group.js";
6-
export * from "./matrix.js";
7-
export * from "./octonion.js";
8-
export * from "./quaternion.js";
9-
export * from "./real.js";
10-
export * from "./ring.js";
11-
export * from "./vector.js";
1+
export * from './Group.js';
2+
export * from './Ring.js';

dist/matrix.d.ts

-16
This file was deleted.

dist/matrix.js

-53
This file was deleted.

dist/octonion.d.ts

-1
This file was deleted.

dist/octonion.js

-3
This file was deleted.

dist/quaternion.d.ts

-1
This file was deleted.

dist/quaternion.js

-3
This file was deleted.

dist/real.d.ts

-5
This file was deleted.

dist/real.js

-33
This file was deleted.

dist/ring.d.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import type { Group } from "./group.js";
2-
export declare type Ring<T> = Group<T> & Readonly<{
3-
one: T;
4-
mul: (a: T, b: T) => T;
5-
inv: (a: T) => T;
6-
div: (a: T, b: T) => T;
7-
}>;
1+
import { Group } from './Group.js';
2+
export type Ring<Scalar> = Group<Scalar> & {
3+
one: Scalar;
4+
mul(a: Scalar, b: Scalar): Scalar;
5+
inv(a: Scalar, b: Scalar): Scalar;
6+
};
7+
//# sourceMappingURL=Ring.d.ts.map

dist/vector.d.ts

-7
This file was deleted.

dist/vector.js

-10
This file was deleted.

index.html

-25
Original file line numberDiff line numberDiff line change
@@ -15,31 +15,6 @@
1515
<h1>algebra</h1>
1616

1717
<blockquote>means completeness and balancing, from the Arabic word الجبر</blockquote>
18-
19-
<section>
20-
<h2>Quick start</h2>
21-
22-
<p>
23-
Use the Real numbers operators.
24-
</p>
25-
<pre><code>
26-
import { real as R } from "algebra";
27-
28-
R.add(1, 2); // 3
29-
</code></pre>
30-
31-
<p>
32-
Play with Complex numbers.
33-
</p>
34-
<pre><code>
35-
import { complex as C } from "algebra";
36-
37-
C.add([1, 0], [2, 0]); // [3, 0]
38-
</code></pre>
39-
40-
<script type="module" src="./dist/examples/quick-start.js"></script>
41-
</section>
4218
</main>
43-
4419
</body>
4520
</html>

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"types": "./dist/index.d.ts",
88
"exports": {
99
".": {
10+
"types": "./dist/index.d.ts",
1011
"import": "./dist/index.js"
1112
}
1213
},
@@ -17,6 +18,7 @@
1718
},
1819
"scripts": {
1920
"build": "tsc --build",
21+
"check_types": "tsc --noEmit --project .",
2022
"prestart": "npm run build",
2123
"start": "serve -d ."
2224
},

src/Boole.js

-12
This file was deleted.

0 commit comments

Comments
 (0)