aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* apply functionsLouis Pilfold2024-07-29
|
* fix: Fix js trim implementation removing commasÉtienne Lévesque2024-07-29
|
* Fixing wrong argument name in the doc example for set.filterMarius Iversen2024-07-19
|
* Fix gleam/regex replace examples OK casingAntónio Dias2024-07-18
|
* Remove optional decoding of optional_field valueMichael Jones2024-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 portsNick Wilson2024-07-17
|
* Fix float_test with float.loosely_equalsHudson C. Dalpra2024-07-17
|
* Add float.moduloHudson C. Dalpra2024-07-17
|
* No dict updateLouis Pilfold2024-07-12
|
* No order min maxLouis Pilfold2024-07-12
|
* No unsafeLouis Pilfold2024-07-12
|
* No curryLouis Pilfold2024-07-12
|
* Deduplicate gleam/order negate examplesAntónio Dias2024-07-05
|
* fix typo in dict examplesJulian Kalema Lukwata2024-07-05
|
* Remove target annotationsGiacomo Cavalieri2024-06-25
|
* Split test, remove extra functionLouis Pilfold2024-06-23
|
* Fix regex.replace documentationRado2024-06-23
|
* Change the arguments order of regex.replace to be consistent with the rest ↵Rado2024-06-23
| | | | of the module functions
* Implement regex.replaceRado2024-06-23
|
* fixed typo in docs for absolute_value func in ints modulefrozen2024-06-23
|
* Fix `float.parse` failing to parse exponential notation on JavaScriptRichard Viney2024-06-23
|
* Improve Base64 decode performanceRichard Viney2024-06-23
|
* Base64 encoding optimisations. Fix encoding of large bit arrays on JS.Richard Viney2024-06-21
| | | This native JS implementation is 13-14x faster in simple benchmarks.
* Add gleam/set.{map}.Julia Pitts2024-06-18
|
* Fix iterator.find_map exampleJohannes2024-06-16
|
* Don't wait for next value in iterator.yieldJuraj Petráš2024-06-15
|
* Fix word in list module descriptionBill Nunney2024-06-11
|
* Rework javascript trim behaviour to match erlang behaviourBrad Lewis2024-06-05
|
* Remove docLouis Pilfold2024-06-02
|
* do no use outdatedinoas2024-06-02
|
* createupsertinoas2024-06-02
|
* Fix incorrect example in the `iterator.last` docsJoshua Hall2024-06-01
|
* Fix infinite recursion loop in `list.window` when `by` is 0Gioele Bucci2024-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!`
* adds count function for listthorhj2024-05-29
|
* Replaced `JSON.stringify` with new `inspectString`Michael Mark2024-05-29
| | | | | This should be an O(n) implementation, unless string concatenation is doing something I'm not expecting. This code should be reviewed.
* gleam formatMichael Mark2024-05-29
|
* Changed u-ification function to use `io_lib:format`Michael Mark2024-05-29
|
* Control characters 128-159 are now escapedMichael Mark2024-05-29
| | | | Also added tests for this new case
* Generalized escape handling for all chars < 32Michael Mark2024-05-29
| | | | | | | | | Also some minor improvements like more tests, correcting codes in format \u{xx} to \u{xxxx}, and escaping code 127. Now, all characters with an ASCII code of less than 32 are automatically converted into \u{xxxx} syntax in string.inspect. Now, the only way that string.inspect will show two strings as identical when they're not is if they use copycat unicodes, such as greek question mark or accent modifiers.
* Escape control character (\e) handlingMichael Mark2024-05-29
|
* Backspace and vertical tab escape handlingMichael Mark2024-05-29
|
* Add set.is_emptyRuslan Ustits2024-05-29
|
* Rename variablesRuslan Ustits2024-05-29
|
* Add is_empty to dictRuslan Ustits2024-05-29
|
* Deprecate min and maxLouis Pilfold2024-05-24
|
* Remove deprecatedLouis Pilfold2024-05-24
|
* Remove list.atLouis Pilfold2024-05-24
|
* The `dict` module gains the `combine` functionGiacomo Cavalieri2024-05-24
|
* Fix set.symmetric_difference docsKevin2024-05-24
| | | | It seems like the return value for this example is wrong here even though I haven't run the code locally to double-check yet.
* Test and implement set.symmetric_differenceLuci Phillips2024-05-21
|