Dana Jansens

Results 114 issues of Dana Jansens

https://en.cppreference.com/w/cpp/ranges/view cc: @pkasting

enhancement

An `Iterator` can not be collected into a Vec, because it requires `FromIterator` to be true for `Iterator` which it's not. The `from_iter()` impl needs to accept an `IntoIterator` which...

design

https://doc.rust-lang.org/stable/core/option/enum.Option.html#method.as_slice Stabilized in 1.75.0 and can be added to sus::Option, working with Slice and SliceMut.

enhancement

For Dawn, a Result can be stored in a single pointer (cc: @Kangz) when their values are known to never overlap. While we can't hold two different newtype wrappers in...

enhancement

- [x] Generate namespaces - [x] Generate functions - [x] Generate methods - [x] Generate fields - [x] Generate static members - [x] Show template params - [x] Show requires...

documentation

Collapse these headers or include them from the concept-defining location? But we don't want to include every container header from the `from_iterator.h` header. However it's real bad if some places...

design

This is in the [Subdoc TODOs](https://github.com/chromium/subspace/issues/321) but splitting it out here as without this there are no docs for `f32::consts::PI` and friends

documentation

# JxlColorProfile https://old.lucaversari.it/jpeg_xl_data/docs/JxlColorProfile.html - [ ] Here there's a data member `icc` whose type is `::(unnamed struct at /fast-data/libjxl/lib/include/jxl/cms_interface.h:47:3)` - [ ] The struct fields links don't know the path...

documentation

Rather than be an alias to i32 or i64, it can be another type that matches the size of an `int` for the system. This can be very useful for...

design

Also in https://thephd.dev/sol3-compile-times-binary-sizes, it points out the enormous cost of variadics. But initializer_list is not a good option as it breaks move-only things. Noting that rust has vec![1, 2, 3]...

design