Closed jacobwilliams closed 5 years ago
json_value_get_child_by_index could be more efficient by using the tail pointer. For example, if the index you are searching for is closer to the end, we can traverse the linked list backwards from tail, rather than always starting at the beginning.
json_value_get_child_by_index
tail
json_value_get_child_by_index
could be more efficient by using thetail
pointer. For example, if the index you are searching for is closer to the end, we can traverse the linked list backwards fromtail
, rather than always starting at the beginning.