https://github.com/thephd/phd
A collection of useful things; sometimes proofs of concepts, sometimes production-ready code.
https://github.com/thephd/phd
Last synced: 6 months ago
JSON representation
A collection of useful things; sometimes proofs of concepts, sometimes production-ready code.
- Host: GitHub
- URL: https://github.com/thephd/phd
- Owner: ThePhD
- Created: 2018-10-29T00:16:55.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2020-08-21T07:39:35.000Z (over 5 years ago)
- Last Synced: 2025-04-27T11:43:17.502Z (9 months ago)
- Language: C++
- Size: 2.56 MB
- Stars: 20
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# phd
A collection of all my libraries. Some of them are implementations of proposals found [on my portfolio and blog](https://thephd.github.io/portfolio/standard).
There is no build to just use the library! This is a header-only, linker-hassle-free™ (LHF) library.
# parts
## handle
A `unique_handle` type, similar to `unique_ptr`. See [handle](docs/quick/handle.md).
## out_ptr
Simple parameter wrapper for output pointers. See [out_ptr](docs/quick/out_ptr.md).
## overload
Faux-overloading from multiple different callables into one callable. See [overload](docs/quick/overload.md).