Skip to content

Instantly share code, notes, and snippets.

@bbhoss
Created September 16, 2015 03:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bbhoss/8de5d5d2a53ab53bd4d5 to your computer and use it in GitHub Desktop.
Save bbhoss/8de5d5d2a53ab53bd4d5 to your computer and use it in GitHub Desktop.
defmodule BasicBench do
use Benchfella
@list Enum.to_list(1..1000)
bench "++" do
foo = @list ++ @list
Enum.reverse foo
end
bench "|" do
foo = [99 | @list ]
Enum.reverse foo
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment