libcopp 2.3.1
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Data Structures | Typedefs | Functions
nostd Namespace Reference

Data Structures

struct  __enable_nonnull
 
struct  __enable_nullability_unknown
 
struct  __enable_nullable
 
struct  __is_nullability_compatible
 
struct  __is_nullability_compatible< T, void_t< typename T::nullability_compatible_type > >
 
struct  __is_nullability_support
 
struct  __is_nullability_support< std::shared_ptr< T > >
 
struct  __is_nullability_support< std::unique_ptr< T, Deleter... > >
 
struct  __is_nullability_support< T * >
 
struct  __is_nullability_support< T U::* >
 

Typedefs

template<class T , class = typename __enable_nullable<T>::type>
using nullable = T
 
template<class T , class = typename __enable_nonnull<T>::type>
using nonnull = T
 
template<class T , class = typename __enable_nullability_unknown<T>::type>
using nullability_unknown = T
 

Functions

template<class TCONTAINER >
LIBCOPP_COPP_API_HEAD_ONLY constexpr auto size (const TCONTAINER &container) -> decltype(container.size())
 
template<class T , size_t SIZE>
LIBCOPP_COPP_API_HEAD_ONLY constexpr size_t size (const T(&)[SIZE]) noexcept
 
template<class TCONTAINER >
LIBCOPP_COPP_API_HEAD_ONLY constexpr auto data (TCONTAINER &container) -> decltype(container.data())
 
template<class TCONTAINER >
LIBCOPP_COPP_API_HEAD_ONLY constexpr auto data (const TCONTAINER &container) -> decltype(container.data())
 
template<class T , size_t SIZE>
LIBCOPP_COPP_API_HEAD_ONLY constexpr T * data (T(&array_value)[SIZE]) noexcept
 
template<class TELEMENT >
LIBCOPP_COPP_API_HEAD_ONLY constexpr const TELEMENT * data (std::initializer_list< TELEMENT > l) noexcept
 

Typedef Documentation

◆ nonnull

template<class T , class = typename __enable_nonnull<T>::type>
using nostd::nonnull = typedef T

Definition at line 79 of file nullability.h.

◆ nullability_unknown

template<class T , class = typename __enable_nullability_unknown<T>::type>
using nostd::nullability_unknown = typedef T

Definition at line 86 of file nullability.h.

◆ nullable

template<class T , class = typename __enable_nullable<T>::type>
using nostd::nullable = typedef T

Definition at line 72 of file nullability.h.

Function Documentation

◆ data() [1/4]

template<class TCONTAINER >
LIBCOPP_COPP_API_HEAD_ONLY constexpr auto nostd::data ( const TCONTAINER &  container) -> decltype(container.data())
inlineconstexpr

Definition at line 37 of file utility_data_size.h.

◆ data() [2/4]

template<class TELEMENT >
LIBCOPP_COPP_API_HEAD_ONLY constexpr const TELEMENT * nostd::data ( std::initializer_list< TELEMENT >  l)
inlineconstexprnoexcept

Definition at line 47 of file utility_data_size.h.

◆ data() [3/4]

template<class T , size_t SIZE>
LIBCOPP_COPP_API_HEAD_ONLY constexpr T * nostd::data ( T(&)  array_value[SIZE])
inlineconstexprnoexcept

Definition at line 42 of file utility_data_size.h.

◆ data() [4/4]

template<class TCONTAINER >
LIBCOPP_COPP_API_HEAD_ONLY constexpr auto nostd::data ( TCONTAINER &  container) -> decltype(container.data())
inlineconstexpr

Definition at line 32 of file utility_data_size.h.

◆ size() [1/2]

template<class T , size_t SIZE>
LIBCOPP_COPP_API_HEAD_ONLY constexpr size_t nostd::size ( const   T(&)[SIZE])
inlineconstexprnoexcept

Definition at line 27 of file utility_data_size.h.

◆ size() [2/2]

template<class TCONTAINER >
LIBCOPP_COPP_API_HEAD_ONLY constexpr auto nostd::size ( const TCONTAINER &  container) -> decltype(container.size())
inlineconstexpr

Definition at line 22 of file utility_data_size.h.