diff options
author | Sebastian Wilhelmi <wilhelmi@ira.uka.de> | 1998-11-03 14:52:25 +0000 |
---|---|---|
committer | Sebastian Wilhelmi <wilhelmi@src.gnome.org> | 1998-11-03 14:52:25 +0000 |
commit | 4dbf739ea9b43747f8904b3dcb4dacc95fe2d497 (patch) | |
tree | f57b251c6b73afdb9eda3519d14a830244d9953d /ChangeLog | |
parent | 840114ac762ef121aa1aac01d7bee92638ec2655 (diff) |
new function for removing an entry from an array while preserving the
1998-11-03 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h:
* garray.h:
(g_array_remove_index): new function for removing an entry from an
array while preserving the order
(g_array_remove_index_fast): new function for removing an entry
from an array. the order might be distorted
(g_ptr_array_remove_index_fast, g_ptr_array_remove_fast): new
functions; working similiar to the above. (they have the semantic
of the old g_ptr_array_remove[_index] functions)
(g_ptr_array_remove_index, g_ptr_array_remove): new semantic. now
the order of the elements in the array is not changed
(g_byte_array_remove_index, g_byte_array_remove_index_fast): new
functions; byte_array wrapper for g_array_remove_index[_fast]
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -1,3 +1,19 @@ +1998-11-03 Sebastian Wilhelmi <wilhelmi@ira.uka.de> + + * glib.h: + * garray.h: + (g_array_remove_index): new function for removing an entry from an + array while preserving the order + (g_array_remove_index_fast): new function for removing an entry + from an array. the order might be distorted + (g_ptr_array_remove_index_fast, g_ptr_array_remove_fast): new + functions; working similiar to the above. (they have the semantic + of the old g_ptr_array_remove[_index] functions) + (g_ptr_array_remove_index, g_ptr_array_remove): new semantic. now + the order of the elements in the array is not changed + (g_byte_array_remove_index, g_byte_array_remove_index_fast): new + functions; byte_array wrapper for g_array_remove_index[_fast] + Sun Nov 1 23:00:18 PST 1998 Manish Singh <yosh@gimp.org> * glib.h |