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

Use clang's `-ftime-report` or `-ftime-trace` to reduce compile times. https://clang.llvm.org/docs/ClangCommandLineReference.html#cmdoption-clang-ftime-report

build

This method is not implemented yet. It requires us to implement sorting ourselves, which depends on Iterator::max_by(), min_by() in the Rust impl.

enhancement

It's a pain point to have to include the iterator.h header yourself when using iterators on a type. Granted there's circular references Option -> Iterator -> Option. Can we use...

design

This is awkward... ```cpp auto tuple = ...; tuple.get_ref(); // no :( tuple.template get_ref(); // yes :( ``` Not only this but the compiler errors on MSVC and GCC complain...

design

From @noncombatant: An opaque sequence type. For example, we often see IPC interfaces where the type is vector, and we say, "Whoa, are you going to parse this?" And the...

design

Don't malloc/free/new/delete in the library impl, go through an allocator API which can be replaced by the library's user.

design

Sometimes it would be very helpful to debug something on compiler-explorer, but I have to copy-paste 100 files into the tool. We can add the library to compiler-explorer? This is...

build