Package-level declarations

Functions

Link copied to clipboard
fun <T> JSONArray.map(block: (JSONObject) -> T): List<T>

Maps a JSONArray by the block function

Link copied to clipboard
fun <T> JSONArray.mapNotNull(block: (JSONObject) -> T?): List<T>

Maps a JSONArray by the block function excluding null values

Link copied to clipboard

Transform a JSONArray to a list of JSONObject

Link copied to clipboard

Transform a JSONArray to a list of String