becheran / grid

Two dimensional grid data structure
MIT License
82 stars 27 forks source link

Use RawVec instead of Vec #7

Closed becheran closed 2 years ago

becheran commented 2 years ago

It should be possible to use the rust RawVec struct instead of Vec. This will save the not needed Len usize member variable

becheran commented 2 years ago

Does not make much sense. Vec contains all functionality that Grid mimics