-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
stdlibStandard LibraryStandard Library
Description
Adapt the dynamic builtins to support proper currying. Make sure this doesn't break anything else that is more widely a standard.
E.g.:
?- C = goal(Var1), apply(C, [Var2]). % is equivalent to goal(Var1, Var2)and
?- curry(goal, [Var1], Curried).
Curried = goal(Var1).
?- curry(goal(Var1), [Var2], Curried).
Curried = goal(Var1, Var2).Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
stdlibStandard LibraryStandard Library