Tag: range
3 posts
-
[2026] Go in 2 Weeks #01 | Days 1–2: Go Philosophy & Core Syntax — A C++ Developer’s First Steps
Go tutorial for C++ devs: install Go, := and var, for/range, garbage collection, go fmt, packages, and modules—side by side with C++. Golang basics and ...
-
[2026] C++ iterator | Iterator Complete Guide
A C++ iterator is an object that iterates over container elements. It is used as begin/end in range-based for and vector, and is often used when handlin...
-
[2026] C++ Range Adaptors | Pipeline Composition in C++20
C++20 range adaptors: filter, transform, pipe syntax, lazy views, custom adaptors, and lifetime—how they relate to std::views.