std::is_scalar

From cppreference.com
< cpp‎ | types
 
 
Utilities library
General utilities
Date and time
Function objects
Formatting library (C++20)
(C++11)
Relational operators (deprecated in C++20)
Integer comparison functions
(C++20)(C++20)(C++20)   
(C++20)
Swap and type operations
(C++14)
(C++11)

(C++11)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)

Elementary string conversions
(C++17)
(C++17)
 
Type support
Basic types
Fixed width integer types (C++11)
Numeric limits
C numeric limits interface
Runtime type information
Type traits
Type categories
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
is_scalar
(C++11)
Type properties
(C++11)
(C++11)
(C++14)
(C++11)

(C++11)(until C++20)
(C++11)(deprecated in C++20)
(C++11)
Type trait constants
Metafunctions
(C++17)
Supported operations
Relationships and property queries
Type modifications
(C++11)(C++11)(C++11)
Type transformations
(C++11)
(C++11)
(C++17)

(C++11)(until C++20)(C++17)
 
Defined in header <type_traits>
template< class T >
struct is_scalar;
(since C++11)

If T is a scalar type (that is a possibly cv-qualified arithmetic, pointer, pointer to member, enumeration, or std::nullptr_t type), provides the member constant value equal true. For any other type, value is false.

The behavior of a program that adds specializations for is_scalar or is_scalar_v (since C++17) is undefined.

Template parameters

T - a type to check

Helper variable template

template< class T >
inline constexpr bool is_scalar_v = is_scalar<T>::value;
(since C++17)

Inherited from std::integral_constant

Member constants

value
[static]
true if T is a scalar type , false otherwise
(public static member constant)

Member functions

operator bool
converts the object to bool, returns value
(public member function)
operator()
(C++14)
returns value
(public member function)

Member types

Type Definition
value_type bool
type std::integral_constant<bool, value>

Notes

Each individual memory location in the C++ memory model, including the hidden memory locations used by language features (e.g virtual table pointer), has scalar type (or is a sequence of adjacent bit-fields of non-zero length). Sequencing of side-effects in expression evaluation, interthread synchronization, and dependency ordering are all defined in terms of individual scalar objects.

Possible implementation

template< class T >
struct is_scalar : std::integral_constant<bool,
                     std::is_arithmetic<T>::value     ||
                     std::is_enum<T>::value           ||
                     std::is_pointer<T>::value        ||
                     std::is_member_pointer<T>::value ||
                     std::is_null_pointer<T>::value> {};

Example

#include <iostream>
#include <type_traits>
#include <typeinfo>
#include <utility>
 
template <typename Head, typename... Tail>
void are_scalars(Head&& head, Tail&&... tail) {
    using T = std::decay_t<decltype(head)>;
    std::cout << typeid(T).name() << " is "
              << ( std::is_scalar_v<T> ? "" : "not " )
              << "a scalar\n";
    if constexpr (sizeof... (Tail)) {
        are_scalars(std::forward<decltype(tail)>(tail)...);
    }
}
 
int main() {
    struct S { int m; } s;
    int S::* mp = &S::m;
    enum class E { e };
    are_scalars(42, 3.14, E::e, "str", mp, nullptr, s);
}

Possible output:

int is a scalar
double is a scalar
main::E is a scalar
char const* is a scalar
int main::S::* is a scalar
nullptr is a scalar
main::S is not a scalar

See also

checks if a type is an arithmetic type
(class template)
(C++11)
checks if a type is an enumeration type
(class template)
checks if a type is a pointer type
(class template)
checks if a type is a pointer to an non-static member function or object
(class template)