QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
quickcpplib::_xxx::algorithm::open_hash_index::detail Namespace Reference

Classes

struct  is_shared_mutex
 
struct  lock_shared_if
 
struct  lock_shared_if< true >
 
struct  unlock_shared_if
 
struct  unlock_shared_if< true >
 

Functions

template<size_t limit, class Container , class U >
auto linear_find (Container &c, size_t hint, U &&pred) -> decltype(&c[0])
 
template<class T >
auto look_for_lock_shared (int) -> typename std::enable_if< std::is_same< decltype(std::declval< T >().lock_shared()), decltype(std::declval< T >().lock_shared())>::value, std::true_type >::type
 
template<class T >
std::false_type look_for_lock_shared (...)
 

Function Documentation

◆ linear_find()

template<size_t limit, class Container , class U >
auto quickcpplib::_xxx::algorithm::open_hash_index::detail::linear_find ( Container &  c,
size_t  hint,
U &&  pred 
) -> decltype(&c[0])
45 {
46 if(pred(c[hint]))
47 return &c[hint];
48 size_t idx1 = hint, idx2 = hint;
49 for(size_t n = 0; n < limit; n++)
50 {
51 --idx1;
52 ++idx2;
53 if(idx2 < c.size() && pred(c[idx2]))
54 return &c[idx2];
55 if(idx1 < c.size() && pred(c[idx1]))
56 return &c[idx1];
57 }
58 return nullptr;
59 }

◆ look_for_lock_shared() [1/2]

template<class T >
auto quickcpplib::_xxx::algorithm::open_hash_index::detail::look_for_lock_shared ( int  ) -> typename std::enable_if< std::is_same< decltype(std::declval< T >().lock_shared()), decltype(std::declval< T >().lock_shared())>::value, std::true_type >::type

◆ look_for_lock_shared() [2/2]

template<class T >
std::false_type quickcpplib::_xxx::algorithm::open_hash_index::detail::look_for_lock_shared (   ...)