subspace icon indicating copy to clipboard operation
subspace copied to clipboard

A concept-centered standard library for C++20, enabling safer and more reliable products and a more modern feel for C++ code.; Also home of Subdoc the code-documentation generator.

Results 78 subspace issues
Sort by recently updated
recently updated
newest added

The issues lies in subdoc_main.cc [here](https://github.com/chromium/subspace/blob/main/subdoc/subdoc_main.cc#L169) you need to also canonicalize the input_path to use `/` instead of `\` too it should look something like this: ``` for (const std::string&...

documentation

Resolved the [issue#425](https://github.com/chromium/subspace/issues/425) with collecting Iterator into Vec. Implemented `map(|s| s.to_owned())` to convert constant references in the iterator to owned std::strings. This transformation rectified the mismatch, allowing successful collection into...

Clang has moved its HEAD version from 18 to 19.

build

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