Skip to content

Instantly share code, notes, and snippets.

@volgar1x
Created December 12, 2013 13:40
Show Gist options
  • Save volgar1x/7928078 to your computer and use it in GitHub Desktop.
Save volgar1x/7928078 to your computer and use it in GitHub Desktop.
-module (db).
-export ([match/2]).
match(_, []) -> [];
match(Elem, [{Key, Elem} | Tail]) -> [Key | match(Elem, Tail)];
match(Elem, [{_, _} | Tail]) -> match(Elem, Tail).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment