Sergiu Ivanov <sivanov@colimite.fr>
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.
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.
syntax
( make-compose n)
n : exact-nonnegative-integer
syntax
( multi-compose func...)
func : expression
syntax
( multi-chain func...)
func : expression