Flatten
Flatten instance method reference that resolved to SE-0042.
let f = String.hasPrefix
// function is curried
f("Hello")("He") // => true
let __f = flatten(f)
// function is flattend
__f("Hello", "He") // => true
Limitation
Only up to 20 arguments are supported.
Author
Yusuke Hosonuma / [email protected] / @tobi462
License
Flatten is available under the MIT license. See the LICENSE file for more info.