Jacob Lifshay
Jacob Lifshay
> For reference, IBM is also working on a scalable vector ISA: https://libre-soc.org/openpower/sv/svp64/ https://libre-soc.org/openpower/sv/overview/ Libre-SOC is not part of IBM, it's a mostly independent project.
we'd likely also want a way to list files in a directory, though that may be more difficult to integrate into build systems
we may want to specify that a non-existent file/directory produce a `NotFound` error just like `File::open`, cuz proc macros are likely to want to probe for specific files (e.g. a...
> * I'm wondering about making the return for `include_bytes` and `include_str` opaque, or at least using something that supports the backing buffers coming from a mmap call instead of...
> > we'd likely also want a way to list files in a directory, though that may be more difficult to integrate into build systems > > how is this...
I think it would be appropriate to include crates that are maintained by the rust project but aren't rust itself, such as `log`, `git2`, `hashbrown`, etc. Many linux distros include...
one possible way to spell `Aligned` is `&'unsafe T`: see #3199
> > Last time I tried this, making the layout computation of &T depend on the alignment of T completely broke the compiler due to query cycles. What's the proposed...
As an extreme example, let's assume that we're on a 16-bit architecture (pointers are 16-bits) for simplicity: ```rust pub enum MyEnum1 { Ref(&'a MyEnum1
several architectures have hardware support for `f128`: RISC-V, PowerPC, s390, and probably more.