Direct-BT  2.3.1
Direct-BT - Direct Bluetooth Programming.
Classes | Namespaces | Macros | Functions
darray.hpp File Reference
#include <cstring>
#include <string>
#include <cstdint>
#include <limits>
#include <atomic>
#include <memory>
#include <mutex>
#include <condition_variable>
#include <initializer_list>
#include <algorithm>
#include <utility>
#include <jau/debug.hpp>
#include <jau/basic_types.hpp>
#include <jau/ordered_atomic.hpp>
#include <jau/callocator.hpp>
#include <jau/basic_algos.hpp>
Include dependency graph for darray.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  jau::darray< Value_type, Alloc_type, Size_type, use_memmove, use_realloc, sec_mem >
 Implementation of a dynamic linear array storage, aka vector. More...
 
struct  jau::is_darray_type< class, class >
 template< class T > is_darray_type<T>::value compile-time Type Trait, determining whether the given template class is a - or has a darray type, e.g. More...
 
struct  jau::is_darray_type< T, std::void_t< typename T::darray_tag > >
 template< class T > is_darray_type<T>::value compile-time Type Trait, determining whether the given template class is a - or has a darray type, e.g. More...
 

Namespaces

 jau
 

Macros

#define DARRAY_PRINTF(...)
 

Functions

template<typename Value_type , typename Alloc_type >
std::ostream & jau::operator<< (std::ostream &out, const darray< Value_type, Alloc_type > &c)
 
template<typename Value_type , typename Alloc_type >
bool jau::operator== (const darray< Value_type, Alloc_type > &rhs, const darray< Value_type, Alloc_type > &lhs)
 
template<typename Value_type , typename Alloc_type >
bool jau::operator!= (const darray< Value_type, Alloc_type > &rhs, const darray< Value_type, Alloc_type > &lhs)
 
template<typename Value_type , typename Alloc_type >
bool jau::operator< (const darray< Value_type, Alloc_type > &rhs, const darray< Value_type, Alloc_type > &lhs)
 
template<typename Value_type , typename Alloc_type >
bool jau::operator> (const darray< Value_type, Alloc_type > &rhs, const darray< Value_type, Alloc_type > &lhs)
 
template<typename Value_type , typename Alloc_type >
bool jau::operator<= (const darray< Value_type, Alloc_type > &rhs, const darray< Value_type, Alloc_type > &lhs)
 
template<typename Value_type , typename Alloc_type >
bool jau::operator>= (const darray< Value_type, Alloc_type > &rhs, const darray< Value_type, Alloc_type > &lhs)
 
template<typename Value_type , typename Alloc_type >
void jau::swap (darray< Value_type, Alloc_type > &rhs, darray< Value_type, Alloc_type > &lhs) noexcept
 

Macro Definition Documentation

◆ DARRAY_PRINTF

#define DARRAY_PRINTF (   ...)

Definition at line 54 of file darray.hpp.