26#ifndef JAU_BASIC_ALGOS_HPP_
27#define JAU_BASIC_ALGOS_HPP_
72 : f(release_func), released(
false) {}
74 if( !released ) { f(); }
103 template<
class InputIt,
class T>
104 constexpr InputIt
find(InputIt first, InputIt last,
const T&
value)
noexcept
106 for (; first != last; ++first) {
107 if (*first ==
value) {
122 template<
class InputArray,
class T>
125 const typename InputArray::size_type size = array.size();
126 for (
typename InputArray::size_type i = 0; i < size; ++i) {
127 if(
value == array[i] ) {
134 template<
class InputArray,
class T>
137 const typename InputArray::size_type size = array.size();
138 for (
typename InputArray::size_type i = 0; i < size; ++i) {
139 if(
value == array[i] ) {
161 template<
class InputIt,
class UnaryPredicate>
162 constexpr InputIt
find_if(InputIt first, InputIt last, UnaryPredicate p)
noexcept
164 for (; first != last; ++first) {
186 template<
class InputIt,
class UnaryPredicate>
187 constexpr InputIt
find_if_not(InputIt first, InputIt last, UnaryPredicate q)
noexcept
189 for (; first != last; ++first) {
207 template<
class ForwardIt,
class T>
212 for(ForwardIt i = first; ++i != last; ) {
214 *first++ = std::move(*i);
231 template<
class ForwardIt,
class UnaryPredicate>
232 ForwardIt
remove_if(ForwardIt first, ForwardIt last, UnaryPredicate p)
236 for(ForwardIt i = first; ++i != last; ) {
238 *first++ = std::move(*i);
259 template<
class InputIt,
class UnaryFunction>
260 constexpr UnaryFunction
for_each(InputIt first, InputIt last, UnaryFunction f)
262 for (; first != last; ++first) {
311 template<
class InputIt,
class UnaryFunction>
314 typedef typename InputIt::value_type value_type;
316 for (; first != last; ++first) {
317 f( *
const_cast<value_type*
>( & (*first) ) );
335 template<
class Mutex,
class InputIt,
class UnaryFunction>
336 constexpr UnaryFunction
for_each_mtx(Mutex &mtx, InputIt first, InputIt last, UnaryFunction f)
338 const std::lock_guard<Mutex> lock(mtx);
340 for (; first != last; ++first) {
354 template<
class InputArray,
class UnaryFunction>
355 constexpr UnaryFunction
for_each_idx(InputArray &array, UnaryFunction f)
357 const typename InputArray::size_type size = array.size();
358 for (
typename InputArray::size_type i = 0; i < size; ++i) {
376 template<
class Mutex,
class InputArray,
class UnaryFunction>
379 const std::lock_guard<Mutex> lock(mtx);
381 const typename InputArray::size_type size = array.size();
382 for (
typename InputArray::size_type i = 0; i < size; ++i) {
392 const typename T::value_type *
find_const(T& data,
typename T::value_type
const & elem,
395 for (
typename T::const_iterator first = data.cbegin(); !first.is_end(); ++first) {
396 if (*first == elem) {
403 const typename T::value_type *
find_const(T& data,
typename T::value_type
const & elem,
406 typename T::const_iterator first = data.cbegin();
407 typename T::const_iterator last = data.cend();
408 for (; first != last; ++first) {
409 if (*first == elem) {
419 template<
class T,
class UnaryFunction>
423 for (
typename T::const_iterator first = data.cbegin(); !first.is_end(); ++first) {
428 template<
class T,
class UnaryFunction>
432 typename T::const_iterator first = data.cbegin();
433 typename T::const_iterator last = data.cend();
434 for (; first != last; ++first) {
446 template<
class T,
class UnaryFunction>
450 for (
typename T::const_iterator first = data.cbegin(); !first.is_end(); ++first) {
451 f( *
const_cast<typename T::value_type*
>( & (*first) ) );
458 template<
class T,
class UnaryFunction>
462 typename T::const_iterator first = data.cbegin();
463 typename T::const_iterator last = data.cend();
464 for (; first != last; ++first) {
465 f( *
const_cast<typename T::value_type*
>( & (*first) ) );
480 constexpr OptDeleter(
bool owner) noexcept : m_owning(owner) {}
483 void operator()(T* p)
const {
constexpr OptDeleter(bool owner) noexcept
constexpr OptDeleter(const OptDeleter &) noexcept=default
constexpr OptDeleter() noexcept
constexpr OptDeleter(OptDeleter &&) noexcept=default
~call_on_release() noexcept
call_on_release(UnaryFunction release_func) noexcept
call_on_release & operator=(const call_on_release &)=delete
call_on_release(const call_on_release &)=delete
void set_released() noexcept
Mark the resource being orderly released, release_func() will not be called and use after free avoide...
call_on_release & operator=(const call_on_release &) volatile =delete
bool is_released() const noexcept
Query whethr the resource has been orderly released.
ForwardIt remove_if(ForwardIt first, ForwardIt last, UnaryPredicate p)
Identical to C++20 std::remove_if() of algorithm
const T::value_type * find_const(T &data, typename T::value_type const &elem, std::enable_if_t< is_cow_type< T >::value, bool >=true) noexcept
constexpr bool contains(InputArray &array, const T &value) noexcept
Return true if value is contained in array.
constexpr UnaryFunction for_each_idx_mtx(Mutex &mtx, InputArray &array, UnaryFunction f)
Custom for_each template, same as jau::for_each but using indices instead of iterators and a mutex.
constexpr InputIt find_if_not(InputIt first, InputIt last, UnaryPredicate q) noexcept
Like std::find_if_not() of 'algorithm'.
ForwardIt remove(ForwardIt first, ForwardIt last, const T &value)
Identical to C++20 std::remove() of algorithm
constexpr InputIt find(InputIt first, InputIt last, const T &value) noexcept
Like std::find() of 'algorithm'.
constexpr UnaryFunction for_each(InputIt first, InputIt last, UnaryFunction f)
Like std::for_each() of 'algorithm'.
constexpr UnaryFunction for_each_mtx(Mutex &mtx, InputIt first, InputIt last, UnaryFunction f)
Custom for_each template, same as jau::for_each but using a mutex.
constexpr UnaryFunction for_each_fidelity(InputIt first, InputIt last, UnaryFunction f)
Like jau::for_each(), see above.
constexpr bool eraseFirst(InputArray &array, const T &value)
constexpr UnaryFunction for_each_const(T &data, UnaryFunction f, std::enable_if_t< is_cow_type< T >::value, bool >=true) noexcept
constexpr UnaryFunction for_each_idx(InputArray &array, UnaryFunction f)
Custom for_each template, using indices instead of iterators, allowing container to be modified withi...
constexpr InputIt find_if(InputIt first, InputIt last, UnaryPredicate p) noexcept
Like std::find_if() of 'algorithm'.
ordered_atomic< bool, std::memory_order_seq_cst > sc_atomic_bool
SC atomic integral scalar boolean.
constexpr bool value(const Bool rhs) noexcept
__pack(...): Produces MSVC, clang and gcc compatible lead-in and -out macros.
template< class T > is_cow_type<T>::value compile-time Type Trait, determining whether the given temp...