We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8184bb2 commit 3459489Copy full SHA for 3459489
README.md
@@ -0,0 +1,17 @@
1
+# prelude-typescript
2
+
3
+A Prelude for TypeScript.
4
5
+The primary motivation for this is to provide a Haskell-like runtime system for
6
+[LambdaBuffers](https://github.com/mlabs-haskell/lambda-buffers), but this may
7
+find interest elsewhere. It implements type classes via dictionary passing where
8
+the programmer must manually pass the desired instance to functions requiring
9
+such a type class.
10
11
+The following functionality has been implemented.
12
13
+- `Eq`, `Ord`, and `JSON` instances for various types.
14
15
+- `Map` and `Set` containers where keys are ordered by a given `Ord` instance
16
17
+- `JSON` serializers and deserializers which can parse large numbers.
0 commit comments