Re: [elixir-core:5692] Accessing typespecs from a module

2016-05-09 Thread eksperimental
Thanks for answer José, Not to happy about the solution, because that will require that when code gets updated, we will have to duplicate the changes, and we may forget to do that. Is this a feature that could be added to Elixir, or its not there due to technical limitations? On Mon, 9 May 2016

Re: [elixir-core:5693] Add boolean methods for different unicode character groups (String.alphanumeric?, etc)

2016-05-09 Thread Ed W
On 05/05/2016 17:44, w.m.wij...@student.rug.nl wrote: - when included in the stdlib, compiling/usin Elixir on embedded devices becomes impossible because of the increased file size. Head above the parapet, but I would be interested in using Elixir in some embedded stuff. Object size and

Re: [elixir-core:5696] `try/after` does not provide the guarantees it is documented as providing

2016-05-09 Thread José Valim
You are correct. It behaves exactly as you described. We should definitely improve the docs. The best way to address this is to have a separate process that monitors and executes the clean up. Plug.Upload is such an example. For tests, there is the on_exit callback (and that's also why we don't

Re: [elixir-core:5698] Add boolean methods for different unicode character groups (String.alphanumeric?, etc)

2016-05-09 Thread Ben Wilson
http://nerves-project.org/ Enjoy :) On Monday, May 9, 2016 at 12:36:45 PM UTC-4, Ed Wildgoose wrote: > > On 05/05/2016 17:44, w.m.w...@student.rug.nl wrote: > > > - when included in the stdlib, compiling/usin Elixir on embedded devices > becomes impossible because of the increased file size.

Re: [elixir-core:5699] `try/after` does not provide the guarantees it is documented as providing

2016-05-09 Thread Myron Marston
Thanks for answering my questions! I'll open up a PR to improve the docs. On Monday, May 9, 2016 at 2:15:02 PM UTC-7, José Valim wrote: > > You are correct. It behaves exactly as you described. We should definitely > improve the docs. The best way to address this is to have a separate >