Skip to content

Instantly share code, notes, and snippets.

@kalub92
Created March 5, 2018 22:12
Show Gist options
  • Save kalub92/29461d6d7189a1313380c3c944560fd2 to your computer and use it in GitHub Desktop.
Save kalub92/29461d6d7189a1313380c3c944560fd2 to your computer and use it in GitHub Desktop.
public func peek() -> Int {
if items.count != 0 {
return items[0]
} else {
fatalError()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment