issues Search Results · repo:Khan/mu-lambda language:JavaScript
Filter by
9 results
(80 ms)9 results
inKhan/mu-lambda (press backspace or delete to remove)I d like to be able to run the tests and compute coverage for each PR.
kevinbarabash
- 1
- Opened on Feb 9, 2019
- #11
kevinbarabash
- 2
- Opened on Feb 9, 2019
- #9
map had to be rewritten from
const map = curry((f, arr) = arr.map(f));
to
const map = curry((f, arr) = arr.map((x) = f(x)));
This allows for partial application of each function within an array ...
kevinbarabash
- Opened on Jan 23, 2017
- #7
The goal is to provide a way to safely compose functions without having to worry about any one of the failing.
// makeSafe :: fn - * - Maybe
makeSafe = (fn) = curryN(fn.length, (...args) = Maybe.of(fn(...args))); ...
kevinbarabash
- Opened on Jan 23, 2017
- #6
kevinbarabash
- Opened on Jan 23, 2017
- #5
The current curry function erases the function length which means that the function can t be re-curried to make it safe
(for use with the Maybe monad).
kevinbarabash
- Opened on Jan 21, 2017
- #4
kevinbarabash
- Opened on Jan 21, 2017
- #3
kevinbarabash
- Opened on Nov 1, 2016
- #2
kevinbarabash
- Opened on Nov 1, 2016
- #1

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Restrict your search to the title by using the in:title qualifier.
Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Press the /
key to activate the search input again and adjust your query.