6 weeks ago |
Mike Becker |
optimize cx_arl_find_remove for sorted arrays - fixes #547
|
file |
diff |
annotate
|
6 weeks ago |
Mike Becker |
remove dependency to ssize_t - fixes #552
|
file |
diff |
annotate
|
2 months ago |
Mike Becker |
remove API for changing the store_pointer property after list creation
|
file |
diff |
annotate
|
2 months ago |
Mike Becker |
refine docs for array_list.h - issue #548
|
file |
diff |
annotate
|
2 months ago |
Mike Becker |
change cx_array_reserve() and cx_array_copy() to accept width in bytes instead of bits
|
file |
diff |
annotate
|
2 months ago |
Mike Becker |
improve coverage metrics
|
file |
diff |
annotate
|
2 months ago |
Mike Becker |
don't trust that size_t always has word width
|
file |
diff |
annotate
|
2 months ago |
Mike Becker |
add some more overflow treatment and make sure to set errno properly
|
file |
diff |
annotate
|
2 months ago |
Mike Becker |
add shortcut to binary search when array size is one
|
file |
diff |
annotate
|
2 months ago |
Mike Becker |
add explicit casts to silence warnings
|
file |
diff |
annotate
|
2 months ago |
Mike Becker |
fix compilation for compilers which don't set __WORDSIZE
|
file |
diff |
annotate
|
3 months ago |
Mike Becker |
add cx_array_reserve() and several more array convenience functions
|
file |
diff |
annotate
|
3 months ago |
Mike Becker |
make cx_array_copy() support different types for size/capacity - fixes #492
|
file |
diff |
annotate
|
3 months ago |
Olaf Wintermann |
fix cx_array_advanced_realloc to handle reallocation of NULL arrays, consistent with standard realloc behavior
|
file |
diff |
annotate
|
4 months ago |
Mike Becker |
simplify cx_array_copy() - fixes #474
|
file |
diff |
annotate
|
4 months ago |
Mike Becker |
major refactoring of attributes
|
file |
diff |
annotate
|
4 months ago |
Mike Becker |
add assertion that triggers when cx_array_copy() stops working for NULL arrays
|
file |
diff |
annotate
|
4 months ago |
Mike Becker |
add function to create array reallocator that can move arrays from stack to heap
|
file |
diff |
annotate
|
5 months ago |
Mike Becker |
fix several survivors of east-const and some missing consts
|
file |
diff |
annotate
|
5 months ago |
Mike Becker |
add possibility to remove arrays of data and retrieve removed data
|
file |
diff |
annotate
|
5 months ago |
Mike Becker |
move all const keywords to the west - fixes #426
|
file |
diff |
annotate
|
5 months ago |
Mike Becker |
apply binary search in cx_array_insert_sorted()
|
file |
diff |
annotate
|
5 months ago |
Mike Becker |
fix for empty arrays
|
file |
diff |
annotate
|
5 months ago |
Mike Becker |
fixes incorrect result from cx_array_binary_search() when searched element is smaller than the entire array
|
file |
diff |
annotate
|
5 months ago |
Mike Becker |
add cx_array_binary_search() - fixes #424
|
file |
diff |
annotate
|
5 months ago |
Mike Becker |
add low level cx_array_insert_sorted() and convenience macros
|
file |
diff |
annotate
|
5 months ago |
Mike Becker |
add optimized implementation of insert_sorted for array lists
|
file |
diff |
annotate
|
6 months ago |
Mike Becker |
add stupid default implementation for high level insertion sort
|
file |
diff |
annotate
|
6 months ago |
Mike Becker |
fix inserting via iterator correctly increases element count
|
file |
diff |
annotate
|
9 months ago |
Mike Becker |
fix name of collection base member (to avoid base.base)
|
file |
diff |
annotate
|
9 months ago |
Mike Becker |
fix inconsistent use of item_size and elem_size
|
file |
diff |
annotate
|
9 months ago |
Mike Becker |
fix members inherited by macro or include are not documented
|
file |
diff |
annotate
|
9 months ago |
Mike Becker |
simplify iterator structures
|
file |
diff |
annotate
|
9 months ago |
Mike Becker |
add iterator over raw C arrays - closes #389
|
file |
diff |
annotate
|
12 months ago |
Mike Becker |
remove unnecessary flag_removal function
|
file |
diff |
annotate
|
13 months ago |
Mike Becker |
remove check that is always true in cx_arl_remove()
|
file |
diff |
annotate
|
13 months ago |
Mike Becker |
rename cx_array_copy_result to just cx_array_result
|
file |
diff |
annotate
|
13 months ago |
Mike Becker |
add cx_array_add() + fix type of cx_array_default_reallocator
|
file |
diff |
annotate
|
13 months ago |
Mike Becker |
add cx_array_default_reallocator
|
file |
diff |
annotate
|
14 months ago |
Mike Becker |
remove flags to disable SBO in tests - fix #343 fix #358
|
file |
diff |
annotate
|
14 months ago |
Mike Becker |
add CX_DISABLE_ARRAY_LIST_SWAP_SBO flag
|
file |
diff |
annotate
|
15 months ago |
Mike Becker |
add cxListFindRemove and cx_linked_list_find_node
|
file |
diff |
annotate
|
15 months ago |
Mike Becker |
make cx_cmp_ptr default comparator for pointer lists - relates to #340
|
file |
diff |
annotate
|
20 months ago |
Mike Becker |
unify the list swap SBO sizes
|
file |
diff |
annotate
|
22 months ago |
Mike Becker |
fix inconsistent destructor requirements for list and map classes
|
file |
diff |
annotate
|
23 months ago |
Mike Becker |
make list find return a negative value when elem not found
|
file |
diff |
annotate
|
23 months ago |
Mike Becker |
reformat code
|
file |
diff |
annotate
|
23 months ago |
Mike Becker |
refactoring of collections to make use of destructors in map implementations
|
file |
diff |
annotate
|
23 months ago |
Mike Becker |
fix initial storage allocation for array lists created with CX_STORE_POINTERS
|
file |
diff |
annotate
|
23 months ago |
Mike Becker |
allow NULL for allocator and comparator
|
file |
diff |
annotate
|
24 months ago |
Mike Becker |
add CX_STORE_POINTERS special "item size" for lists
|
file |
diff |
annotate
|
24 months ago |
Mike Becker |
add unit test for cxListClear + fix destructor functions not always invoked with the correct pointer
|
file |
diff |
annotate
|
24 months ago |
Mike Becker |
add cxListClear and fix missing destructor invocations - #241 #246
|
file |
diff |
annotate
|
2023-02-23 |
Mike Becker |
add simple functions for creating lists
|
file |
diff |
annotate
|
2023-02-23 |
Mike Becker |
add some asserts
|
file |
diff |
annotate
|
2023-02-15 |
Mike Becker |
implement backwards iterator - fixes #238
|
file |
diff |
annotate
|
2023-02-08 |
Mike Becker |
Automated merge
|
file |
diff |
annotate
|
2023-02-07 |
Mike Becker |
fix code not compiling under windows+mingw
|
file |
diff |
annotate
|
2023-02-08 |
Mike Becker |
implement swap function for list elements - fixes #218
|
file |
diff |
annotate
|
2023-02-01 |
Mike Becker |
#228 make buffer sizes adjustable at compile time
|
file |
diff |
annotate
|