Skip to content

Latest commit

 

History

History
36 lines (31 loc) · 494 Bytes

README.md

File metadata and controls

36 lines (31 loc) · 494 Bytes

Rust-like std for C++

A C++ 20 module of Rust-like std.

Compiler

  • clang 19+

Planned

  • trait
  • option
  • result
  • rc
  • convert
  • iter
  • slice
  • mem
  • thread
  • sync
    • mpmc
    • mpsc
    • once
  • match/enum

Documents

TODO

Installation

FetchContent_Declare(
  rstd
  GIT_REPOSITORY https://github.com/hypengw/rstd.git
  GIT_TAG master
  # GIT_TAG <commit>
  EXCLUDE_FROM_ALL)
FetchContent_MakeAvailable(rstd)