[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Issue: FUNCTION-COMPOSITION (Version 2)



>Sorry I didn't catch this earlier.  I believe that this should read
>
>       (COND ((NULL FUNCTIONS) #'IDENTITY)
>	     ...
>
>(1) IDENTITY is the identity element for the COMPOSE operation.
>    (Actually not quite, in the case where the rightmost function
>    accepts more than one argument, but close enough.)

How about:
	(COND ((NULL FUNCTIONS) #'VALUES)
	    ...
This will accept multiple arguments.

ps, Anybody want to make a MULTIPLE-VALUE-CALL version of COMPOSE?