templates

Installation
SKILL.md

Templates Skill

Production-Grade Development Skill | C++ Template Metaprogramming

Master C++ template programming from basics to advanced metaprogramming techniques.


Template Basics

Function Templates

// Basic function template
template<typename T>
T max(T a, T b) {
    return (a > b) ? a : b;
}
Related skills

More from pluginagentmarketplace/custom-plugin-cpp

Installs
1
GitHub Stars
4
First Seen
Apr 7, 2026