├── .github └── workflows │ └── publish.yml ├── .gitignore ├── book.toml ├── src ├── SUMMARY.md ├── cxx │ ├── function │ │ ├── adl.md │ │ ├── cpo.md │ │ ├── function-object.md │ │ └── niebloid.md │ └── object │ │ └── lifetime.md ├── images │ └── kanagawa.jpg ├── index.md ├── robots.txt └── wg21 │ ├── N4775.md │ ├── P0288R9.md │ ├── P0515R3.md │ ├── P0792R14.md │ ├── P0896R4.md │ ├── P1169R4.md │ ├── P1456R1.md │ ├── P2214R2.md │ ├── P2255R2.md │ ├── P2387R3.md │ ├── P2415R2.md │ └── P2440R1.md └── theme ├── custom.css └── head.hbs /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Rust Toolchain 2 | book 3 | 4 | # Configuration 5 | .vscode 6 | 7 | # macOS 8 | .DS_Store 9 | -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/book.toml -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/cxx/function/adl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/cxx/function/adl.md -------------------------------------------------------------------------------- /src/cxx/function/cpo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/cxx/function/cpo.md -------------------------------------------------------------------------------- /src/cxx/function/function-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/cxx/function/function-object.md -------------------------------------------------------------------------------- /src/cxx/function/niebloid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/cxx/function/niebloid.md -------------------------------------------------------------------------------- /src/cxx/object/lifetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/cxx/object/lifetime.md -------------------------------------------------------------------------------- /src/images/kanagawa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/images/kanagawa.jpg -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/index.md -------------------------------------------------------------------------------- /src/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /src/wg21/N4775.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/wg21/N4775.md -------------------------------------------------------------------------------- /src/wg21/P0288R9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/wg21/P0288R9.md -------------------------------------------------------------------------------- /src/wg21/P0515R3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/wg21/P0515R3.md -------------------------------------------------------------------------------- /src/wg21/P0792R14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/wg21/P0792R14.md -------------------------------------------------------------------------------- /src/wg21/P0896R4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/wg21/P0896R4.md -------------------------------------------------------------------------------- /src/wg21/P1169R4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/wg21/P1169R4.md -------------------------------------------------------------------------------- /src/wg21/P1456R1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/wg21/P1456R1.md -------------------------------------------------------------------------------- /src/wg21/P2214R2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/wg21/P2214R2.md -------------------------------------------------------------------------------- /src/wg21/P2255R2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/wg21/P2255R2.md -------------------------------------------------------------------------------- /src/wg21/P2387R3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/wg21/P2387R3.md -------------------------------------------------------------------------------- /src/wg21/P2415R2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/wg21/P2415R2.md -------------------------------------------------------------------------------- /src/wg21/P2440R1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/src/wg21/P2440R1.md -------------------------------------------------------------------------------- /theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/theme/custom.css -------------------------------------------------------------------------------- /theme/head.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyang-sde/knowledge-base/HEAD/theme/head.hbs --------------------------------------------------------------------------------