Louis Pilfold
Louis Pilfold
Hello! Very interested in this library! Looks very useful. I'm interested in how you approach error handling with this library, but could not find any examples or docs. Examples of...
One of the things I'm really enjoying about Elm is the official style guide and automatic code formatting tools. One can write code in any sloppy style, hit save, and...
I attempted to define the iolist type like so: ```elm type iolist = list iolist | string val my_iolist : iolist let my_iolist = ["h", ["i", ["!"]]] ``` This does...
Hello! I wish to add a `set` module to `alpaca_lib`. Given the term is defined in Erlang and not Alpaca how do I define the type? I could do something...
Currently it's not possible to define a zero arity function in Alpaca as the compiler treats them as values. I can see a few use cases for zero arity functions....
Hello! When we've got lots of lovely Alpaca modules out in the world I could see it being handy to have a way of aliasing a module name so that...
Hiya Over in Alpaca lib it was stated that camelCase is the way to write functions. Currently the built in guard functions (is_integer/1 etc) use snake_case. Should we switch them...
Hello! One thing that Alpaca has inherited from Erlang is the ability to write multiple function heads and use pattern matching to select the one that runs for given arguments....
Hello! I'd like to suggest adding an automatically imported pipe-forward function to Alpaca. ```elm let value |> func = func value ``` This would allow us to chain functions to...
Currently we qualify the second type when there is a name clash: ``` #(Message, app/queue.Message) ``` This helps a lot, but sometimes it is unclear where the first type is...