fast-elixir icon indicating copy to clipboard operation
fast-elixir copied to clipboard

:dash: Writing Fast Elixir :heart_eyes: -- Collect Common Elixir idioms.

Results 8 fast-elixir issues
Sort by recently updated
recently updated
newest added

The example here https://github.com/devonestes/fast-elixir/blob/master/code/general/string_split_large_strings.exs#L21 uses Erlang's string module but this is not a fair comparison since Elixir strings are binaries. Maybe this should have a test with https://www.erlang.org/doc/man/binary.html#split-3: ```erlang binary:split(Str,...

Hey, great repo here! Thanks! I learnt a lot! I landed here after searching for a comparison between: ``` is_list_member = Enum.member?(list, el) # vs is_in_list = el in list...

I noticed that there was a benchmark about state retrieval which did not include `persistent_term`s. I added them to the benchmark. However, there is no benchmark for writing speed or...

I just discovered the `:random.uniform/1` function so I tested it against the `Enum.random/1` that I was using before. I've used the latest Elixir version though as I thought there was...

Branched off of `update-elixir-erlang`, will rebase once that's been merged. Compares various methods for checking whether an element is a member of an enumerable. I'll add the README section once...

Hi! I was curious if you had any plans to update this for more recent Elixir versions?