Threading macro #9

Closed
opened 2016-11-30 14:14:04 +00:00 by SuzanneSoy · 1 comment
SuzanneSoy commented 2016-11-30 14:14:04 +00:00 (Migrated from github.com)

Add a threading macro. Possible features:

  • left to right or right to left: (~> x add1 sqrt) ≡ (<~ sqrt add1 x)
  • implicit partial application (~> 4 sqrt (+ 10)) ; => 12
    • should the threaded value be added as the first or last argument?
  • support for multiple output values (passed as multiple arguments to the next function)
  • hole (~> 16 (sqrt _) (/ _ 2) (/ 1 _)) ; => 1/2
Add a threading macro. Possible features: * left to right or right to left: `(~> x add1 sqrt) ≡ (<~ sqrt add1 x)` * implicit partial application `(~> 4 sqrt (+ 10)) ; => 12` * should the threaded value be added as the first or last argument? * support for multiple output values (passed as multiple arguments to the next function) * hole `(~> 16 (sqrt _) (/ _ 2) (/ 1 _)) ; => 1/2`
SuzanneSoy commented 2016-12-02 18:49:54 +00:00 (Migrated from github.com)

This issue was moved to jeapostrophe/remix#12

This issue was moved to jeapostrophe/remix#12
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: suzanne.soy/remix#9
No description provided.