GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::is_scalar(3) C++ Standard Libary std::is_scalar(3)

std::is_scalar - std::is_scalar


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


If T is a scalar 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.


T - a type to check


Helper variable template


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

Inherited from std::integral_constant


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


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


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


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.


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> {};

// Run this code


#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);
}


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


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

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.