Generic
Everything on SkillVeris tagged Generic — collected across the glossary, study notes, blog, and cheat sheets.
9 resources across 2 libraries
Study Notes(7)
Assertions with expect()
Learn Playwright's web-first assertions — how expect(locator) auto-retries until conditions are met, and how that differs from generic value assertions.
Interfaces and Generic Procedures
Learn how explicit interfaces make procedure calls safe and how generic interfaces let one name dispatch to multiple type-specific implementations, including o…
Generic Types in F#
Explore how F# generic types and automatic type inference let you write reusable code that works across many types safely.
Generic Classes in TypeScript
Learn how to parametrize class instance and method types with generics to build reusable, type-safe data structures in TypeScript.
Generic Constraints in TypeScript
Learn how to restrict generic type parameters with `extends` so generic code can safely rely on specific properties or shapes.
Generic Functions in TypeScript
Learn how to write and call generic functions in TypeScript, including type inference, explicit type arguments, and multi-parameter generics.
Generics Explained
Understand how C# generics let you write type-safe, reusable code that works across many types without sacrificing performance or requiring casts.
Cheat Sheets(2)
TypeScript Generics Deep Dive Cheat Sheet
Covers generic functions, constraints with extends and keyof, generic classes with default type parameters, and common generic patterns.
Rust Const Generics Cheat Sheet
Parameterizing types and functions over compile-time constant values, array-length generics, and const expressions in bounds.