Unless there’s some good reason to use linked lists (single or double), I would suggest using a GPtrArray
instead. Lower allocation and traversal overheads, and less complex to handle.
1 Like
Unless there’s some good reason to use linked lists (single or double), I would suggest using a GPtrArray
instead. Lower allocation and traversal overheads, and less complex to handle.