Skyler Ross
Skyler Ross
categorizations are admittedly somewhat arbitrary. Funnily enough, every opcode _table_ I've seen- since all time- has been categorizing them as ALU instructions. That isn't to say this is _wrong_, categorizations...
Hi @ketsuban, thank you for your PR, I really do appreciate it. I'm not going to close this, as I'm open to discussion, however, I don't particularly like these changes...
Hi! I looked into this as it turns out it would useful for something I need. Unfortunately, it's blocked right now. The impl itself is fairly simple: ```rust impl Type...
This was a few months ago, but if I remember correctly, tsx by default expanded classes to `className` (or something like that), and the codebase I was working on actually...
perhaps as a fix the os can be detected using [Application.Platform](https://docs.unity3d.com/ScriptReference/Application-platform.html) and insert forward / backslashes based on that?
Oh, I forgot a major part of any bug report. I am running windows 7. So it probably really is just a cosmetic issue (the reason why I originally suggested...
For sql to Rust, you can cast to text: (`::TEXT`), for Rust to sql, you can help it figure out that it wants `text` and then cast it to citext:...
I'd be willing to work on this (and or #124), what would I need to do?
as a note: all of the intrinsics I've found used are stable for aarch64 as of 1.72, I went on a quest to figure that out, so I felt like...
`core::cmp::Ordering` is `#[repr(i8)]` as follows: ``` #[repr(i8)] pub enum Ordering { /// An ordering where a compared value is less than another. #[stable(feature = "rust1", since = "1.0.0")] Less =...