| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-09-27 | Added index, count vars to c_erase_if() + improved docs. | Tyge Løvset | |
| 2022-09-27 | Renamed c_flt_drop() and c_flt_dropwhile() | Tyge Løvset | |
| to c_flt_skip() and c_flt_skipwhile() This lines up with Rust namings, and does not conflict with the use of drop as destructor. | |||
| 2022-09-26 | Deprecated c_pair() macro. Replaced with c_PAIR(), analogous to c_ARGsv() ↵ | Tyge Løvset | |
| macro which are both unsafe regarding side effects on arg. | |||
| 2022-09-26 | Added .count to c_forfilter() algorithm. Updated prime.c example, and added ↵ | Tyge Løvset | |
| forloops.c example. | |||
| 2022-09-26 | Added c_flt_takewhile() filter to c_forfilter() macro. | Tyge Løvset | |
| 2022-09-26 | Another internal opt. | Tyge Løvset | |
| 2022-09-26 | Another internal. | Tyge Løvset | |
| 2022-09-26 | Internal refactor. | Tyge Løvset | |
| 2022-09-26 | DEPRECATED: c_forrange(): replaced with c_forloop(). This uses 'long long' ↵ | Tyge Løvset | |
| as iter type, i.e. "%lld" printf format. crange_from() renamed to crange_make(). More docs. | |||
| 2022-09-25 | Added i.size to c_forlist() macro + example. | Tyge Løvset | |
| 2022-09-25 | Change crange_value from intmax_t to 'long long' - enables usage of "%lld" ↵ | Tyge Løvset | |
| format. | |||
| 2022-09-25 | Fixed potential bug in c_forwhile/c_forfilter. | Tyge Løvset | |
| 2022-09-25 | Added: crange number generator type. (similar to c++ std::iota). Fixed ↵ | Tyge Løvset | |
| c_forfilter again. Cleanups. Docs added. | |||
| 2022-09-24 | Fixes for csview and cstr sub-types (_value and _iter). | Tyge Løvset | |
| 2022-09-24 | Removed deprecated c_forarray, c_autovar, c_autoscope, c_autodefer. | Tyge Løvset | |
| Finalized and improved loops. | |||
| 2022-09-23 | - Finished c_forfilter() functionality. | Tyge Løvset | |
| - Added c_forloop(), similar to c_forrange(), but same access to elements as other c_for-loops, i.e. *i.ref (but also i.val works). | |||
| 2022-09-23 | Reverted c_forrange() macro with 3 or more args: swapped 1st and 2nd arg again. | Tyge Løvset | |
| 2022-09-23 | Added assert() checks in pop-functions. | Tyge Løvset | |
| 2022-09-23 | Enabled iteration on cqueue (like with cstack). | Tyge Løvset | |
| 2022-09-23 | Renamed c_forloop* macros to more descriptive c_forwhile*. | Tyge Løvset | |
| 2022-09-23 | Deprecated c_forarray, c_forarray_p macros - both replaced by c_forlist, and ↵ | Tyge Løvset | |
| is consistent with other c_for* macros. | |||
| 2022-09-22 | mend | Tyge Løvset | |
| 2022-09-22 | Updated _advance() iter methods. Some have signed offsets. | Tyge Løvset | |
| utf8_peek()/utf8_peek_off() added/changed. | |||
| 2022-09-22 | Added c_forfilter_s() and c_forloop_s() intermediate macros, supports start ↵ | Tyge Løvset | |
| iter instead of *_begin(). | |||
| 2022-09-22 | Renamed c_forfiltered() back to c_forfilter(), and iter member .count => .taken | Tyge Løvset | |
| 2022-09-21 | Added cstr_push(), cstr_pop() - push/pop one utf8 char. | Tyge Løvset | |
| Renamed c_forpred() to c_forloop() - used by c_forfiltered(). | |||
| 2022-09-21 | Recent macro renames: | Tyge Løvset | |
| c_foreach_token() => c_fortoken() c_foreach_match() => c_formatch() Added: c_forfiltered() c_forpred() | |||
| 2022-09-21 | Added c_forfilter() macro(s) - easy filtering of elements. | Tyge Løvset | |
| 2022-09-20 | Minor API change for fixed size cstack and cbits only. | Tyge Løvset | |
| 2022-09-16 | Maintenance update. | Tyge Løvset | |
| 2022-09-11 | Changed cregex API: | Tyge Løvset | |
| 1) Renamed: cregex_find_pt() -> cregex_find_pattern() cregex_replace_pe() -> cregex_replace_pattern() cregex_replace_ex() -> cregex_replace_sv() 2) Removed: cregex_replace_pt() 3) Moved cregex* (or pattern) to be first parameter. | |||
| 2022-09-10 | Renamed template parameter i_cap => i_capacity | Tyge Løvset | |
| 2022-09-10 | Internal renamings to discourage use of private struct fields. | Tyge Løvset | |
| 2022-09-07 | Internal. | Tyge Lovset | |
| 2022-09-06 | Updated docs for cregex and csview. | Tyge Lovset | |
| 2022-09-06 | - Added c_foreach_token(it, ...) macro in csview.h. | Tyge Løvset | |
| - Changed c_foreach_match(it, ...): to access matches, use it.match[j] - splitstr.c now shows usages of both the above. | |||
| 2022-09-05 | Added cstr_append_fmt(). | Tyge Løvset | |
| 2022-09-02 | Change: carc and cbox defaults to pointer comparison when none of i_cmp, ↵ | Tyge Løvset | |
| i_less or i_eq is specified. This removes annoying requirement. | |||
| 2022-09-02 | Removed cstack_X_push_back(), cstack_X_emplace_back(), cstack_X_pop_back(). | Tyge Løvset | |
| Added a simple c_erase_if(). Removed deprecated c_apply() macro. | |||
| 2022-08-23 | Minor tuning in stctest.h | Tyge Lovset | |
| 2022-08-20 | Reduced precision threshold for floats | Tyge Lovset | |
| 2022-08-19 | Some polishing in test framework only. | Tyge Løvset | |
| 2022-08-19 | Some more fix to float comparison in stctest. | Tyge Løvset | |
| 2022-08-19 | Minor update. | Tyge Løvset | |
| 2022-08-19 | Fixed float/double comparisons. | Tyge Løvset | |
| 2022-08-18 | Removed math.h dep. | Tyge Løvset | |
| 2022-08-18 | Last updates on stctest. | Tyge Løvset | |
| 2022-08-18 | Internal rename. | Tyge Løvset | |
| 2022-08-18 | Renamed c11ut.h to stctest.h, and made a few changes. | Tyge Løvset | |
| 2022-08-18 | Minor adjustments in c11ut. | Tyge Løvset | |
