Skip to content

Instantly share code, notes, and snippets.

@youknowone
Last active August 29, 2015 14:02
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 youknowone/510dddac4c3082452fa3 to your computer and use it in GitHub Desktop.
Save youknowone/510dddac4c3082452fa3 to your computer and use it in GitHub Desktop.
How to implement custom sequence(for-in container) in Swift
class HundredContainer: Sequence {
var count = 0;
typealias GeneratorType = GeneratorOf<Int>
func generate() -> GeneratorType {
return GeneratorOf<Int>({
if self.count < 100 {
self.count += 1
return self.count
} else {
return nil;
}
})
}
}
var c = HundredContainer();
for i in c {
println(i)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment