CARLA
Static Public Attributes | List of all members
moodycamel::details::const_numeric_max< T > Struct Template Reference

#include <ConcurrentQueue.h>

+ Collaboration diagram for moodycamel::details::const_numeric_max< T >:

Static Public Attributes

static const T value
 

Detailed Description

template<typename T>
struct moodycamel::details::const_numeric_max< T >

Definition at line 247 of file ConcurrentQueue.h.

Member Data Documentation

◆ value

template<typename T >
const T moodycamel::details::const_numeric_max< T >::value
static
Initial value:
= std::numeric_limits<T>::is_signed
? (static_cast<T>(1) << (sizeof(T) * CHAR_BIT - 1)) - static_cast<T>(1)
: static_cast<T>(-1)

Definition at line 249 of file ConcurrentQueue.h.


The documentation for this struct was generated from the following file: