rust-embedded / heapless

Heapless, `static` friendly data structures
Apache License 2.0
1.56k stars 185 forks source link

Implement IntoIterator for LinearMap #474

Closed XOSplicer closed 5 months ago

XOSplicer commented 6 months ago

This PR implements the IntoIterator trait for LinearMap. It uses the existing linear_map::IntoIter struct as the return type which was previously unused. A test case has been added.

Closes #472

reitermarkus commented 5 months ago

Thanks!