QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
nonstd Namespace Reference

Namespaces

namespace  detail
 

Classes

struct  byte
 

Functions

template<class IntegerType byte_ENABLE_IF_INTEGRAL_T>
byte_constexpr byte to_byte (IntegerType v) byte_noexcept
 
template<class IntegerType >
byte_constexpr IntegerType to_integer (byte b) byte_noexcept
 
byte_constexpr unsigned char to_integer (byte b) byte_noexcept
 
byte_constexpr unsigned char to_uchar (byte b) byte_noexcept
 
byte_constexpr unsigned char to_uchar (int i) byte_noexcept
 
byte_constexpr bool operator== (byte l, byte r) byte_noexcept
 
byte_constexpr bool operator!= (byte l, byte r) byte_noexcept
 
byte_constexpr bool operator< (byte l, byte r) byte_noexcept
 
byte_constexpr bool operator<= (byte l, byte r) byte_noexcept
 
byte_constexpr bool operator> (byte l, byte r) byte_noexcept
 
byte_constexpr bool operator>= (byte l, byte r) byte_noexcept
 
template<class IntegerType byte_ENABLE_IF_INTEGRAL_T>
byte_constexpr14 byteoperator<<= (byte &b, IntegerType shift) byte_noexcept
 
template<class IntegerType byte_ENABLE_IF_INTEGRAL_T>
byte_constexpr14 byteoperator>>= (byte &b, IntegerType shift) byte_noexcept
 
template<class IntegerType byte_ENABLE_IF_INTEGRAL_T>
byte_constexpr byte operator<< (byte b, IntegerType shift) byte_noexcept
 
template<class IntegerType byte_ENABLE_IF_INTEGRAL_T>
byte_constexpr byte operator>> (byte b, IntegerType shift) byte_noexcept
 
byte_constexpr14 byteoperator|= (byte &l, byte r) byte_noexcept
 
byte_constexpr14 byteoperator&= (byte &l, byte r) byte_noexcept
 
byte_constexpr14 byteoperator^= (byte &l, byte r) byte_noexcept
 
byte_constexpr byte operator| (byte l, byte r) byte_noexcept
 
byte_constexpr byte operator& (byte l, byte r) byte_noexcept
 
byte_constexpr byte operator^ (byte l, byte r) byte_noexcept
 
byte_constexpr byte operator~ (byte b) byte_noexcept
 

Function Documentation

◆ to_byte()

template<class IntegerType byte_ENABLE_IF_INTEGRAL_T>
byte_constexpr byte nonstd::to_byte ( IntegerType  v)
inline
250{
251#if byte_HAVE_ENUM_CLASS_CONSTRUCTION_FROM_UNDERLYING_TYPE
252 return static_cast<byte>( v );
253#elif byte_HAVE_CONSTEXPR_11
254 return { static_cast<typename byte::type>( v ) };
255#else
256 byte b = { static_cast<typename byte::type>( v ) }; return b;
257#endif
258}
unsigned char type
Definition byte.hpp:242

◆ to_integer() [1/2]

template<class IntegerType >
byte_constexpr IntegerType nonstd::to_integer ( byte  b)
inline
288{
289 return b.v;
290}
type v
Definition byte.hpp:242

◆ to_integer() [2/2]

byte_constexpr unsigned char nonstd::to_integer ( byte  b)
inline
293{
294 return to_integer<unsigned char >( b );
295}

◆ to_uchar() [1/2]

byte_constexpr unsigned char nonstd::to_uchar ( byte  b)
inline
300{
301 return to_integer<unsigned char>( b );
302}

◆ to_uchar() [2/2]

byte_constexpr unsigned char nonstd::to_uchar ( int  i)
inline
305{
306 return static_cast<unsigned char>( i );
307}

◆ operator==()

byte_constexpr bool nonstd::operator== ( byte  l,
byte  r 
)
inline
312{
313 return l.v == r.v;
314}

◆ operator!=()

byte_constexpr bool nonstd::operator!= ( byte  l,
byte  r 
)
inline
317{
318 return !( l == r );
319}

◆ operator<()

byte_constexpr bool nonstd::operator< ( byte  l,
byte  r 
)
inline
322{
323 return l.v < r.v;
324}

◆ operator<=()

byte_constexpr bool nonstd::operator<= ( byte  l,
byte  r 
)
inline
327{
328 return !( r < l );
329}

◆ operator>()

byte_constexpr bool nonstd::operator> ( byte  l,
byte  r 
)
inline
332{
333 return ( r < l );
334}

◆ operator>=()

byte_constexpr bool nonstd::operator>= ( byte  l,
byte  r 
)
inline
337{
338 return !( l < r );
339}

◆ operator<<=()

template<class IntegerType byte_ENABLE_IF_INTEGRAL_T>
byte_constexpr14 byte & nonstd::operator<<= ( byte b,
IntegerType  shift 
)
inline
348{
349#if byte_HAVE_ENUM_CLASS_CONSTRUCTION_FROM_UNDERLYING_TYPE
350 return b = to_byte( to_uchar( b ) << shift );
351#else
352 b.v = to_uchar( b.v << shift ); return b;
353#endif
354}
byte_constexpr unsigned char to_uchar(byte b) byte_noexcept
Definition byte.hpp:299
byte_constexpr byte to_byte(IntegerType v) byte_noexcept
Definition byte.hpp:249

◆ operator>>=()

template<class IntegerType byte_ENABLE_IF_INTEGRAL_T>
byte_constexpr14 byte & nonstd::operator>>= ( byte b,
IntegerType  shift 
)
inline
361{
362#if byte_HAVE_ENUM_CLASS_CONSTRUCTION_FROM_UNDERLYING_TYPE
363 return b = to_byte( to_uchar( b ) >> shift );
364#else
365 b.v = to_uchar( b.v >> shift ); return b;
366#endif
367}

◆ operator<<()

template<class IntegerType byte_ENABLE_IF_INTEGRAL_T>
byte_constexpr byte nonstd::operator<< ( byte  b,
IntegerType  shift 
)
inline
374{
375 return to_byte( to_uchar( b ) << shift );
376}

◆ operator>>()

template<class IntegerType byte_ENABLE_IF_INTEGRAL_T>
byte_constexpr byte nonstd::operator>> ( byte  b,
IntegerType  shift 
)
inline
383{
384 return to_byte( to_uchar( b ) >> shift );
385}

◆ operator|=()

byte_constexpr14 byte & nonstd::operator|= ( byte l,
byte  r 
)
inline
388{
389#if byte_HAVE_ENUM_CLASS_CONSTRUCTION_FROM_UNDERLYING_TYPE
390 return l = to_byte( to_uchar( l ) | to_uchar( r ) );
391#else
392 l.v = to_uchar( l ) | to_uchar( r ); return l;
393#endif
394}

◆ operator&=()

byte_constexpr14 byte & nonstd::operator&= ( byte l,
byte  r 
)
inline
397{
398#if byte_HAVE_ENUM_CLASS_CONSTRUCTION_FROM_UNDERLYING_TYPE
399 return l = to_byte( to_uchar( l ) & to_uchar( r ) );
400#else
401 l.v = to_uchar( l ) & to_uchar( r ); return l;
402#endif
403}

◆ operator^=()

byte_constexpr14 byte & nonstd::operator^= ( byte l,
byte  r 
)
inline
406{
407#if byte_HAVE_ENUM_CLASS_CONSTRUCTION_FROM_UNDERLYING_TYPE
408 return l = to_byte( to_uchar( l ) ^ to_uchar (r ) );
409#else
410 l.v = to_uchar( l ) ^ to_uchar (r ); return l;
411#endif
412}

◆ operator|()

byte_constexpr byte nonstd::operator| ( byte  l,
byte  r 
)
inline
415{
416 return to_byte( to_uchar( l ) | to_uchar( r ) );
417}

◆ operator&()

byte_constexpr byte nonstd::operator& ( byte  l,
byte  r 
)
inline
420{
421 return to_byte( to_uchar( l ) & to_uchar( r ) );
422}

◆ operator^()

byte_constexpr byte nonstd::operator^ ( byte  l,
byte  r 
)
inline
425{
426 return to_byte( to_uchar( l ) ^ to_uchar( r ) );
427}

◆ operator~()

byte_constexpr byte nonstd::operator~ ( byte  b)
inline
430{
431 return to_byte( ~to_uchar( b ) );
432}