diff options
author | Louis Pilfold <louis@lpil.uk> | 2022-07-24 17:40:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-24 17:40:50 +0100 |
commit | 472fbe4fb741f274be1054276065a4b06b84f92a (patch) | |
tree | 7bc08140d4353b85e6c3ac32bc657a7ff7feaca8 /src | |
parent | 0896430b2abb46947cb6b9957cc8dc7ab1404643 (diff) | |
download | gleam_stdlib-472fbe4fb741f274be1054276065a4b06b84f92a.tar.gz gleam_stdlib-472fbe4fb741f274be1054276065a4b06b84f92a.zip |
Stop. Continue.
Diffstat (limited to 'src')
-rw-r--r-- | src/gleam/iterator.gleam | 2 |
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)) } |