Gareth Pendleton
Gareth Pendleton
I think it would be a useful addition to the language to have a mechanism by which requirements which conflict can be ignored. I'm not sure the best way to...
I noticed that there wasn't a try_ version of the filter function. - Added try_filter function to the list module - Added try_filter_test
Running the following on the Gleam language tour results in 'too much recursion' error `import gleam/iterator pub fn main() { iterator.range(1,6000) |> iterator.try_fold(0, fn(acc, i) { Ok(acc+i) }) } `...