Skip to content

Instantly share code, notes, and snippets.

@macintux
Created May 27, 2014 15:41
Show Gist options
  • Save macintux/03f7d551222f33805a42 to your computer and use it in GitHub Desktop.
Save macintux/03f7d551222f33805a42 to your computer and use it in GitHub Desktop.
Erlang style gotchas

Name your parameters

Erlang atoms are awesome. Use them.

Counter-example:

    Existing = get_bucket_type(BucketType, undefined, false),

What do undefined and false mean on the other end? Who knows?

Here's the function head for get_bucket_type/3:

get_bucket_type(BucketType, Default, RequireActive) ->

So that parameter means only return a bucket type if it has been activated. Why not name the atoms can_be_inactive and must_be_active or similar?

It turns out that undefined is the default value if no bucket type is found. I'd prefer it be in the 3rd position to match proplists behavior, but I'd really rather that be hidden from the caller by making get_bucket_type/2 a wrapper for get_bucket_type/3.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment