C++C++17C++20Learn C++SyntaxTemplates

How To Use void_t Alias Template in C++ 17?

How To Use void t Alias Template in C++ 17

In C++ 17, there is a very useful alias template for metaprogramming that can be used to simplify use of SFINAE. The void_t is a meta-function that is used to map any types ( or types) to type void. In this post, we explain what is void_t, how you can use it in different examples.

What is alias template void_t in C++ 17?

The void_t is an alias template which is introduced with C++17, it is defined in <type_traits> header and it is a metafunction that is used to map any types (or a sequence of any types) to type void. The main purpose of void_t is to make easy writing of type traits. It is used to solve SFINAE (Substitution Failure Is Not An Error) prior to concepts of C++20 standard. SFINAE rule says that If the deduced type or explicitly specified type for the template parameter fails, the specialization is discarded from the overload set instead of causing an error in compilation.

Since C++17, the std::void_t is defined as below.

Now, let’s see how we can use it in template definitions.

How to use alias template void_t to check a typename in a template?

We can use void_t to if a class has a certain typename using at compile time, here we check if it has ‘type’ typename.

here is a full example about this, here we check ‘typeB‘ typename if it has or not.

and the output will be as follows.

How to use alias template void_t to check a member in a template?

We can use void_t to check if there is a member in a template, i.e. we can check if it has ‘varB’ member or not, as given below.

and the output will be as follows.

How to use alias template void_t to check if a class has a function name?

We can use void_t to check if a class has a method. Here is an example that checks if myfB() function exists in that class.

Here is a full example.

and the output will be as follows.

How to use alias template void_t to check whether a class is iterable?

We can use void_t to check whether a class is iterable or not. Here is a simple example.

Here is a full example.

and the output will be as follows.

As you see, interestingly the void_t is very useful to simplify use of SFINAE for metaprogramming.

For more details about this feature in C++17 standard, please see these papers; N3911

How To Use void t Alias Template in C++ 17

C++ Builder is the easiest and fastest C and C++ compiler and IDE for building simple or professional applications on the Windows operating system. It is also easy for beginners to learn with its wide range of samples, tutorials, help files, and LSP support for code. RAD Studio’s C++ Builder version comes with the award-winning VCL framework for high-performance native Windows apps and the powerful FireMonkey (FMX) framework for UIs.

There is a free C++ Builder Community Edition for students, beginners, and startups; it can be downloaded from here. For professional developers, there are Professional, Architect, or Enterprise versions of C++ Builder and there is a trial version you can download from here.

Oh hi there 👋
It’s nice to meet you.

Sign up to receive awesome C++ content in your inbox, every day.

We don’t spam! Read our privacy policy for more info.

About author

Dr. Yilmaz Yoru has 35+ years of coding with more than 30+ programming languages, mostly C++ on Windows, Android, Mac-OS, iOS, Linux, and some other operating systems. He graduated and received his MSc and PhD degrees from the Department of Mechanical Engineering of Eskisehir Osmangazi University. He is the founder and CEO of ESENJA LLC Company. His interests are Programming, Thermodynamics, Fluid Mechanics, Artificial Intelligence, 2D & 3D Designs, and high-end innovations.
Related posts
C++C++17Language FeatureLearn C++

How To Use Skia Shader SkSL Shading Language Code in C++ Builder?

Artificial Intelligence TechC++C++17C++20Learn C++

How To Create Simple Generative AI Code In C++

C++C++17Language FeatureLearn C++

How To Use The SVG Image Format With Skia In C++ Builder

C++C++17Language FeatureLearn C++

How To Use Skia Images in C++ Builder?