Sequences
Everything on SkillVeris tagged Sequences — collected across the glossary, study notes, blog, and cheat sheets.
5 resources across 1 library
Study Notes(5)
Lazy Sequences
Understand how Clojure's lazy sequences defer computation until it's needed, enabling infinite sequences, and learn the chunking and memory pitfalls that trip…
Sequences in Clojure
Understand Clojure's sequence abstraction — the uniform interface of first, rest, and cons that lets the same functions work across lists, vectors, maps, and l…
Lists and Sequences
Compare F#'s immutable linked-list list type with the lazy, deferred seq type, and learn the core operations for building and transforming both.
Escape Sequences in C++
Learn what escape sequences are in C++, the full list of common ones, and how to use them inside strings and characters.
Sequences in Kotlin
How Kotlin Sequences provide lazy, element-by-element evaluation of collection operations for better performance on large chains.