Add `invoke` function

Description

When writing code that needs to do predicate dispatch (such as code analysis libraries), it's quite common to need an `invoke` function for a pattern that looks like:

This is definitely expressible without `invoke`, but the `condp invoke` pattern reads quite nicely.

Additionally `invoke` is also useful in the cases where one has a sliding window of functions and values, for patterns like:

Patch: 0001-CLJ-2342-add-invoke.patch

Environment

None

Attachments

1

Activity

Show:

Rick Moynihan March 30, 2018 at 5:22 PM

Some use cases for this are also when you have partially applied all the arguments to a function already and want to call it.

(map (comp :result invoke) fns)

apply can't be used for these cases as it requires arguments to be provided.

Details

Assignee

Reporter

Approval

Triaged

Priority

Created March 30, 2018 at 11:54 AM
Updated March 30, 2018 at 5:22 PM