Femi Bankole
Femi Bankole
Hi @elpiel, there are only three `panic!`s in the codebase, all of which are part of the tests for the `file_log_parser`. 1. https://github.com/AeroRust/nmea/blob/931a6150433c00a3bc7bc9957e4a9f2969c2e7ed/tests/file_log_parser/mod.rs#L14-L15 2. https://github.com/AeroRust/nmea/blob/931a6150433c00a3bc7bc9957e4a9f2969c2e7ed/tests/file_log_parser/mod.rs#L75-L84 3. https://github.com/AeroRust/nmea/blob/931a6150433c00a3bc7bc9957e4a9f2969c2e7ed/tests/file_log_parser/mod.rs#L181 Is there a...
Hey @jenpaff. Yeah, I can get this finished in the next day or two. I'll just need to write a simpler version of my proposed solution. The current solution is...
Hey @mattsse, I've done away with the iterator approach and used a while loop to fill up the gaps
Hey @mattsse, got a chance to take a look at this?
Hey @mattsse I took the stack based approached as suggested, but reversed `block_state_calls` so that I could emulate popping from the front. This mimics the behavior of a `VecDeque` without...