Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Address review | sobolevn | 2024-08-24 | |
| | ||||
* | Fix js | sobolevn | 2024-08-24 | |
| | ||||
* | Address review | sobolevn | 2024-08-24 | |
| | ||||
* | Fix tests | sobolevn | 2024-08-24 | |
| | ||||
* | Add `bit_array.compare` | sobolevn | 2024-08-24 | |
| | ||||
* | Remove target annotation for string reverse | Giacomo Cavalieri | 2024-08-20 | |
| | ||||
* | Remove target annotation from bit_array inspect | Giacomo Cavalieri | 2024-08-20 | |
| | ||||
* | Fix slice | Louis Pilfold | 2024-08-19 | |
| | | | | Closes https://github.com/gleam-lang/gleam/issues/3499 | |||
* | add test, make erlang and javascript implementation agree #672 | Joshua Reusch | 2024-08-14 | |
| | ||||
* | fix percent_decode example #672 | Joshua Reusch | 2024-08-14 | |
| | ||||
* | change to check globalThis.Intl | David Dios | 2024-08-14 | |
| | ||||
* | fail-safe Intl check | David Dios | 2024-08-14 | |
| | ||||
* | Remove `int.InvalidBase` | Giacomo Cavalieri | 2024-08-13 | |
| | ||||
* | Add doctest to `iterator.repeatedly` | sobolevn | 2024-08-13 | |
| | ||||
* | bring back `gleam` tag that I removed by accident | Joshua Reusch | 2024-08-13 | |
| | ||||
* | fix documentation examples | Joshua Reusch | 2024-08-13 | |
| | ||||
* | improve pop_grapheme performance | Joshua Reusch | 2024-08-13 | |
| | ||||
* | apply functions | Louis Pilfold | 2024-07-29 | |
| | ||||
* | fix: Fix js trim implementation removing commas | Étienne Lévesque | 2024-07-29 | |
| | ||||
* | Fixing wrong argument name in the doc example for set.filter | Marius Iversen | 2024-07-19 | |
| | ||||
* | Fix gleam/regex replace examples OK casing | António Dias | 2024-07-18 | |
| | ||||
* | Remove optional decoding of optional_field value | Michael Jones | 2024-07-17 | |
| | | | | | We are happy with it being an optional key and a regular value. Not an implicitly optional value. | |||
* | Correct implementation of uri.origin and add tests for default ports | Nick Wilson | 2024-07-17 | |
| | ||||
* | Fix float_test with float.loosely_equals | Hudson C. Dalpra | 2024-07-17 | |
| | ||||
* | Add float.modulo | Hudson C. Dalpra | 2024-07-17 | |
| | ||||
* | No dict update | Louis Pilfold | 2024-07-12 | |
| | ||||
* | No order min max | Louis Pilfold | 2024-07-12 | |
| | ||||
* | No unsafe | Louis Pilfold | 2024-07-12 | |
| | ||||
* | No curry | Louis Pilfold | 2024-07-12 | |
| | ||||
* | Deduplicate gleam/order negate examples | António Dias | 2024-07-05 | |
| | ||||
* | fix typo in dict examples | Julian Kalema Lukwata | 2024-07-05 | |
| | ||||
* | Remove target annotations | Giacomo Cavalieri | 2024-06-25 | |
| | ||||
* | Split test, remove extra function | Louis Pilfold | 2024-06-23 | |
| | ||||
* | Fix regex.replace documentation | Rado | 2024-06-23 | |
| | ||||
* | Change the arguments order of regex.replace to be consistent with the rest ↵ | Rado | 2024-06-23 | |
| | | | | of the module functions | |||
* | Implement regex.replace | Rado | 2024-06-23 | |
| | ||||
* | fixed typo in docs for absolute_value func in ints module | frozen | 2024-06-23 | |
| | ||||
* | Fix `float.parse` failing to parse exponential notation on JavaScript | Richard Viney | 2024-06-23 | |
| | ||||
* | Improve Base64 decode performance | Richard Viney | 2024-06-23 | |
| | ||||
* | Base64 encoding optimisations. Fix encoding of large bit arrays on JS. | Richard Viney | 2024-06-21 | |
| | | | This native JS implementation is 13-14x faster in simple benchmarks. | |||
* | Add gleam/set.{map}. | Julia Pitts | 2024-06-18 | |
| | ||||
* | Fix iterator.find_map example | Johannes | 2024-06-16 | |
| | ||||
* | Don't wait for next value in iterator.yield | Juraj Petráš | 2024-06-15 | |
| | ||||
* | Fix word in list module description | Bill Nunney | 2024-06-11 | |
| | ||||
* | Rework javascript trim behaviour to match erlang behaviour | Brad Lewis | 2024-06-05 | |
| | ||||
* | Remove doc | Louis Pilfold | 2024-06-02 | |
| | ||||
* | do no use outdated | inoas | 2024-06-02 | |
| | ||||
* | createupsert | inoas | 2024-06-02 | |
| | ||||
* | Fix incorrect example in the `iterator.last` docs | Joshua Hall | 2024-06-01 | |
| | ||||
* | Fix infinite recursion loop in `list.window` when `by` is 0 | Gioele Bucci | 2024-05-29 | |
| | | | | | The function would enter an endless loop if 0 was passed as second argument, for e.g `list.window([1, 2], 0) // endless loop!` |