More C++ Idioms/SFINAE

From Wikibooks, the open-content textbooks collection

Jump to: navigation, search

Contents

[edit] Intent

To allow overload resolution of function templates using type traits rather than the type itself.

[edit] Also Known As

Substitution Failure Is Not An Error

[edit] Motivation

[edit] Known Uses

[edit] Related Idioms

[edit] References