| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove trailing whitespace | Sven Göthel | 2024-10-09 | 1 | -3/+3 |
* | [cow_]darray: Include <numbers> for phi (emscripten caught) | Sven Göthel | 2024-05-26 | 1 | -7/+7 |
* | C++20 clang-tidy fixes | Sven Göthel | 2024-05-24 | 1 | -5/+3 |
* | Make cow_darray::equal_comparator noexcept | Sven Göthel | 2024-05-20 | 1 | -2/+2 |
* | darray: C++20 cleanup; Add resize(); Fix reallocStore()==0 and allocStore()==... | Sven Göthel | 2024-05-19 | 1 | -1/+1 |
* | C++20: Remove `constexpr_cxx20` from toString() methods not using constexpr o... | Sven Gothel | 2022-12-30 | 1 | -2/+2 |
* | darray, cow_*: Return size_type for erase_matching() | Sven Gothel | 2022-11-27 | 1 | -2/+2 |
* | darray, darray_sorted, cow_darray: Place template typearg Size_type 2nd befor... | Sven Gothel | 2022-11-27 | 1 | -25/+25 |
* | Doxygen: Add Modules: Group related things together: Algorithms, ByteUtils, C...v0.9.2 | Sven Gothel | 2022-05-01 | 1 | -19/+19 |
* | Fix Doxygen <tt> on '#### `something`', remove the code-qualifier | Sven Gothel | 2021-11-03 | 1 | -2/+2 |
* | Add darray and cow_darray construction with initializer list using move-seman... | Sven Gothel | 2021-10-24 | 1 | -1/+123 |
* | Fix cow_darray::push_back( InputIt first, InputIt last ): On storage growth p... | Sven Gothel | 2021-10-24 | 1 | -1/+1 |
* | cow_darray, darray: Use unique debug PRINTF macro names | Sven Gothel | 2021-10-23 | 1 | -34/+34 |
* | darray<> Non-Type Template Parameter: Remove use_realloc (fully deducted), se... | Sven Gothel | 2021-10-23 | 1 | -17/+16 |
* | darray + ringbuffer: Use explicit 'constexpr if': if constexpr ( .. ) | Sven Gothel | 2021-10-22 | 1 | -1/+1 |
* | Consolidate conversion to hex and decimal string: template<> to_hexstring() a... | Sven Gothel | 2021-02-10 | 1 | -1/+1 |
* | Reverting macro change of 'constexpr_*', removing the '_func' addition (short... | Sven Gothel | 2021-02-09 | 1 | -24/+24 |
* | basic_types.hpp: Cleanup; Add constexpr 'enum class endian', 'pointer_cast()'... | Sven Gothel | 2021-02-08 | 1 | -1/+1 |
* | Refine constexpr_* macros for functions: Add '_func' hinting function and use... | Sven Gothel | 2021-02-07 | 1 | -24/+24 |
* | cpp_lang_macros: Have shorter 'constexpr_*' names and document the ideav0.2.14 | Sven Gothel | 2021-01-11 | 1 | -24/+24 |
* | cow_darray: Fix typo in comment | Sven Gothel | 2021-01-11 | 1 | -2/+2 |
* | cow_darray: Fix API doc re iterator and write_back | Sven Gothel | 2021-01-11 | 1 | -12/+9 |
* | cow_darray/vector: Don't move the atomic ;-) | Sven Gothel | 2021-01-11 | 1 | -1/+1 |
* | cow_darray: Ensure move op nulls sources' store_ref; Minor edits .. | Sven Gothel | 2021-01-11 | 1 | -30/+94 |
* | cow_darray: Type sec_mem through to darray; Fix locking strategy on copy- and... | Sven Gothel | 2021-01-10 | 1 | -84/+100 |
* | cow_darray, darray: Add type_trait query is_darray_type<T>::value and test_co... | Sven Gothel | 2021-01-09 | 1 | -0/+3 |
* | cow_darray: Add use_memmove and use_realloc non-type params (like darray) and... | Sven Gothel | 2021-01-09 | 1 | -4/+21 |
* | cow_darray, darray: add free equality and relationship == != < <= > >= and swap | Sven Gothel | 2021-01-09 | 1 | -0/+42 |
* | cow_darray, darray: Add toString() and free std::ostream << (toString) | Sven Gothel | 2021-01-09 | 1 | -0/+20 |
* | cow_darray, darray: full initializer_list for all .. | Sven Gothel | 2021-01-09 | 1 | -2/+13 |
* | cow_darray: begin() can't be noexcept due to storage copy. | Sven Gothel | 2021-01-08 | 1 | -1/+1 |
* | darray: Add ctor: initializer list and default foreign iterator | Sven Gothel | 2021-01-08 | 1 | -0/+13 |
* | cow_darray API doc semantic typo: It is cow_ro_iterator to be considered and ... | Sven Gothel | 2021-01-07 | 1 | -1/+1 |
* | cow_darray: Remove now obsolete API entries: put(..) | Sven Gothel | 2021-01-07 | 1 | -44/+0 |
* | cow_darray: Fail safe API: Only [c]begin() iterator retrieval, leave other op... | Sven Gothel | 2021-01-07 | 1 | -59/+42 |
* | darray using new callocator supporting realloc: Avoiding loop over elements w... | Sven Gothel | 2021-01-06 | 1 | -4/+5 |
* | Adding jau::for_each_fidelity with documentation 'Usage of const_iterator to ... | Sven Gothel | 2021-01-05 | 1 | -2/+92 |
* | cow_iterator: Perform cow_rw_iter -> cow_ro_iter via conversion constructor a... | Sven Gothel | 2021-01-04 | 1 | -3/+3 |
* | cow_iterator: Implement full random_access_iterator type and expose all requi... | Sven Gothel | 2021-01-03 | 1 | -2/+2 |
* | Cleanup cow_vector, cow_darray: Remove unused index ops etc, add emplace_back | Sven Gothel | 2021-01-03 | 1 | -50/+47 |
* | cow_[darray|vector]: Use 'mutable' modifier for always mutable used sync_atom... | Sven Gothel | 2021-01-03 | 1 | -37/+73 |
* | cow_vector, cow_darray, darray: Shall be compliant with 'C++ named requiremen... | Sven Gothel | 2021-01-02 | 1 | -5/+8 |
* | cow_vector, cow_darray, darray: Use std container typedefs'; Add missing cons... | Sven Gothel | 2021-01-02 | 1 | -56/+82 |
* | Add: darray, cow_darray, cow_iterator; Adjust cow_vector to cow_darray findin... | Sven Gothel | 2021-01-02 | 1 | -0/+817 |