daehwan2yo / dig-up-kotlin

1 stars 0 forks source link

Map & MutableMap #14

Open daehwan2yo opened 1 year ago

daehwan2yo commented 1 year ago

Map

A collection that holds pairs of objects (keys and values) and supports efficiently retrieving the value corresponding to each key as read-only. Map keys are unique; the map holds only one value for each key.

MutableMap

A modifiable collection that hold pairs of objects (keys and values) and supports efficiently retrieving the value corresponding to each key.