Editing User:Josiah425:Implementing Function Handles
Jump to navigation
Jump to search
User account "Josiah425:Implementing Function Handles" is not registered. Please check if you want to create/edit this page.
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 3: | Line 3: | ||
* Lazy vs eagerness | * Lazy vs eagerness | ||
− | # lazy if function does not exist in scope, function remains lazy afterwards | + | ## lazy if function does not exist in scope, function remains lazy afterwards |
− | # eager when function does exist in scope | + | ## eager when function does exist in scope |
* Recognize class method vs function call | * Recognize class method vs function call | ||
e.g. <code>s= @sin; s(cls_with_sin_method)</code> should call the appropriate method and not <code>sin ()</code> | e.g. <code>s= @sin; s(cls_with_sin_method)</code> should call the appropriate method and not <code>sin ()</code> | ||
* [https://savannah.gnu.org/bugs/?47763 Bug #47763] | * [https://savannah.gnu.org/bugs/?47763 Bug #47763] |