Re: [RFC PATCH v2 3/6] json: Add get_map() method to JSON object class

2025-08-11 Thread Richard Sandiford
writes: > From: Soumya AR > > This patch adds a get_map () method to the JSON object class to provide access > to the underlying hash map that stores the JSON key-value pairs. > > It also reorganizes the private and public sections of the class to expose the > map_t typedef, which is the return t

[RFC PATCH v2 3/6] json: Add get_map() method to JSON object class

2025-07-17 Thread soumyaa
From: Soumya AR This patch adds a get_map () method to the JSON object class to provide access to the underlying hash map that stores the JSON key-value pairs. It also reorganizes the private and public sections of the class to expose the map_t typedef, which is the return type of get_map(). Th