``` mySequence .takeWhile { condition that when f...
# announcements
z
Copy code
mySequence
	.takeWhile { condition that when false will stop iterating the entire sequence }
	.map { ... }
	.filter { ... }