Adam Forbes
Adam Forbes
Not sure if this is a bug or a feature request, but I'm wondering how to return a single entry. For example, I have a series of entries that are...
Hi! Per #14, I'm creating a new issue. Here's a quick example. ```nim import protobuf import std/streams import std/monotimes import std/strformat import std/random # Define our protobuf specification and generate...
The dialyzer doesn't like returning `ext/1` from a nif: ``` def add_numbers(_, _), do: exit(:nif_library_not_loaded) ``` See https://stackoverflow.com/questions/26612625/erlang-nifs-and-dialyzer-warning Changed all return values to `:erlang.nif_error/1` ``` def add_numbers(_, _), do: :erlang.nif_error(:nif_library_not_loaded)...