Skip to content

Instantly share code, notes, and snippets.

@svenfuchs
Created December 23, 2008 11:43
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 svenfuchs/39312 to your computer and use it in GitHub Desktop.
Save svenfuchs/39312 to your computer and use it in GitHub Desktop.
when you read:
with [:foo, :bar], :baz
does that mean:
with(:foo AND :baz) OR with(:bar AND :baz)
or does it mean:
with(:foo AND :bar) OR with(:baz)
i.e. would the nested args array indicate a logical OR or a logical AND?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment