CurryL {functional} | R Documentation |
Lazy curry; thanks, Jamie! <https://github.com/klutometis/R-functional/issues/1>
Description
Lazy curry; thanks, Jamie! <https://github.com/klutometis/R-functional/issues/1>
Usage
CurryL(FUN, ...)
Arguments
FUN |
the function to be curried |
... |
the determining parameters |
Examples
# day is not defined; thanks, Jamie Folson.
CurryL(function(...) match.call(),
x=5,
y=as.Date(day))(z=as.Date(day,"%Y"))
[Package functional version 0.6 Index]