Set
Everything on SkillVeris tagged Set — collected across the glossary, study notes, blog, and cheat sheets.
11 resources across 1 library
Study Notes(11)
Set Operations: Union, Intersect, Except
Learn how LINQ's set operators — Union, Intersect, Except, and Distinct — deduplicate and compare sequences using equality semantics.
Variables: Set and UpdateContext
Power Apps has two kinds of variables — global, created with Set, and screen-scoped context variables, created with UpdateContext — each suited to different si…
Sets in Pascal
Explore Pascal's native set type — union, intersection, difference, and membership testing over ordinal values.
Bash Strict Mode
An explanation of the `set -euo pipefail` pattern known as bash strict mode, what each flag actually does, and where its edge cases can still surprise you.
Replica Sets Explained
How MongoDB replica sets provide high availability through automatic failover, elections, and data redundancy across primary and secondary nodes.
Strings in Redis
Learn how the Redis String type works as a binary-safe byte sequence, covering SET/GET semantics, atomic counters, expiration, and bit-level operations.
Map and Set in JavaScript
The Map and Set collection types introduced in ES6, their key differences from plain objects and arrays, and common use cases.
List, Set, and Map in Kotlin
A detailed look at Kotlin's three core collection types — List, Set, and Map — and how each stores and accesses data.
Hash Set and Hash Map Applications
Practical, real-world uses of hash sets and hash maps for deduplication, counting, caching, and fast lookups.
CROSS JOIN and Set Operations
Produce a Cartesian product with CROSS JOIN, and combine query results with UNION, UNION ALL, INTERSECT, and EXCEPT.
Setting and Resetting the Index
Understand how to promote columns to a DataFrame's index with set_index and revert them back with reset_index, and why the index matters for alignment.