Infra

Results 7 comments of Infra

Maybe the `sqrt` method could return an `Option` instead, where if the numerator and denominator are perfect squares it returns their square root and `None` otherwise?

Not sure what you mean by "far away from the spirit of the original idea" when the reason other ideas are being brought up is because the original post asked...

@endrift Gah, thank you. It's been a while since I've written C. > I would also suggest adding const to the casts as well, e.g.: > > ```diff > -void*...

@endrift Wasn't sure if by "output `void *`" you meant "returns `void *`" or "writes to output parameters that are `void *`" or both, so I tried removing casts for...

Tried out using macros to reduce some boilerplate recently. They helped reduce test code and trait implementations, but when using them for inherit methods they messed the documentation up a...

I manually listed all the GX functions and compared it with latest changes to make this list. Inline functions: - [x] `GX_End()` - [x] `GX_Position3f32()` - [x] `GX_Position3u16()` - [x]...

Although I didn't initially agree with the original post, after writing Rust for a while I can see why this would be convenient for some. There are some parts that...