Mara Bos

Results 28 issues of Mara Bos

A crate compiled on `x86_64` with `-Ctarget-feature=+soft-float` will use floating point conversions from `compiler-builtins`. However, some of the floating point conversions in `compiler-builtins` are implemented using floating point instructions. This...

[CoC](https://github.com/neoclide/coc.nvim) seems to be working a lot better than YouCompleteMe. The `coc` branch of this repo uses that, and has been working pretty well. Few issues left to solve: -...

Somehow, `minpac` seems to miss some packages while installing or updating sometimes. On a new computer, I often have to run the install script multiple times until I get all...

`-C target-feature=` allows disabling sse2, mmx, etc. We should check for the right features on all targets.

The native/llvm versions might not be the fastest.

This snippet: ```rust pub fn x(f: f32) -> u128 { f as u128 } ``` generates a lot more assembly than just a call to `__fixunssfti`. Probably because of the...

research

[`PyDict::set_item`](https://docs.rs/pyo3/0.7.0-alpha.1/pyo3/types/struct.PyDict.html#method.set_item) consumes the key and value, but uses `ToPyObject`. Shouldn't that be `IntoPyObject`? For `ToPyObject`, taking a reference would be sufficient. But it seems more efficient to consume and use...

needs-design

`Quaternion` implements `Eq`, but it's `eq` implementation is incompatible with it's `Hash::hash` implementation. The `eq` implementation considers `w + xi + yj + zk` and `-w - xi - yj...

[Rendered](https://github.com/m-ou-se/rfcs/blob/macro-shorthand/text/0000-macro-shorthand.md)

T-lang
A-macros

[Rendered](https://github.com/fusion-engineering-forks/rfcs/blob/subslice-offset/text/0000-subslice-offset.md) (This idea was mentioned in the 'Future possibilities' section of https://github.com/rust-lang/rfcs/pull/2791)

T-libs-api
A-slice
Libs-Tracked