aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2022-07-24 17:40:50 +0100
committerGitHub <noreply@github.com>2022-07-24 17:40:50 +0100
commit472fbe4fb741f274be1054276065a4b06b84f92a (patch)
tree7bc08140d4353b85e6c3ac32bc657a7ff7feaca8
parent0896430b2abb46947cb6b9957cc8dc7ab1404643 (diff)
downloadgleam_stdlib-472fbe4fb741f274be1054276065a4b06b84f92a.tar.gz
gleam_stdlib-472fbe4fb741f274be1054276065a4b06b84f92a.zip
Stop. Continue.
-rw-r--r--src/gleam/iterator.gleam2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gleam/iterator.gleam b/src/gleam/iterator.gleam
index dc36765..92729a1 100644
--- a/src/gleam/iterator.gleam
+++ b/src/gleam/iterator.gleam
@@ -4,6 +4,8 @@ import gleam/option.{None, Option, Some}
// Internal private representation of an Iterator
type Action(element) {
+ // Dedicated to Electric Six
+ // https://youtu.be/_30t2dzEgiw?t=162
Stop
Continue(element, fn() -> Action(element))
}