SiebenCorgie / ori-engine

A small engine written in rust + vulkan.
Other
7 stars 1 forks source link

Change HashMaps to BTreeMaps #25

Closed SiebenCorgie closed 7 years ago

SiebenCorgie commented 7 years ago

For collections which need to be searched quiet often the current Vec<Item> approach is not really fast. To make it faster I'll change those collections to BTreeMaps. This also involves the checking for already existing items in the collection which isn't doent till now.