From 2e99c54804986998c2969c144c66190f06b1a5a6 Mon Sep 17 00:00:00 2001 From: Sergiu Ivanov Date: Thu, 17 Dec 2020 20:46:49 +0100 Subject: [PATCH] Add a README. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..337e5c5 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# Utilities for composing functions in Typed Racket + +Typed Racket's `compose` only takes two arguments, because in general +it is difficult to specify that the return types and the argument +types should be the same for two successive functions in the argument +list. This package defines some further utilities to allow +`compose`-ing more than two functions more comfortable in +Typed Racket.