-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or requeststalledThis issue or pull request is temporarily put on hold.This issue or pull request is temporarily put on hold.
Description
Several months ago, I scrapped the idea of functions within functions, because a function like:
x1*f(x2), where
f(x2) = g(x2) and g(x2) = x2.
would be too complicated to validate and execute at runtime. The solution? Evaluate functions within functions as expressions right before validation. This would write:
f(x2) = g(x2) = x2, and
x1f(x2) = x1x2,
all before the function is even validated! I'm surprised I didn't think of this before.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requeststalledThis issue or pull request is temporarily put on hold.This issue or pull request is temporarily put on hold.
Type
Projects
Status
In Progress