No description
- C++ 97.4%
- CMake 2.6%
|
|
||
|---|---|---|
| .github/workflows | ||
| doc | ||
| src | ||
| test | ||
| .clang-format | ||
| .clangd | ||
| .gitignore | ||
| CMakeLists.txt | ||
| LICENSE | ||
| README.md | ||
Rust-like std for C++
A C++ 23 module of Rust-like std.
C++’s language features are exciting, but I’m tired of the std.
Made this for coding with C++ easier.
Require
- clang 21+
- gcc 15+
Documents
work in progress
Installation
FetchContent_Declare(
rstd
GIT_REPOSITORY https://github.com/hypengw/rstd.git
GIT_TAG master
# GIT_TAG <commit>
EXCLUDE_FROM_ALL)
FetchContent_MakeAvailable(rstd)
Related
Type Systems for Memory Safety
Borrowing Trouble: The Difficulties Of A C++ Borrow-Checker
rusty-cpp: Bringing Rust's safety to C++
fragile: A polyglot compiler that supports Rust, C++, Go
cxx: Safe interop between Rust and C++