MatheusFarias03 opened a new pull request, #932: URL: https://github.com/apache/age/pull/932
Hi there! I found that it would be interesting to add these two new functionalities for the `ListGraphId` list structure since the stack structure already had similar functions for it. These new functions enhance the functionality of the existing code by allowing the removal of a specified `graphid` from the `ListGraphId` list and retrieving the tail of the list. To remove a specific `graphid` from the list, the `remove_graphid_list` function can be used as follows: ```c graphid removedId = remove_graphid_list(container, idToRemove); ``` To retrieve the tail of the list, the `get_list_tail` function can be used as follows: ```c GraphIdNode* tailNode = get_list_tail(container); ``` Please let me know if you have any feedbacks or suggestions for improvements. Thank you for your attention and for considering my contribution! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
