-
Updated
May 8, 2022 - Elixir
elixir-library
Here are 313 public repositories matching this topic...
-
Updated
Mar 9, 2021 - Elixir
-
Updated
May 9, 2022 - Elixir
-
Updated
Dec 21, 2021 - Elixir
redbug doesn't seem to like tuple_size/1 in guards. It can be fixed in redbug itself or as a workaround in Rexbug, converting tuple_size(x) == y to is_tuple(x) and size(x) == y.
The former is probably the correct thing to do, the latter is probably much convenient to do right now.
-
Updated
Feb 16, 2020 - Elixir
-
Updated
Oct 4, 2021 - Elixir
-
Updated
Dec 10, 2021 - Erlang
-
Updated
Jul 10, 2020 - Elixir
-
Updated
May 12, 2022 - Elixir
-
Updated
May 26, 2021 - Elixir
This idea comes from some feedback on the Erlang forum:
Have you considered maybe supporting callbacks and/or notifications as well as Funs? e.g.
{callback, Mod :: atom(), Fun :: atom()} {notify, Method :: call | cast | info, Pi
-
Updated
Oct 30, 2021 - Elixir
-
Updated
Feb 9, 2022 - Elixir
- Straightforward now that this is implemented: #30
- YAML lib: https://github.com/KamilLelonek/yaml-elixir
- Current parsers: pardall_markdown/metadata_parser
Proposed Solution
- Parse YAML to Elixir, getting an Elixir map from the YAML FrontMatter string.
- Then, feed the resulting e
-
Updated
Jul 5, 2021 - Elixir
-
Updated
Nov 7, 2018 - Elixir
-
Updated
Apr 22, 2022 - Elixir
-
Updated
Jan 4, 2022 - Elixir
-
Updated
Sep 30, 2018 - Erlang
-
Updated
Jul 13, 2021 - Elixir
-
Updated
Jan 19, 2022 - Elixir
-
Updated
Oct 27, 2021 - Elixir
-
Updated
Mar 10, 2022 - Elixir
-
Updated
Oct 7, 2020 - Elixir
-
Updated
May 4, 2022 - Elixir
-
Updated
Jul 7, 2020 - Elixir
Improve this page
Add a description, image, and links to the elixir-library topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the elixir-library topic, visit your repo's landing page and select "manage topics."
Looking as wasmer usage examples, I noticed that errors returned from a wasm function call not just have a message but also a stacktrace. No one complained yet, but I guess we want to serialize stacktraces into our error feedback.
The place to change would be [within instance.rs#execute_function()](https://github.com/tessi/wasmex/blob/f4894f78b9854c7256f9c7265add5e0187c3a546/native/wasmex/src/i