Skip to content

Instantly share code, notes, and snippets.

@pyrtsa
Created August 23, 2014 14:08
Show Gist options
  • Save pyrtsa/ae8f7cdcfadbb12f35a1 to your computer and use it in GitHub Desktop.
Save pyrtsa/ae8f7cdcfadbb12f35a1 to your computer and use it in GitHub Desktop.
Get the first value of sequence in Swift
func first<S: SequenceType>(xs: S) -> S.Generator.Element? {
var g = xs.generate()
return g.next()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment