My Project
Classes | Functions
is_fundamental.hpp File Reference
#include "bool_constant.hpp"
#include "is_arithmetic.hpp"
#include "is_void.hpp"
#include "is_null_pointer.hpp"

Go to the source code of this file.

Classes

class  bsl::is_fundamental< T >
 If the provided type is a fundamental type, provides the member constant value equal to true. Otherwise the member constant value is false. More...
 

Functions

template<typename T >
constexpr bool bsl::details::check_is_fundamental () noexcept
 Checks if the provided type "T" is a fundamental type and if so, returns true, otherwise returns false. More...
 

Detailed Description

Function Documentation

◆ check_is_fundamental()

template<typename T >
constexpr bool bsl::details::check_is_fundamental ( )
noexcept

Checks if the provided type "T" is a fundamental type and if so, returns true, otherwise returns false.

Template Parameters
Tthe type to query
Returns
Returns true if "T" is fundamental, false otherwise.