about summary refs log tree commit diff
path: root/crates/std_float
AgeCommit message (Collapse)AuthorLines
2023-10-20Add num, ptr, and cmp modulesCaleb Zulawski-1/+1
2023-10-01Fix lintCaleb Zulawski-1/+2
2022-02-28rust-lang/portable-simd#248: Remove default featuresJubilee-1/+1
Now that we are thoroughly embedded in libcore, we don't need these on by default. Indeed, their presence may provide confusing results during integration attempts.
2021-12-31impl std::simd::StdFloatJubilee Young-0/+178
While consulting with Simulacrum on how to make available the float functions that currently require runtime support for `Simd<f32, N>` and `Simd<f64, N>`, we realized breaking coherence with the classic approach of lang items was, since `{core,std}::simd::Simd` is a `ty::Adt`, likely to be quite a bit nasty. The project group has a long-term plan for how to get around this kind of issue and move the associated functions into libcore, but that will likely take time as well. Since all routes forward are temporally costly, we probably will skip the lang item approach entirely and go the "proper" route, but in the interests of having something this year for people to play around with, this extension trait was whipped up. For now, while it involves a lot of fairly internal details most users shouldn't have to care about, I went ahead and fully documented the situation for any passerby to read on the trait, as the situation is quite unusual and puzzling to begin with.