klingtnet / rosc

An OSC library for Rust.
Apache License 2.0
173 stars 25 forks source link

Get rid of mutable `remainder` in `match_address` #28

Closed klingtnet closed 1 year ago

klingtnet commented 2 years ago

In match_address we use a mutable remainder variable to track the remaining address string to parse. It would be beneficial for readability and maintainability to get rid of this mutable state. I tried it in the review but eventually failed. This might involve some changes outside of the fn match_address.

This is a follow-up of #26.