Replies: 1 comment 1 reply
-
Please, create a suggestion (or find an existing one), the process is described in a README for this repo |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Due to the nature of functional programming, it's possible to partially apply function with by ref types as long they don't leave the stack (E.g the curried function being returned). Function is simply a processing unit and these detail of how to process things are described in our code, unlike imperative programming where state mutates, it's possible to contain things well in units of process therefore having things that seems like they would be leaving the stack like curried functions but will stay in stack (they often do anyways through inlining)
Beta Was this translation helpful? Give feedback.
All reactions