Collection
Everything on SkillVeris tagged Collection — collected across the glossary, study notes, blog, and cheat sheets.
12 resources across 1 library
Study Notes(12)
MFC Collection Classes
A tour of MFC's template and legacy collection classes for storing arrays, lists, and maps of data, and how to choose between them.
Garbage Collection in .NET
How the .NET runtime automatically tracks and reclaims managed memory using a generational, tracing garbage collector, and how to work with it instead of again…
Collection and Global Variables
Learn the difference between collection variables, scoped to one collection, and global variables, available everywhere, and when to use each.
Collection Runner
Learn how Postman's Collection Runner executes an entire collection of requests in sequence, complete with data-driven iterations, delays, and detailed pass/fa…
Collections Basics
Learn how Postman Collections group related API requests into a single organized, shareable, and runnable unit.
Importing and Exporting Collections
Learn how to move Postman Collections between teammates, tools, and environments using export files, Postman links, and API-spec imports.
Garbage Collection in D
How D's built-in conservative garbage collector manages class instances, dynamic arrays, and closures, and how to control or work around it.
Inserting Documents
Learn how to add data to MongoDB collections with insertOne and insertMany, how _id is generated, and how schema flexibility affects inserts.
Collection Operations in Kotlin (map, filter, fold)
How to transform, filter, and reduce Kotlin collections using functional-style operations like map, filter, and fold.
Collection Operations in Swift (map, filter, reduce)
Master Swift's functional-style collection operations — map, filter, reduce, compactMap, and sorted.
Collection Interfaces
Survey the layered hierarchy of IEnumerable, ICollection, IList, and their read-only and generic variants that unify how .NET collections are consumed.
Garbage Collection and Memory
The .NET garbage collector automatically reclaims managed memory using a generational, tracing algorithm, freeing developers from manual deallocation while sti…