Collections
Login with NEARWhen deciding on data structures it is important to understand their tradeoffs. Choosing the wrong structure can create a bottleneck as the application scales, and migrating the state to the new data structures will come at a cost. You can choose between two types of collections: Native collections (e.g. Array, Map, Set), provided …