-
Updated
Jun 26, 2022 - Haskell
higher-order-functions
Here are 125 public repositories matching this topic...
-
Updated
Jul 14, 2022 - C++
-
Updated
Jun 16, 2021 - C++
-
Updated
May 12, 2021 - TypeScript
-
Updated
Mar 9, 2018 - JavaScript
-
Updated
Feb 17, 2017 - C
-
Updated
Dec 16, 2021 - Kotlin
-
Updated
Mar 14, 2019 - Go
-
Updated
Jun 5, 2021 - Objective-C
-
Updated
Feb 12, 2022 - JavaScript
-
Updated
Mar 25, 2021 - Java
-
Updated
May 17, 2018 - TypeScript
goToPipeValue
Is your feature request related to a problem? Please describe.
Want to dynamically navigate to the next URL from returning it in a Pipe from a BotAction
Describe the solution you'd like
goToPipeValue: BotAction
that looks at the injects pipe object's value, maybe checks to see if it's a url before attempting to navigate there
-
Updated
Dec 15, 2018 - JavaScript
-
Updated
Jun 23, 2022 - C#
-
Updated
May 4, 2022
-
Updated
Jun 23, 2019 - Erlang
-
Updated
Sep 20, 2017 - Swift
-
Updated
Mar 11, 2018 - TypeScript
-
Updated
Feb 8, 2022
-
Updated
Jul 23, 2021 - JavaScript
Add other languages
In the language of your choice, write an example of:
add(1)(2) // A function that returns a function value.
each([1, 2, 3], print) // A function that takes a function parameter.
Add [language name].[language extension]
source file to the root.
For example:
// javascript.js
function add(x) {
return function(y) { return x + y }
}
function each(list, callback) {
-
Updated
Feb 14, 2019 - C++
-
Updated
May 31, 2021 - JavaScript
-
Updated
Jun 18, 2019 - Python
-
Updated
Jan 4, 2021 - PureScript
-
Updated
Jun 18, 2019 - Go
-
Updated
Nov 17, 2018 - Clojure
Improve this page
Add a description, image, and links to the higher-order-functions topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the higher-order-functions topic, visit your repo's landing page and select "manage topics."
Since users are able to construct possibly error containing patters, we need to note in the documentation that things like:
are valid programs up until the pattern match is attempted on the last line. Note we have not defined
A
to be anything.