Michael Bryan
Michael Bryan
@i-schuetz can you give me an example? Shouldn't you be using something like `Box::into_raw()` to pass ownership of an object to C++? (i.e. use some indirection and pass the pointer...
That `as_concrete_TypeRef()` and `std::mem::forget()` dance feels a bit odd. Ideally, `CFString` would have some sort of `into_raw()` method which consumes the `CFString` and returns a `*const __CFString` (the type behind...
I was just about to make an issue for this as well. Instead of trimming the backtrace itself, what about just adjusting the way it's printed? A good idea might...
Yay, I found a bug! Just let me know when the build is fixed and I'll rebase onto `master`.
> To use this crate, you may need to build tensorflow-lite manually, then specify how to link and where the libraries are located by environment variables. So you can build...
I'm guessing you are running into #44. Something tells me I'll need to rewrite the parser when I get some free time. Or at least revise the grammar so newlines...
I think it's a great idea! The approach I'd probably take is to add various wrapper types which let you build up the full translation operation. Kinda like how you...
Hmm... That's a lot more high-level than I was intending. I was thinking something like `map_g(01, 'X', |x| X+50.0)` to map the X argument of G01. So instead of working...
Hey @MicroJoe, how does [this] look to you? I'm planning to allow syntax-level transformations instead of the more high-level stuff, but I've introduced a `Predicate` trait and implemented it for...
> Is that correct? I believe so, although you'd probably use something like `.unwrap_or(0.0)`. If we want to round-trip gcode and have it (roughly) resemble the original source code, the...