I want to get into more template meta-programming. I know that SFINAE stands for "substitution failure is not an error." But can someone show me a good use for SFINAE?
|
|
Heres one example (from here):
When |
|||||||||||||
|
|
I like using
It can be quite useful. For example, i used it to check whether an initializer list collected using operator comma is no longer than a fixed size
The list is only accepted when M is smaller than N, which means that the initializer list has not too many elements. The syntax Expressed with
In practice, i often find the ability to check conditions a useful ability. |
|||||||||
|
|
Boost's enable_if library offers a nice clean interface for using SFINAE. One of my favorite usage examples is in the Boost.Iterator library. SFINAE is used to enable iterator type conversions. |
||||
|
|