Raphael Cohn
Raphael Cohn
## Environment * **IntelliJ Rust plugin version:** 0.4.175.4772-222 * **Rust toolchain version:** 1.64.0-nightly (4493a0f47 2022-08-02) x86_64-apple-darwin * **IDE name and version:** IntelliJ IDEA 2022.2 Community Edition (IC-222.3345.118) * **Operating system:**...
I'm working on bindings of a C library (OpenUCX) where the majority, but not all, of function pointers used are never null (both typedefs and struct fields) - hence they...
rebind has the extension `.so` on Mac OS X 10.9 instead of `.dylib`.
This may not be a xargo bug. I understand xargo is in maintenance mode. However, given that cargo really wasn't built with cross compilation in mind, and really, really doesn't...
`mkdir -m 0700` folder is atomic (with `-p` it is not). Thus one can use it to make singleton instances of processes, eg:- ```sh singleton_instance_lock() { local temporary_folder_path=... local program_name=......
A nice feature to improve minification would to let `emit_attributes()` choose to use either a single or double quoted form for attribute values depending on the presence of double or...
I wanted a trait to identify `NonZero*` integers (eg `NonZeroU32`) and my first thought was this crate. I didn't seem a trait for them. In my very specific use case,...
Most AVX intrinsics should be const. In particular, those that create vectors (eg the `set1`) variants. This is probably true of the other vector instruction sets (eg SSE2). Undoubtably, this...
For feature parity with C implementations, we could consider a (const) implementation of not (!) for `__m256i`, and probably other types. Justification, eg code examples in answer to use C's...