Operator
Everything on SkillVeris tagged Operator — collected across the glossary, study notes, blog, and cheat sheets.
15 resources across 1 library
Study Notes(15)
Filtering with Where
Learn how LINQ's Where operator filters sequences using predicates, how deferred execution affects when the filter actually runs, and how to combine multiple c…
Keyed State and Operator State
How Flink's two fundamental state primitives differ in scope, partitioning, and redistribution during rescaling.
Operators
Understand what Airflow operators are, the major built-in categories, and how to configure or subclass them to build reliable tasks.
The Cut Operator
How Prolog's cut operator (!) prunes backtracking, the difference between green and red cuts, and how cut underlies the if-then-else idiom -- along with its co…
Metamethods and Operator Overloading
Learn how Lua's arithmetic, comparison, and conversion metamethods let custom tables respond naturally to +, ==, tostring(), and even direct function-call synt…
The Pipe Operator
Understand how Elixir's |> pipe operator chains function calls into readable, left-to-right data transformation pipelines.
Kubernetes Operators Explained
What a Kubernetes Operator is, how it combines a CustomResourceDefinition with a controller to automate operational knowledge, and patterns for building one re…
Operator Precedence and Associativity in C++
Understand how C++ operator precedence and associativity determine evaluation order in complex expressions, with common gotchas explained.
Ternary Operator in C++
Learn how the C++ ternary conditional operator (?:) provides a compact alternative to if-else for simple value selection.
Operator Overloading in Python
How to make Python's built-in operators (+, -, *, ==, <, etc.) work on your own classes by implementing the corresponding dunder methods.
Operator Overloading in Rust
Rust lets custom types support operators like + and - by implementing traits from std::ops.
Safe Calls and the Elvis Operator in Kotlin
The ?. safe call and ?: Elvis operator let you access members of nullable values and supply defaults without verbose null checks.
Nil Coalescing Operator in Swift
The `??` operator supplies a default value when an optional is nil, in a single concise expression.
Named Arguments and the Nullsafe Operator
Named arguments let callers pass function parameters by name in any order, and the nullsafe operator short-circuits chained property/method access safely when…
Operator Overloading
Learn how Ruby implements operators as ordinary methods, letting you define custom `+`, `==`, `<<`, and other operators on your own classes for expressive, idi…