Skip to content

Instantly share code, notes, and snippets.

@sashaafm
Last active February 9, 2016 15:42
Show Gist options
  • Save sashaafm/96f7dc333df3f97af9ea to your computer and use it in GitHub Desktop.
Save sashaafm/96f7dc333df3f97af9ea to your computer and use it in GitHub Desktop.
@spec front(list(tuple())) :: tuple() | nil
def front([]), do: nil
def front(queue) do
{result, _} = gfe queue
result
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment