Karolin Varner

Results 157 issues of Karolin Varner

We should explicitly expose sequence/typesafe/etc namespaces instead of polluting the root namespace. We might need a transitional module; or just keep exposing everything that is currently in the root namespace...

enhancement
needs-api-design
breaking-change

Map on a specific element of a set or object: ```js const euclidRem = (n, d) => n0 const mapNth = (seq, idx, fn) => map(seq, (tup) => { const...

enhancement
help wanted
good first issue
needs-api-design

Can we introduce type signatures using plain javascript? Used to take all arguments to their respective types. (Use with casting functions like obj, etc…) ``` typedfn = (types, fn) =>...

enhancement
question
needs-api-design

Apply a separate function to each element of a list. ```js mapTuple(["false", "22"], [Boolean, Number]) [false, 22] ```

enhancement

Implement a Y combinator. https://rosettacode.org/wiki/Anonymous_recursion#JavaScript

enhancement
help wanted
good first issue

Js structs have a number of disadvantages: * methods are unbound * new construction * This behaves weirdly. * No explicit handling of We could substitute our own syntax: ```js...

enhancement
needs-api-design

Version of compose that takes a sequence. (Might need a better name). ```js const composev = (seq) => compose(...iter(seq)); ```

enhancement
help wanted
good first issue

Given the functional nature of ferrum, using typescript seems like it might be a good choice…

enhancement
question
needs-api-design
breaking-change

Implement the standard pattern matching structure `[head, ...tail]` but using iterators…so with lazyness. ```js // Split the given sequence into head and tail const pop = (seq) => { const...

enhancement
help wanted
good first issue
needs-api-design

Include a fold vector processing API: Multiple fold operations at the same time; e.g. sum and count ```js const multiFoldl = (seq, ini, fns) => { const resv = list(ini);...

enhancement
question
needs-api-design