An open API service indexing awesome lists of open source software.

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.

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).