From cb5d23d5d42fa8e18359d8ace1917648627fc99b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 17 Dec 2025 01:38:57 +0000 Subject: [PATCH] chore: update migration progress [skip ci] --- .commitlintrc.mjs | 42 + .github/workflows/check-and-build.yml | 48 + .../workflows/cleanup-migrate-branches.yml | 35 + .github/workflows/deploy.yml | 36 + .github/workflows/migrate.yml | 50 + .github/workflows/update-migrate-progress.yml | 45 + .gitignore | 28 + .prettierignore | 3 + .prettierrc | 6 + CONTRIBUTING.md | 14 + CPPREF_MIGRATE_PROGRESS.md | 6652 ++++ LICENSE.CC-BY-SA-4.0 | 428 + LICENSE.GFDL | 451 + LICENSE.MIT | 21 + README.md | 43 + astro.config.mjs | 67 + ec.config.mjs | 7 + migrate/PROMPT.md | 18 + migrate/cleanup-branches.ts | 113 + migrate/migrate-bot.ts | 546 + migrate/slug_map.json | 26586 ++++++++++++++++ migrate/text-diff-visualizer.ts | 343 + migrate/update-migrate-progress.ts | 103 + package-lock.json | 8047 +++++ package.json | 32 + public/favicon.svg | 1 + src/assets/cpp-logo.svg | 25 + .../examples/development/guide/cxx-mark-1.mdx | 8 + .../examples/development/guide/decl-doc-1.mdx | 11 + .../examples/development/guide/decl-doc-2.mdx | 16 + .../examples/development/guide/decl-doc-3.mdx | 24 + src/components/AutoCollapse.astro | 92 + src/components/Behavior.astro | 49 + src/components/DocLink.astro | 32 + src/components/FlexTable.astro | 15 + src/components/Missing.astro | 12 + src/components/NamedReq.astro | 37 + src/components/WG21PaperLink.astro | 10 + src/components/decl-doc/Decl.astro | 34 + src/components/decl-doc/DeclDoc.astro | 45 + src/components/decl-doc/index.ts | 2 + src/components/defect-report/DR.astro | 48 + src/components/defect-report/DRList.astro | 13 + src/components/defect-report/index.ts | 2 + src/components/desc-list/Desc.astro | 46 + src/components/desc-list/DescItem.astro | 29 + src/components/desc-list/DescList.astro | 16 + src/components/desc-list/index.ts | 3 + .../feature-test-macro/FeatureTestMacro.astro | 30 + .../FeatureTestMacroValue.astro | 22 + src/components/feature-test-macro/index.ts | 2 + src/components/header/CHeader.astro | 8 + src/components/header/CppHeader.astro | 8 + src/components/header/Header.astro | 34 + src/components/header/index.ts | 3 + src/components/index.ts | 39 + src/components/param-doc/ParamDoc.astro | 19 + src/components/param-doc/ParamDocList.astro | 16 + src/components/param-doc/index.ts | 2 + src/components/revision/Revision.astro | 29 + src/components/revision/RevisionBlock.astro | 66 + .../revision/RevisionSelector.astro | 82 + src/components/revision/RevisionTags.astro | 25 + src/components/revision/autorev.ts | 18 + src/components/revision/index.ts | 5 + src/components/revision/store.ts | 4 + src/components/revision/types.ts | 13 + .../starlight/TableOfContents.astro | 40 + src/content.config.ts | 31 + src/content/docs/c/comment.mdx | 156 + src/content/docs/c/header/index.mdx | 379 + src/content/docs/c/language/_meta.yml | 1 + .../docs/c/language/basic_concepts.mdx | 23 + src/content/docs/c/library/_meta.yml | 1 + src/content/docs/c/library/strings/_meta.yml | 1 + .../docs/c/library/strings/byte/_meta.yml | 1 + .../docs/c/library/strings/byte/memcpy.mdx | 188 + src/content/docs/cpp/keywords.mdx | 53 + src/content/docs/cpp/language/_meta.yml | 1 + .../cpp/language/basic_concepts/_meta.yml | 1 + .../cpp/language/basic_concepts/modules.mdx | 502 + src/content/docs/cpp/language/basics.mdx | 34 + src/content/docs/cpp/language/comments.mdx | 112 + .../docs/cpp/language/main_function.mdx | 194 + src/content/docs/cpp/library/_meta.yml | 1 + src/content/docs/cpp/library/index.mdx | 745 + .../docs/cpp/library/utilities/_meta.yml | 1 + .../docs/cpp/library/utilities/move.mdx | 154 + src/content/docs/development/_meta.yml | 1 + src/content/docs/development/guide/_meta.yml | 2 + .../guide/component-docs-for-llm.mdx | 563 + .../docs/development/guide/doc-everything.mdx | 553 + src/content/docs/development/guide/index.mdx | 7 + .../docs/development/guide/new-component.mdx | 11 + .../docs/development/guide/revision.mdx | 235 + .../docs/development/guide/translation.mdx | 11 + src/content/docs/development/guide/xref.mdx | 11 + .../docs/development/migration/_meta.yml | 2 + .../docs/development/migration/guideline.mdx | 38 + .../docs/development/migration/index.mdx | 75 + src/content/docs/development/start.mdx | 86 + src/content/docs/index.mdx | 29 + src/lib/doc-index.ts | 80 + src/lib/revision.ts | 89 + src/plugins/expressive-code/cxx-mark.ts | 63 + src/styles/custom.css | 73 + src/types.ts | 20 + tsconfig.json | 11 + 108 files changed, 49338 insertions(+) create mode 100644 .commitlintrc.mjs create mode 100644 .github/workflows/check-and-build.yml create mode 100644 .github/workflows/cleanup-migrate-branches.yml create mode 100644 .github/workflows/deploy.yml create mode 100644 .github/workflows/migrate.yml create mode 100644 .github/workflows/update-migrate-progress.yml create mode 100644 .gitignore create mode 100644 .prettierignore create mode 100644 .prettierrc create mode 100644 CONTRIBUTING.md create mode 100644 CPPREF_MIGRATE_PROGRESS.md create mode 100644 LICENSE.CC-BY-SA-4.0 create mode 100644 LICENSE.GFDL create mode 100644 LICENSE.MIT create mode 100644 README.md create mode 100644 astro.config.mjs create mode 100644 ec.config.mjs create mode 100644 migrate/PROMPT.md create mode 100644 migrate/cleanup-branches.ts create mode 100644 migrate/migrate-bot.ts create mode 100644 migrate/slug_map.json create mode 100644 migrate/text-diff-visualizer.ts create mode 100644 migrate/update-migrate-progress.ts create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 public/favicon.svg create mode 100644 src/assets/cpp-logo.svg create mode 100644 src/assets/examples/development/guide/cxx-mark-1.mdx create mode 100644 src/assets/examples/development/guide/decl-doc-1.mdx create mode 100644 src/assets/examples/development/guide/decl-doc-2.mdx create mode 100644 src/assets/examples/development/guide/decl-doc-3.mdx create mode 100644 src/components/AutoCollapse.astro create mode 100644 src/components/Behavior.astro create mode 100644 src/components/DocLink.astro create mode 100644 src/components/FlexTable.astro create mode 100644 src/components/Missing.astro create mode 100644 src/components/NamedReq.astro create mode 100644 src/components/WG21PaperLink.astro create mode 100644 src/components/decl-doc/Decl.astro create mode 100644 src/components/decl-doc/DeclDoc.astro create mode 100644 src/components/decl-doc/index.ts create mode 100644 src/components/defect-report/DR.astro create mode 100644 src/components/defect-report/DRList.astro create mode 100644 src/components/defect-report/index.ts create mode 100644 src/components/desc-list/Desc.astro create mode 100644 src/components/desc-list/DescItem.astro create mode 100644 src/components/desc-list/DescList.astro create mode 100644 src/components/desc-list/index.ts create mode 100644 src/components/feature-test-macro/FeatureTestMacro.astro create mode 100644 src/components/feature-test-macro/FeatureTestMacroValue.astro create mode 100644 src/components/feature-test-macro/index.ts create mode 100644 src/components/header/CHeader.astro create mode 100644 src/components/header/CppHeader.astro create mode 100644 src/components/header/Header.astro create mode 100644 src/components/header/index.ts create mode 100644 src/components/index.ts create mode 100644 src/components/param-doc/ParamDoc.astro create mode 100644 src/components/param-doc/ParamDocList.astro create mode 100644 src/components/param-doc/index.ts create mode 100644 src/components/revision/Revision.astro create mode 100644 src/components/revision/RevisionBlock.astro create mode 100644 src/components/revision/RevisionSelector.astro create mode 100644 src/components/revision/RevisionTags.astro create mode 100644 src/components/revision/autorev.ts create mode 100644 src/components/revision/index.ts create mode 100644 src/components/revision/store.ts create mode 100644 src/components/revision/types.ts create mode 100644 src/components/starlight/TableOfContents.astro create mode 100644 src/content.config.ts create mode 100644 src/content/docs/c/comment.mdx create mode 100644 src/content/docs/c/header/index.mdx create mode 100644 src/content/docs/c/language/_meta.yml create mode 100644 src/content/docs/c/language/basic_concepts.mdx create mode 100644 src/content/docs/c/library/_meta.yml create mode 100644 src/content/docs/c/library/strings/_meta.yml create mode 100644 src/content/docs/c/library/strings/byte/_meta.yml create mode 100644 src/content/docs/c/library/strings/byte/memcpy.mdx create mode 100644 src/content/docs/cpp/keywords.mdx create mode 100644 src/content/docs/cpp/language/_meta.yml create mode 100644 src/content/docs/cpp/language/basic_concepts/_meta.yml create mode 100644 src/content/docs/cpp/language/basic_concepts/modules.mdx create mode 100644 src/content/docs/cpp/language/basics.mdx create mode 100644 src/content/docs/cpp/language/comments.mdx create mode 100644 src/content/docs/cpp/language/main_function.mdx create mode 100644 src/content/docs/cpp/library/_meta.yml create mode 100644 src/content/docs/cpp/library/index.mdx create mode 100644 src/content/docs/cpp/library/utilities/_meta.yml create mode 100644 src/content/docs/cpp/library/utilities/move.mdx create mode 100644 src/content/docs/development/_meta.yml create mode 100644 src/content/docs/development/guide/_meta.yml create mode 100644 src/content/docs/development/guide/component-docs-for-llm.mdx create mode 100644 src/content/docs/development/guide/doc-everything.mdx create mode 100644 src/content/docs/development/guide/index.mdx create mode 100644 src/content/docs/development/guide/new-component.mdx create mode 100644 src/content/docs/development/guide/revision.mdx create mode 100644 src/content/docs/development/guide/translation.mdx create mode 100644 src/content/docs/development/guide/xref.mdx create mode 100644 src/content/docs/development/migration/_meta.yml create mode 100644 src/content/docs/development/migration/guideline.mdx create mode 100644 src/content/docs/development/migration/index.mdx create mode 100644 src/content/docs/development/start.mdx create mode 100644 src/content/docs/index.mdx create mode 100644 src/lib/doc-index.ts create mode 100644 src/lib/revision.ts create mode 100644 src/plugins/expressive-code/cxx-mark.ts create mode 100644 src/styles/custom.css create mode 100644 src/types.ts create mode 100644 tsconfig.json diff --git a/.commitlintrc.mjs b/.commitlintrc.mjs new file mode 100644 index 00000000..b275098a --- /dev/null +++ b/.commitlintrc.mjs @@ -0,0 +1,42 @@ +/** @type { import('cz-git').UserConfig } */ +export default { + rules: { + // @see: https://commitlint.js.org/#/reference-rules + }, + prompt: { + alias: { fd: "docs: fix typos" }, + useEmoji: false, + emojiAlign: "center", + useAI: false, + aiNumber: 1, + themeColorCode: "", + scopes: ["docs:c", "docs:cpp", "docs:development", "components:*"], + allowCustomScopes: true, + allowEmptyScopes: true, + customScopesAlign: "bottom", + customScopesAlias: "custom", + emptyScopesAlias: "empty", + upperCaseSubject: null, + markBreakingChangeMode: false, + allowBreakingChanges: ["feat", "fix"], + breaklineNumber: 100, + breaklineChar: "|", + skipQuestions: [], + issuePrefixes: [ + { value: "closed", name: "closed: ISSUES has been processed" }, + ], + customIssuePrefixAlign: "top", + emptyIssuePrefixAlias: "skip", + customIssuePrefixAlias: "custom", + allowCustomIssuePrefix: true, + allowEmptyIssuePrefix: true, + confirmColorize: true, + scopeOverrides: undefined, + defaultBody: "", + defaultIssues: "", + defaultScope: "", + defaultSubject: "", + enableMultipleScopes: true, + scopeEnumSeparator: ",", + }, +}; diff --git a/.github/workflows/check-and-build.yml b/.github/workflows/check-and-build.yml new file mode 100644 index 00000000..e2c92978 --- /dev/null +++ b/.github/workflows/check-and-build.yml @@ -0,0 +1,48 @@ +name: Check and Build + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + check-format: + name: Check Code Format + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v6 + + - name: Setup Node.js + uses: actions/setup-node@v6 + with: + node-version: "24" + cache: "npm" + + - name: Install dependencies + run: npm ci + + - name: Check formatting with Prettier + run: npx prettier --check . + + build: + name: Build Project + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v6 + + - name: Setup Node.js + uses: actions/setup-node@v6 + with: + node-version: "22" + cache: "npm" + + - name: Install dependencies + run: npm ci + + - name: Build the project + run: npm run build diff --git a/.github/workflows/cleanup-migrate-branches.yml b/.github/workflows/cleanup-migrate-branches.yml new file mode 100644 index 00000000..ae025e1c --- /dev/null +++ b/.github/workflows/cleanup-migrate-branches.yml @@ -0,0 +1,35 @@ +name: Cleanup Migrate Branches + +on: + schedule: + - cron: "0 0 * * *" + workflow_dispatch: + +jobs: + cleanup: + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: read + steps: + - name: Checkout repository + uses: actions/checkout@v6 + with: + fetch-depth: 0 + token: ${{ secrets.GITHUB_TOKEN }} + + - name: Setup Node.js + uses: actions/setup-node@v6 + with: + node-version: "22" + cache: "npm" + + - name: Install dependencies + run: npm ci + + - name: Run cleanup script + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_REPOSITORY_OWNER: ${{ github.repository_owner }} + GITHUB_REPOSITORY: ${{ github.repository }} + run: npm run cleanup-branches diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000..5bafafa5 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,36 @@ +name: Deploy to GitHub Pages + +on: + push: + branches: [main] + # Allows you to run this workflow manually from the Actions tab on GitHub. + workflow_dispatch: + +# Allow this job to clone the repo and create a page deployment +permissions: + contents: read + pages: write + id-token: write + +jobs: + build: + runs-on: ubuntu-latest + env: + CPPDOC_SITE: https://cppdoc.cc + steps: + - name: Checkout source code + uses: actions/checkout@v6 + - name: Build and upload artifacts + uses: withastro/action@v5 + + deploy: + needs: build + runs-on: ubuntu-latest + if: github.repository == 'cppdoc-cc/cppdoc' + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/migrate.yml b/.github/workflows/migrate.yml new file mode 100644 index 00000000..86def0f2 --- /dev/null +++ b/.github/workflows/migrate.yml @@ -0,0 +1,50 @@ +name: Migrate cppreference pages + +on: + issues: + types: + - opened + - labeled + workflow_dispatch: + inputs: + issue_number: + description: "Specific issue number to process (optional)" + required: false + type: string + +jobs: + migrate: + runs-on: ubuntu-latest + if: | + github.event_name == 'workflow_dispatch' || + (github.event_name == 'issues' && + (github.event.action == 'labeled') && + contains(github.event.issue.labels.*.name, 'migrate-cppref-page')) + permissions: + contents: write + issues: write + pull-requests: write + steps: + - name: Checkout repository + uses: actions/checkout@v6 + with: + fetch-depth: 0 + token: ${{ secrets.GITHUB_TOKEN }} + + - name: Setup Node.js + uses: actions/setup-node@v6 + with: + node-version: "22" + cache: "npm" + + - name: Install dependencies + run: npm ci + + - name: Run migration bot + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }} + GITHUB_REPOSITORY: ${{ github.repository }} + GITHUB_REPOSITORY_OWNER: ${{ github.repository_owner }} + IMGBB_API_KEY: ${{ secrets.IMGBB_API_KEY }} + run: npm run migrate diff --git a/.github/workflows/update-migrate-progress.yml b/.github/workflows/update-migrate-progress.yml new file mode 100644 index 00000000..c685dd03 --- /dev/null +++ b/.github/workflows/update-migrate-progress.yml @@ -0,0 +1,45 @@ +name: Update Migration Progress + +on: + schedule: + - cron: "0 * * * *" + workflow_dispatch: + inputs: + force: + description: "Force update even if no changes" + required: false + type: boolean + +jobs: + update-progress: + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: read + steps: + - name: Checkout repository + uses: actions/checkout@v6 + with: + fetch-depth: 0 + token: ${{ secrets.GITHUB_TOKEN }} + + - name: Setup Node.js + uses: actions/setup-node@v6 + with: + node-version: "22" + cache: "npm" + + - name: Install dependencies + run: npm ci + + - name: Run update migration progress script + run: npm run update-migrate-progress + + - name: Create orphan branch and force push + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + git checkout --orphan migrate-progress + git add CPPREF_MIGRATE_PROGRESS.md + git commit -m "chore: update migration progress [skip ci]" + git push --force origin migrate-progress diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..46c023a3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +# build output +dist/ + +# generated types +.astro/ + +# dependencies +node_modules/ +yarn.lock +pnpm-lock.yaml +pnpm-workspace.yaml + +# logs +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# environment variables +.env +.env.production + +# IDEs and editors +.idea/ +.vscode/ + +# macOS-specific files +.DS_Store diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 00000000..15085f55 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,3 @@ +# We don't format .md/.mdx files with Prettier +*.md +*.mdx diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 00000000..34110b28 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,6 @@ +{ + "tabWidth": 2, + "singleQuote": false, + "trailingComma": "es5", + "semi": true +} diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..bad256db --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,14 @@ +# Contribute to CppDoc + +## Migrate a page from cppreference to CppDoc + +We're now in the process of migrating contents from [cppreference] to CppDoc. Please checkout our [migration guide](https://cppdoc.cc/development/migration) for guidelines. + +## Report a documentation bug + +We use GitHub issues to track documentation bugs. To report a bug, please [opening a new GitHub issue](https://github.com/cppdoc-cc/cppdoc/issues/new). + +## Add new content + +> [!NOTE] +> Incomplete. diff --git a/CPPREF_MIGRATE_PROGRESS.md b/CPPREF_MIGRATE_PROGRESS.md new file mode 100644 index 00000000..fa2c2ff1 --- /dev/null +++ b/CPPREF_MIGRATE_PROGRESS.md @@ -0,0 +1,6652 @@ +### cppreference.com Migration Progress +#### Overall Progress: 3 / 6646 migrated (0.05%) +Updated at 2025-12-17T01:38:57.518Z + +| Status | Cppref Link | Cppdoc Link | Entry | +|--------|-------------|-------------|-------| +| ❌ | [cppref](http://en.cppreference.com/w/index.html) | N/A | `index(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/c.html) | N/A | `c(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/Main_Page.html) | N/A | `Main_Page(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp.html) | N/A | `cpp(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges.html&labels=migrate-cppref-page) | `cpp/library/ranges` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic.html&labels=migrate-cppref-page) | `cpp/library/atomic` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/freestanding.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffreestanding.html&labels=migrate-cppref-page) | `cpp/library/freestanding` | +| ✅ | [cppref](http://en.cppreference.com/w/cpp/index.html) | [cppdoc](http://cppdoc.cc/cpp/library/index) | `cpp/library/index` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/11.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2F11.html&labels=migrate-cppref-page) | `cpp/language/11` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread.html&labels=migrate-cppref-page) | `cpp/library/thread` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric.html&labels=migrate-cppref-page) | `cpp/library/numeric` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer.html&labels=migrate-cppref-page) | `cpp/library/container` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/17.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2F17.html&labels=migrate-cppref-page) | `cpp/language/17` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring.html&labels=migrate-cppref-page) | `cpp/library/string` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem.html&labels=migrate-cppref-page) | `cpp/library/filesystem` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/26.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2F26.html&labels=migrate-cppref-page) | `cpp/language/26` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/compiler_support.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcompiler_support.html&labels=migrate-cppref-page) | `cpp/library/compiler_support` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/headers.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheaders.html&labels=migrate-cppref-page) | `cpp/library/headers` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/standard_library.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstandard_library.html&labels=migrate-cppref-page) | `cpp/library/standard_library` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror.html&labels=migrate-cppref-page) | `cpp/library/error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory.html&labels=migrate-cppref-page) | `cpp/library/memory` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/current_status.html) | N/A | `cpp/current_status(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/feature_test.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffeature_test.html&labels=migrate-cppref-page) | `cpp/library/feature_test` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/20.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2F20.html&labels=migrate-cppref-page) | `cpp/language/20` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio.html&labels=migrate-cppref-page) | `cpp/library/io` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/23.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2F23.html&labels=migrate-cppref-page) | `cpp/language/23` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental.html&labels=migrate-cppref-page) | `cpp/library/experimental` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono.html&labels=migrate-cppref-page) | `cpp/library/chrono` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/text.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftext.html&labels=migrate-cppref-page) | `cpp/library/text` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req.html&labels=migrate-cppref-page) | `cpp/library/named_req` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage.html&labels=migrate-cppref-page) | `cpp/language` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution.html&labels=migrate-cppref-page) | `cpp/library/execution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/links.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flinks.html&labels=migrate-cppref-page) | `cpp/library/links` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/meta.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmeta.html&labels=migrate-cppref-page) | `cpp/library/meta` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader.html&labels=migrate-cppref-page) | `cpp/library/header` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/14.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2F14.html&labels=migrate-cppref-page) | `cpp/language/14` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale.html&labels=migrate-cppref-page) | `cpp/library/text/locale` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts.html&labels=migrate-cppref-page) | `cpp/library/concepts` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm.html&labels=migrate-cppref-page) | `cpp/library/algorithm` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index.html) | N/A | `cpp/symbol_index(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility.html&labels=migrate-cppref-page) | `cpp/library/utility` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/preprocessor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fpreprocessor.html&labels=migrate-cppref-page) | `cpp/language/preprocessor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/preprocessor/replace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fpreprocessor%2Freplace.html&labels=migrate-cppref-page) | `cpp/language/preprocessor/replace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/preprocessor/impl.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fpreprocessor%2Fimpl.html&labels=migrate-cppref-page) | `cpp/language/preprocessor/impl` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/preprocessor/conditional.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fpreprocessor%2Fconditional.html&labels=migrate-cppref-page) | `cpp/language/preprocessor/conditional` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/preprocessor/line.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fpreprocessor%2Fline.html&labels=migrate-cppref-page) | `cpp/language/preprocessor/line` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/preprocessor/error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fpreprocessor%2Ferror.html&labels=migrate-cppref-page) | `cpp/language/preprocessor/error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/preprocessor/include.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fpreprocessor%2Finclude.html&labels=migrate-cppref-page) | `cpp/language/preprocessor/include` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/floating_point.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Ffloating_point.html&labels=migrate-cppref-page) | `cpp/library/concepts/floating_point` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/copy_constructible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fcopy_constructible.html&labels=migrate-cppref-page) | `cpp/library/concepts/copy_constructible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/default_initializable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fdefault_initializable.html&labels=migrate-cppref-page) | `cpp/library/concepts/default_initializable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/integral.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fintegral.html&labels=migrate-cppref-page) | `cpp/library/concepts/integral` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/equivalence_relation.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fequivalence_relation.html&labels=migrate-cppref-page) | `cpp/library/concepts/equivalence_relation` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/movable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fmovable.html&labels=migrate-cppref-page) | `cpp/library/concepts/movable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/invocable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Finvocable.html&labels=migrate-cppref-page) | `cpp/library/concepts/invocable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/swappable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fswappable.html&labels=migrate-cppref-page) | `cpp/library/concepts/swappable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/predicate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fpredicate.html&labels=migrate-cppref-page) | `cpp/library/concepts/predicate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/totally_ordered.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Ftotally_ordered.html&labels=migrate-cppref-page) | `cpp/library/concepts/totally_ordered` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/semiregular.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fsemiregular.html&labels=migrate-cppref-page) | `cpp/library/concepts/semiregular` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/relation.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Frelation.html&labels=migrate-cppref-page) | `cpp/library/concepts/relation` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/constructible_from.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fconstructible_from.html&labels=migrate-cppref-page) | `cpp/library/concepts/constructible_from` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/unsigned_integral.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Funsigned_integral.html&labels=migrate-cppref-page) | `cpp/library/concepts/unsigned_integral` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/copyable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fcopyable.html&labels=migrate-cppref-page) | `cpp/library/concepts/copyable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/same_as.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fsame_as.html&labels=migrate-cppref-page) | `cpp/library/concepts/same_as` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/signed_integral.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fsigned_integral.html&labels=migrate-cppref-page) | `cpp/library/concepts/signed_integral` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/destructible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fdestructible.html&labels=migrate-cppref-page) | `cpp/library/concepts/destructible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/boolean-testable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fboolean-testable.html&labels=migrate-cppref-page) | `cpp/library/concepts/boolean-testable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/convertible_to.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fconvertible_to.html&labels=migrate-cppref-page) | `cpp/library/concepts/convertible_to` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/common_with.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fcommon_with.html&labels=migrate-cppref-page) | `cpp/library/concepts/common_with` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/equality_comparable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fequality_comparable.html&labels=migrate-cppref-page) | `cpp/library/concepts/equality_comparable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/strict_weak_order.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fstrict_weak_order.html&labels=migrate-cppref-page) | `cpp/library/concepts/strict_weak_order` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/derived_from.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fderived_from.html&labels=migrate-cppref-page) | `cpp/library/concepts/derived_from` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/move_constructible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fmove_constructible.html&labels=migrate-cppref-page) | `cpp/library/concepts/move_constructible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/assignable_from.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fassignable_from.html&labels=migrate-cppref-page) | `cpp/library/concepts/assignable_from` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/common_reference_with.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fcommon_reference_with.html&labels=migrate-cppref-page) | `cpp/library/concepts/common_reference_with` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/concepts/regular.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fconcepts%2Fregular.html&labels=migrate-cppref-page) | `cpp/library/concepts/regular` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/istream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fistream.html&labels=migrate-cppref-page) | `cpp/library/headers/istream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/stack.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fstack.html&labels=migrate-cppref-page) | `cpp/library/headers/stack` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/ranges.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Franges.html&labels=migrate-cppref-page) | `cpp/library/headers/ranges` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/span.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fspan.html&labels=migrate-cppref-page) | `cpp/library/headers/span` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/atomic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fatomic.html&labels=migrate-cppref-page) | `cpp/library/headers/atomic` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/cinttypes.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcinttypes.html&labels=migrate-cppref-page) | `cpp/library/headers/cinttypes` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/cuchar.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcuchar.html&labels=migrate-cppref-page) | `cpp/library/headers/cuchar` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/unordered_set.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Funordered_set.html&labels=migrate-cppref-page) | `cpp/library/headers/unordered_set` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/cwctype.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcwctype.html&labels=migrate-cppref-page) | `cpp/library/headers/cwctype` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/typeindex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Ftypeindex.html&labels=migrate-cppref-page) | `cpp/library/headers/typeindex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/latch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Flatch.html&labels=migrate-cppref-page) | `cpp/library/headers/latch` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/unordered_map.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Funordered_map.html&labels=migrate-cppref-page) | `cpp/library/headers/unordered_map` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/typeinfo.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Ftypeinfo.html&labels=migrate-cppref-page) | `cpp/library/headers/typeinfo` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/mdspan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fmdspan.html&labels=migrate-cppref-page) | `cpp/library/headers/mdspan` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/stdexcept.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fstdexcept.html&labels=migrate-cppref-page) | `cpp/library/headers/stdexcept` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/limits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Flimits.html&labels=migrate-cppref-page) | `cpp/library/headers/limits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/iomanip.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fiomanip.html&labels=migrate-cppref-page) | `cpp/library/headers/iomanip` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/future.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Ffuture.html&labels=migrate-cppref-page) | `cpp/library/headers/future` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/initializer_list.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Finitializer_list.html&labels=migrate-cppref-page) | `cpp/library/headers/initializer_list` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fmutex.html&labels=migrate-cppref-page) | `cpp/library/headers/mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/debugging.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fdebugging.html&labels=migrate-cppref-page) | `cpp/library/headers/debugging` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/source_location.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fsource_location.html&labels=migrate-cppref-page) | `cpp/library/headers/source_location` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/cerrno.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcerrno.html&labels=migrate-cppref-page) | `cpp/library/headers/cerrno` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/cstring.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcstring.html&labels=migrate-cppref-page) | `cpp/library/headers/cstring` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/any.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fany.html&labels=migrate-cppref-page) | `cpp/library/headers/any` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/streambuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fstreambuf.html&labels=migrate-cppref-page) | `cpp/library/headers/streambuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/thread.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fthread.html&labels=migrate-cppref-page) | `cpp/library/headers/thread` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/cstdarg.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcstdarg.html&labels=migrate-cppref-page) | `cpp/library/headers/cstdarg` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/csetjmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcsetjmp.html&labels=migrate-cppref-page) | `cpp/library/headers/csetjmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/tuple.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Ftuple.html&labels=migrate-cppref-page) | `cpp/library/headers/tuple` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/ostream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fostream.html&labels=migrate-cppref-page) | `cpp/library/headers/ostream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/condition_variable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcondition_variable.html&labels=migrate-cppref-page) | `cpp/library/headers/condition_variable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/numeric.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fnumeric.html&labels=migrate-cppref-page) | `cpp/library/headers/numeric` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/valarray.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fvalarray.html&labels=migrate-cppref-page) | `cpp/library/headers/valarray` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/stdatomic.h.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fstdatomic.h.html&labels=migrate-cppref-page) | `cpp/library/headers/stdatomic.h` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/format.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fformat.html&labels=migrate-cppref-page) | `cpp/library/headers/format` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/variant.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fvariant.html&labels=migrate-cppref-page) | `cpp/library/headers/variant` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/codecvt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcodecvt.html&labels=migrate-cppref-page) | `cpp/library/headers/codecvt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/list.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Flist.html&labels=migrate-cppref-page) | `cpp/library/headers/list` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/ratio.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fratio.html&labels=migrate-cppref-page) | `cpp/library/headers/ratio` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/barrier.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fbarrier.html&labels=migrate-cppref-page) | `cpp/library/headers/barrier` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/cfenv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcfenv.html&labels=migrate-cppref-page) | `cpp/library/headers/cfenv` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/cstdio.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcstdio.html&labels=migrate-cppref-page) | `cpp/library/headers/cstdio` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/stdfloat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fstdfloat.html&labels=migrate-cppref-page) | `cpp/library/headers/stdfloat` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/regex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fregex.html&labels=migrate-cppref-page) | `cpp/library/headers/regex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/ccomplex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fccomplex.html&labels=migrate-cppref-page) | `cpp/library/headers/ccomplex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/string.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fstring.html&labels=migrate-cppref-page) | `cpp/library/headers/string` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/syncstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fsyncstream.html&labels=migrate-cppref-page) | `cpp/library/headers/syncstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/cmath.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcmath.html&labels=migrate-cppref-page) | `cpp/library/headers/cmath` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/ciso646.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fciso646.html&labels=migrate-cppref-page) | `cpp/library/headers/ciso646` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/filesystem.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Ffilesystem.html&labels=migrate-cppref-page) | `cpp/library/headers/filesystem` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/inplace_vector.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Finplace_vector.html&labels=migrate-cppref-page) | `cpp/library/headers/inplace_vector` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/clocale.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fclocale.html&labels=migrate-cppref-page) | `cpp/library/headers/clocale` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/iostream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fiostream.html&labels=migrate-cppref-page) | `cpp/library/headers/iostream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/iosfwd.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fiosfwd.html&labels=migrate-cppref-page) | `cpp/library/headers/iosfwd` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/string_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fstring_view.html&labels=migrate-cppref-page) | `cpp/library/headers/string_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/bitset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fbitset.html&labels=migrate-cppref-page) | `cpp/library/headers/bitset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/new.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fnew.html&labels=migrate-cppref-page) | `cpp/library/headers/new` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/linalg.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Flinalg.html&labels=migrate-cppref-page) | `cpp/library/headers/linalg` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/memory.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fmemory.html&labels=migrate-cppref-page) | `cpp/library/headers/memory` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/coroutine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcoroutine.html&labels=migrate-cppref-page) | `cpp/library/headers/coroutine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/queue.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fqueue.html&labels=migrate-cppref-page) | `cpp/library/headers/queue` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/flat_set.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fflat_set.html&labels=migrate-cppref-page) | `cpp/library/headers/flat_set` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/cstdalign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcstdalign.html&labels=migrate-cppref-page) | `cpp/library/headers/cstdalign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Farray.html&labels=migrate-cppref-page) | `cpp/library/headers/array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/generator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fgenerator.html&labels=migrate-cppref-page) | `cpp/library/headers/generator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/ctgmath.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fctgmath.html&labels=migrate-cppref-page) | `cpp/library/headers/ctgmath` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/compare.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcompare.html&labels=migrate-cppref-page) | `cpp/library/headers/compare` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/simd.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fsimd.html&labels=migrate-cppref-page) | `cpp/library/headers/simd` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/stacktrace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fstacktrace.html&labels=migrate-cppref-page) | `cpp/library/headers/stacktrace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/text_encoding.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Ftext_encoding.html&labels=migrate-cppref-page) | `cpp/library/headers/text_encoding` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/headers/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/stop_token.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fstop_token.html&labels=migrate-cppref-page) | `cpp/library/headers/stop_token` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/charconv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcharconv.html&labels=migrate-cppref-page) | `cpp/library/headers/charconv` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/strstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fstrstream.html&labels=migrate-cppref-page) | `cpp/library/headers/strstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/fstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Ffstream.html&labels=migrate-cppref-page) | `cpp/library/headers/fstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/rcu.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Frcu.html&labels=migrate-cppref-page) | `cpp/library/headers/rcu` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/type_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Ftype_traits.html&labels=migrate-cppref-page) | `cpp/library/headers/type_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/hazard_pointer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fhazard_pointer.html&labels=migrate-cppref-page) | `cpp/library/headers/hazard_pointer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/bit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fbit.html&labels=migrate-cppref-page) | `cpp/library/headers/bit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/exception.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexception.html&labels=migrate-cppref-page) | `cpp/library/headers/exception` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/cstdbool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcstdbool.html&labels=migrate-cppref-page) | `cpp/library/headers/cstdbool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/cfloat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcfloat.html&labels=migrate-cppref-page) | `cpp/library/headers/cfloat` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/climits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fclimits.html&labels=migrate-cppref-page) | `cpp/library/headers/climits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/print.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fprint.html&labels=migrate-cppref-page) | `cpp/library/headers/print` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/system_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fsystem_error.html&labels=migrate-cppref-page) | `cpp/library/headers/system_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/deque.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fdeque.html&labels=migrate-cppref-page) | `cpp/library/headers/deque` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/cstdint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcstdint.html&labels=migrate-cppref-page) | `cpp/library/headers/cstdint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/csignal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcsignal.html&labels=migrate-cppref-page) | `cpp/library/headers/csignal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/chrono.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fchrono.html&labels=migrate-cppref-page) | `cpp/library/headers/chrono` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/spanstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fspanstream.html&labels=migrate-cppref-page) | `cpp/library/headers/spanstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/ctime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fctime.html&labels=migrate-cppref-page) | `cpp/library/headers/ctime` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/expected.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexpected.html&labels=migrate-cppref-page) | `cpp/library/headers/expected` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/version.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fversion.html&labels=migrate-cppref-page) | `cpp/library/headers/version` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/execution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexecution.html&labels=migrate-cppref-page) | `cpp/library/headers/execution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/map.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fmap.html&labels=migrate-cppref-page) | `cpp/library/headers/map` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/scoped_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fscoped_allocator.html&labels=migrate-cppref-page) | `cpp/library/headers/scoped_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/semaphore.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fsemaphore.html&labels=migrate-cppref-page) | `cpp/library/headers/semaphore` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/cstdlib.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcstdlib.html&labels=migrate-cppref-page) | `cpp/library/headers/cstdlib` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/cwchar.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcwchar.html&labels=migrate-cppref-page) | `cpp/library/headers/cwchar` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/forward_list.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fforward_list.html&labels=migrate-cppref-page) | `cpp/library/headers/forward_list` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/cctype.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcctype.html&labels=migrate-cppref-page) | `cpp/library/headers/cctype` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/random.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Frandom.html&labels=migrate-cppref-page) | `cpp/library/headers/random` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/sstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fsstream.html&labels=migrate-cppref-page) | `cpp/library/headers/sstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/locale.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Flocale.html&labels=migrate-cppref-page) | `cpp/library/headers/locale` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/shared_mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fshared_mutex.html&labels=migrate-cppref-page) | `cpp/library/headers/shared_mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/optional.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Foptional.html&labels=migrate-cppref-page) | `cpp/library/headers/optional` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/concepts.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fconcepts.html&labels=migrate-cppref-page) | `cpp/library/headers/concepts` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/set.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fset.html&labels=migrate-cppref-page) | `cpp/library/headers/set` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/algorithm.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Falgorithm.html&labels=migrate-cppref-page) | `cpp/library/headers/algorithm` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/functional.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Ffunctional.html&labels=migrate-cppref-page) | `cpp/library/headers/functional` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/complex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcomplex.html&labels=migrate-cppref-page) | `cpp/library/headers/complex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/utility.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Futility.html&labels=migrate-cppref-page) | `cpp/library/headers/utility` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/cassert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcassert.html&labels=migrate-cppref-page) | `cpp/library/headers/cassert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/numbers.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fnumbers.html&labels=migrate-cppref-page) | `cpp/library/headers/numbers` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/flat_map.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fflat_map.html&labels=migrate-cppref-page) | `cpp/library/headers/flat_map` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/ios.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fios.html&labels=migrate-cppref-page) | `cpp/library/headers/ios` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/vector.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fvector.html&labels=migrate-cppref-page) | `cpp/library/headers/vector` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/cstddef.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fcstddef.html&labels=migrate-cppref-page) | `cpp/library/headers/cstddef` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/memory_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fmemory_resource.html&labels=migrate-cppref-page) | `cpp/library/headers/memory_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/any.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Fany.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental/any` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/filesystem.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Ffilesystem.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental/filesystem` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/string_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Fstring_view.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental/string_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/simd.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Fsimd.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental/simd` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/execution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Fexecution.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental/execution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/reflect.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Freflect.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental/reflect` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/optional.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Foptional.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental/optional` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/functional.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Ffunctional.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental/functional` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/net.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Fnet.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental/net` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/memory_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Fmemory_resource.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental/memory_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/ranges/tuple.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Franges%2Ftuple.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental/ranges/tuple` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/ranges/range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Franges%2Frange.html&labels=migrate-cppref-page) | `cpp/library/headers/range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/ranges/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Franges%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental/ranges/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/ranges/type_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Franges%2Ftype_traits.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental/ranges/type_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/ranges/random.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Franges%2Frandom.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental/ranges/random` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/ranges/concepts.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Franges%2Fconcepts.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental/ranges/concepts` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/ranges/algorithm.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Franges%2Falgorithm.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental/ranges/algorithm` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/ranges/functional.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Franges%2Ffunctional.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental/ranges/functional` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/header/experimental/ranges/utility.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fheader%2Fexperimental%2Franges%2Futility.html&labels=migrate-cppref-page) | `cpp/library/headers/experimental/ranges/utility` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/BidirectionalIterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FBidirectionalIterator.html&labels=migrate-cppref-page) | `cpp/library/named_req/BidirectionalIterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/MoveInsertable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FMoveInsertable.html&labels=migrate-cppref-page) | `cpp/library/named_req/MoveInsertable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/TrivialType.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FTrivialType.html&labels=migrate-cppref-page) | `cpp/library/named_req/TrivialType` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/ForwardIterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FForwardIterator.html&labels=migrate-cppref-page) | `cpp/library/named_req/ForwardIterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/AccessorPolicy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FAccessorPolicy.html&labels=migrate-cppref-page) | `cpp/library/named_req/AccessorPolicy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/Compare.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FCompare.html&labels=migrate-cppref-page) | `cpp/library/named_req/Compare` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/DefaultInsertable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FDefaultInsertable.html&labels=migrate-cppref-page) | `cpp/library/named_req/DefaultInsertable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/StandardLayoutType.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FStandardLayoutType.html&labels=migrate-cppref-page) | `cpp/library/named_req/StandardLayoutType` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/SeedSequence.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FSeedSequence.html&labels=migrate-cppref-page) | `cpp/library/named_req/SeedSequence` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/FormattedInputFunction.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FFormattedInputFunction.html&labels=migrate-cppref-page) | `cpp/library/named_req/FormattedInputFunction` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/MoveAssignable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FMoveAssignable.html&labels=migrate-cppref-page) | `cpp/library/named_req/MoveAssignable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/RangeAdaptorObject.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FRangeAdaptorObject.html&labels=migrate-cppref-page) | `cpp/library/named_req/RangeAdaptorObject` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/Hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FHash.html&labels=migrate-cppref-page) | `cpp/library/named_req/Hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/LiteralType.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FLiteralType.html&labels=migrate-cppref-page) | `cpp/library/named_req/LiteralType` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/ValueSwappable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FValueSwappable.html&labels=migrate-cppref-page) | `cpp/library/named_req/ValueSwappable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/Container.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FContainer.html&labels=migrate-cppref-page) | `cpp/library/named_req/Container` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/PODType.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FPODType.html&labels=migrate-cppref-page) | `cpp/library/named_req/PODType` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/SharedTimedLockable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FSharedTimedLockable.html&labels=migrate-cppref-page) | `cpp/library/named_req/SharedTimedLockable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/BinaryPredicate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FBinaryPredicate.html&labels=migrate-cppref-page) | `cpp/library/named_req/BinaryPredicate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/BooleanTestable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FBooleanTestable.html&labels=migrate-cppref-page) | `cpp/library/named_req/BooleanTestable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/ContiguousContainer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FContiguousContainer.html&labels=migrate-cppref-page) | `cpp/library/named_req/ContiguousContainer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/CopyConstructible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FCopyConstructible.html&labels=migrate-cppref-page) | `cpp/library/named_req/CopyConstructible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/Allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FAllocator.html&labels=migrate-cppref-page) | `cpp/library/named_req/Allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/FormattedOutputFunction.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FFormattedOutputFunction.html&labels=migrate-cppref-page) | `cpp/library/named_req/FormattedOutputFunction` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/LayoutMapping.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FLayoutMapping.html&labels=migrate-cppref-page) | `cpp/library/named_req/LayoutMapping` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/UniformRandomBitGenerator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FUniformRandomBitGenerator.html&labels=migrate-cppref-page) | `cpp/library/named_req/UniformRandomBitGenerator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/RandomAccessIterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FRandomAccessIterator.html&labels=migrate-cppref-page) | `cpp/library/named_req/RandomAccessIterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/AllocatorAwareContainer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FAllocatorAwareContainer.html&labels=migrate-cppref-page) | `cpp/library/named_req/AllocatorAwareContainer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/EqualityComparable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FEqualityComparable.html&labels=migrate-cppref-page) | `cpp/library/named_req/EqualityComparable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/Destructible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FDestructible.html&labels=migrate-cppref-page) | `cpp/library/named_req/Destructible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/Erasable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FErasable.html&labels=migrate-cppref-page) | `cpp/library/named_req/Erasable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/RandomNumberEngineAdaptor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FRandomNumberEngineAdaptor.html&labels=migrate-cppref-page) | `cpp/library/named_req/RandomNumberEngineAdaptor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/TransformationTrait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FTransformationTrait.html&labels=migrate-cppref-page) | `cpp/library/named_req/TransformationTrait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/Predicate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FPredicate.html&labels=migrate-cppref-page) | `cpp/library/named_req/Predicate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/UnaryTypeTrait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FUnaryTypeTrait.html&labels=migrate-cppref-page) | `cpp/library/named_req/UnaryTypeTrait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/Callable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FCallable.html&labels=migrate-cppref-page) | `cpp/library/named_req/Callable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/Lockable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FLockable.html&labels=migrate-cppref-page) | `cpp/library/named_req/Lockable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/BitmaskType.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FBitmaskType.html&labels=migrate-cppref-page) | `cpp/library/named_req/BitmaskType` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/ScalarType.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FScalarType.html&labels=migrate-cppref-page) | `cpp/library/named_req/ScalarType` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/TriviallyCopyable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FTriviallyCopyable.html&labels=migrate-cppref-page) | `cpp/library/named_req/TriviallyCopyable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/ReversibleContainer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FReversibleContainer.html&labels=migrate-cppref-page) | `cpp/library/named_req/ReversibleContainer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/Formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FFormatter.html&labels=migrate-cppref-page) | `cpp/library/named_req/Formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/ConstexprIterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FConstexprIterator.html&labels=migrate-cppref-page) | `cpp/library/named_req/ConstexprIterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/RandomNumberEngine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FRandomNumberEngine.html&labels=migrate-cppref-page) | `cpp/library/named_req/RandomNumberEngine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/CharTraits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FCharTraits.html&labels=migrate-cppref-page) | `cpp/library/named_req/CharTraits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/SequenceContainer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FSequenceContainer.html&labels=migrate-cppref-page) | `cpp/library/named_req/SequenceContainer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/NumericType.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FNumericType.html&labels=migrate-cppref-page) | `cpp/library/named_req/NumericType` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/UnformattedOutputFunction.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FUnformattedOutputFunction.html&labels=migrate-cppref-page) | `cpp/library/named_req/UnformattedOutputFunction` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/ContiguousIterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FContiguousIterator.html&labels=migrate-cppref-page) | `cpp/library/named_req/ContiguousIterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/SharedMutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FSharedMutex.html&labels=migrate-cppref-page) | `cpp/library/named_req/SharedMutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/TimedMutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FTimedMutex.html&labels=migrate-cppref-page) | `cpp/library/named_req/TimedMutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/TimedLockable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FTimedLockable.html&labels=migrate-cppref-page) | `cpp/library/named_req/TimedLockable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/LessThanComparable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FLessThanComparable.html&labels=migrate-cppref-page) | `cpp/library/named_req/LessThanComparable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/SharedLockable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FSharedLockable.html&labels=migrate-cppref-page) | `cpp/library/named_req/SharedLockable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/Clock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FClock.html&labels=migrate-cppref-page) | `cpp/library/named_req/Clock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/BasicFormatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FBasicFormatter.html&labels=migrate-cppref-page) | `cpp/library/named_req/BasicFormatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/CopyAssignable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FCopyAssignable.html&labels=migrate-cppref-page) | `cpp/library/named_req/CopyAssignable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/EmplaceConstructible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FEmplaceConstructible.html&labels=migrate-cppref-page) | `cpp/library/named_req/EmplaceConstructible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/CopyInsertable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FCopyInsertable.html&labels=migrate-cppref-page) | `cpp/library/named_req/CopyInsertable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/UnformattedInputFunction.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FUnformattedInputFunction.html&labels=migrate-cppref-page) | `cpp/library/named_req/UnformattedInputFunction` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/ImplicitLifetimeType.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FImplicitLifetimeType.html&labels=migrate-cppref-page) | `cpp/library/named_req/ImplicitLifetimeType` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/RandomNumberDistribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FRandomNumberDistribution.html&labels=migrate-cppref-page) | `cpp/library/named_req/RandomNumberDistribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/RegexTraits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FRegexTraits.html&labels=migrate-cppref-page) | `cpp/library/named_req/RegexTraits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/LayoutMappingPolicy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FLayoutMappingPolicy.html&labels=migrate-cppref-page) | `cpp/library/named_req/LayoutMappingPolicy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/UnorderedAssociativeContainer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FUnorderedAssociativeContainer.html&labels=migrate-cppref-page) | `cpp/library/named_req/UnorderedAssociativeContainer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/BinaryTypeTrait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FBinaryTypeTrait.html&labels=migrate-cppref-page) | `cpp/library/named_req/BinaryTypeTrait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/SharedTimedMutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FSharedTimedMutex.html&labels=migrate-cppref-page) | `cpp/library/named_req/SharedTimedMutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/AssociativeContainer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FAssociativeContainer.html&labels=migrate-cppref-page) | `cpp/library/named_req/AssociativeContainer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/InputIterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FInputIterator.html&labels=migrate-cppref-page) | `cpp/library/named_req/InputIterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/RangeAdaptorClosureObject.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FRangeAdaptorClosureObject.html&labels=migrate-cppref-page) | `cpp/library/named_req/RangeAdaptorClosureObject` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/Swappable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FSwappable.html&labels=migrate-cppref-page) | `cpp/library/named_req/Swappable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/Mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FMutex.html&labels=migrate-cppref-page) | `cpp/library/named_req/Mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/Iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FIterator.html&labels=migrate-cppref-page) | `cpp/library/named_req/Iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/MoveConstructible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FMoveConstructible.html&labels=migrate-cppref-page) | `cpp/library/named_req/MoveConstructible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/TrivialClock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FTrivialClock.html&labels=migrate-cppref-page) | `cpp/library/named_req/TrivialClock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/DefaultConstructible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FDefaultConstructible.html&labels=migrate-cppref-page) | `cpp/library/named_req/DefaultConstructible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/OutputIterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FOutputIterator.html&labels=migrate-cppref-page) | `cpp/library/named_req/OutputIterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/BasicLockable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FBasicLockable.html&labels=migrate-cppref-page) | `cpp/library/named_req/BasicLockable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/FunctionObject.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FFunctionObject.html&labels=migrate-cppref-page) | `cpp/library/named_req/FunctionObject` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/named_req/NullablePointer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnamed_req%2FNullablePointer.html&labels=migrate-cppref-page) | `cpp/library/named_req/NullablePointer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/time_put.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftime_put.html&labels=migrate-cppref-page) | `cpp/library/text/locale/time_put` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/num_put.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fnum_put.html&labels=migrate-cppref-page) | `cpp/library/text/locale/num_put` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype_byname.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype_byname.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype_byname` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/islower.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fislower.html&labels=migrate-cppref-page) | `cpp/library/text/locale/islower` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/iscntrl.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fiscntrl.html&labels=migrate-cppref-page) | `cpp/library/text/locale/iscntrl` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/codecvt_base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcodecvt_base.html&labels=migrate-cppref-page) | `cpp/library/text/locale/codecvt_base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/toupper.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftoupper.html&labels=migrate-cppref-page) | `cpp/library/text/locale/toupper` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/isprint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fisprint.html&labels=migrate-cppref-page) | `cpp/library/text/locale/isprint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/collate_byname.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcollate_byname.html&labels=migrate-cppref-page) | `cpp/library/text/locale/collate_byname` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/LC_categories.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2FLC_categories.html&labels=migrate-cppref-page) | `cpp/library/text/locale/LC_categories` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/localeconv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Flocaleconv.html&labels=migrate-cppref-page) | `cpp/library/text/locale/localeconv` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/moneypunct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoneypunct.html&labels=migrate-cppref-page) | `cpp/library/text/locale/moneypunct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/messages.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmessages.html&labels=migrate-cppref-page) | `cpp/library/text/locale/messages` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/money_put.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoney_put.html&labels=migrate-cppref-page) | `cpp/library/text/locale/money_put` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/codecvt_byname.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcodecvt_byname.html&labels=migrate-cppref-page) | `cpp/library/text/locale/codecvt_byname` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/money_base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoney_base.html&labels=migrate-cppref-page) | `cpp/library/text/locale/money_base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/codecvt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcodecvt.html&labels=migrate-cppref-page) | `cpp/library/text/locale/codecvt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/codecvt_utf8_utf16.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcodecvt_utf8_utf16.html&labels=migrate-cppref-page) | `cpp/library/text/locale/codecvt_utf8_utf16` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/setlocale.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fsetlocale.html&labels=migrate-cppref-page) | `cpp/library/text/locale/setlocale` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/isalpha.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fisalpha.html&labels=migrate-cppref-page) | `cpp/library/text/locale/isalpha` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/codecvt_utf16.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcodecvt_utf16.html&labels=migrate-cppref-page) | `cpp/library/text/locale/codecvt_utf16` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/time_get_byname.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftime_get_byname.html&labels=migrate-cppref-page) | `cpp/library/text/locale/time_get_byname` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/codecvt_mode.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcodecvt_mode.html&labels=migrate-cppref-page) | `cpp/library/text/locale/codecvt_mode` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/wstring_convert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fwstring_convert.html&labels=migrate-cppref-page) | `cpp/library/text/locale/wstring_convert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ispunct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fispunct.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ispunct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/lconv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Flconv.html&labels=migrate-cppref-page) | `cpp/library/text/locale/lconv` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/wbuffer_convert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fwbuffer_convert.html&labels=migrate-cppref-page) | `cpp/library/text/locale/wbuffer_convert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/time_base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftime_base.html&labels=migrate-cppref-page) | `cpp/library/text/locale/time_base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/messages_base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmessages_base.html&labels=migrate-cppref-page) | `cpp/library/text/locale/messages_base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/num_get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fnum_get.html&labels=migrate-cppref-page) | `cpp/library/text/locale/num_get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/numpunct_byname.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fnumpunct_byname.html&labels=migrate-cppref-page) | `cpp/library/text/locale/numpunct_byname` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype_char.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype_char.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype_char` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/text_encoding.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftext_encoding.html&labels=migrate-cppref-page) | `cpp/library/text/text_encoding` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/isdigit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fisdigit.html&labels=migrate-cppref-page) | `cpp/library/text/locale/isdigit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/isspace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fisspace.html&labels=migrate-cppref-page) | `cpp/library/text/locale/isspace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/collate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcollate.html&labels=migrate-cppref-page) | `cpp/library/text/locale/collate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/money_get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoney_get.html&labels=migrate-cppref-page) | `cpp/library/text/locale/money_get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype_base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype_base.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype_base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/codecvt_utf8.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcodecvt_utf8.html&labels=migrate-cppref-page) | `cpp/library/text/locale/codecvt_utf8` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/messages_byname.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmessages_byname.html&labels=migrate-cppref-page) | `cpp/library/text/locale/messages_byname` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/time_get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftime_get.html&labels=migrate-cppref-page) | `cpp/library/text/locale/time_get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/numpunct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fnumpunct.html&labels=migrate-cppref-page) | `cpp/library/text/locale/numpunct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/isxdigit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fisxdigit.html&labels=migrate-cppref-page) | `cpp/library/text/locale/isxdigit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/has_facet.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fhas_facet.html&labels=migrate-cppref-page) | `cpp/library/text/locale/has_facet` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/locale.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Flocale.html&labels=migrate-cppref-page) | `cpp/library/text/locale/locale` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/use_facet.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fuse_facet.html&labels=migrate-cppref-page) | `cpp/library/text/locale/use_facet` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/isgraph.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fisgraph.html&labels=migrate-cppref-page) | `cpp/library/text/locale/isgraph` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/time_put_byname.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftime_put_byname.html&labels=migrate-cppref-page) | `cpp/library/text/locale/time_put_byname` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/tolower.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftolower.html&labels=migrate-cppref-page) | `cpp/library/text/locale/tolower` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/isblank.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fisblank.html&labels=migrate-cppref-page) | `cpp/library/text/locale/isblank` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/isalnum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fisalnum.html&labels=migrate-cppref-page) | `cpp/library/text/locale/isalnum` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/isupper.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fisupper.html&labels=migrate-cppref-page) | `cpp/library/text/locale/isupper` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/moneypunct_byname.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoneypunct_byname.html&labels=migrate-cppref-page) | `cpp/library/text/locale/moneypunct_byname` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/money_put/money_put.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoney_put%2Fmoney_put.html&labels=migrate-cppref-page) | `cpp/library/text/locale/money_put/money_put` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/money_put/put.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoney_put%2Fput.html&labels=migrate-cppref-page) | `cpp/library/text/locale/money_put/put` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/money_put/~money_put.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoney_put%2F~money_put.html&labels=migrate-cppref-page) | `cpp/library/text/locale/money_put/~money_put` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/messages/messages.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmessages%2Fmessages.html&labels=migrate-cppref-page) | `cpp/library/text/locale/messages/messages` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/messages/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmessages%2Fget.html&labels=migrate-cppref-page) | `cpp/library/text/locale/messages/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/messages/close.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmessages%2Fclose.html&labels=migrate-cppref-page) | `cpp/library/text/locale/messages/close` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/messages/~messages.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmessages%2F~messages.html&labels=migrate-cppref-page) | `cpp/library/text/locale/messages/~messages` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/messages/open.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmessages%2Fopen.html&labels=migrate-cppref-page) | `cpp/library/text/locale/messages/open` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/locale/global.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Flocale%2Fglobal.html&labels=migrate-cppref-page) | `cpp/library/text/locale/locale/global` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/locale/~locale.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Flocale%2F~locale.html&labels=migrate-cppref-page) | `cpp/library/text/locale/locale/~locale` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/locale/combine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Flocale%2Fcombine.html&labels=migrate-cppref-page) | `cpp/library/text/locale/locale/combine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/locale/id.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Flocale%2Fid.html&labels=migrate-cppref-page) | `cpp/library/text/locale/locale/id` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/locale/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Flocale%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/text/locale/locale/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/locale/classic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Flocale%2Fclassic.html&labels=migrate-cppref-page) | `cpp/library/text/locale/locale/classic` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/locale/name.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Flocale%2Fname.html&labels=migrate-cppref-page) | `cpp/library/text/locale/locale/name` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/locale/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Flocale%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/text/locale/locale/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/locale/encoding.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Flocale%2Fencoding.html&labels=migrate-cppref-page) | `cpp/library/text/locale/locale/encoding` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/locale/facet.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Flocale%2Ffacet.html&labels=migrate-cppref-page) | `cpp/library/text/locale/locale/facet` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/locale/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Flocale%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/text/locale/locale/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/locale/locale.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Flocale%2Flocale.html&labels=migrate-cppref-page) | `cpp/library/text/locale/locale/locale` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/locale/facet/facet.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Flocale%2Ffacet%2Ffacet.html&labels=migrate-cppref-page) | `cpp/library/text/locale/locale/facet/facet` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/locale/id/id.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Flocale%2Fid%2Fid.html&labels=migrate-cppref-page) | `cpp/library/text/locale/locale/id/id` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/moneypunct/pos_format.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoneypunct%2Fpos_format.html&labels=migrate-cppref-page) | `cpp/library/text/locale/moneypunct/pos_format` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/moneypunct/moneypunct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoneypunct%2Fmoneypunct.html&labels=migrate-cppref-page) | `cpp/library/text/locale/moneypunct/moneypunct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/moneypunct/grouping.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoneypunct%2Fgrouping.html&labels=migrate-cppref-page) | `cpp/library/text/locale/moneypunct/grouping` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/moneypunct/~moneypunct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoneypunct%2F~moneypunct.html&labels=migrate-cppref-page) | `cpp/library/text/locale/moneypunct/~moneypunct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/moneypunct/positive_sign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoneypunct%2Fpositive_sign.html&labels=migrate-cppref-page) | `cpp/library/text/locale/moneypunct/positive_sign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/moneypunct/thousands_sep.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoneypunct%2Fthousands_sep.html&labels=migrate-cppref-page) | `cpp/library/text/locale/moneypunct/thousands_sep` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/moneypunct/decimal_point.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoneypunct%2Fdecimal_point.html&labels=migrate-cppref-page) | `cpp/library/text/locale/moneypunct/decimal_point` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/moneypunct/frac_digits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoneypunct%2Ffrac_digits.html&labels=migrate-cppref-page) | `cpp/library/text/locale/moneypunct/frac_digits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/moneypunct/curr_symbol.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoneypunct%2Fcurr_symbol.html&labels=migrate-cppref-page) | `cpp/library/text/locale/moneypunct/curr_symbol` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/numpunct/grouping.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fnumpunct%2Fgrouping.html&labels=migrate-cppref-page) | `cpp/library/text/locale/numpunct/grouping` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/numpunct/~numpunct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fnumpunct%2F~numpunct.html&labels=migrate-cppref-page) | `cpp/library/text/locale/numpunct/~numpunct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/numpunct/thousands_sep.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fnumpunct%2Fthousands_sep.html&labels=migrate-cppref-page) | `cpp/library/text/locale/numpunct/thousands_sep` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/numpunct/decimal_point.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fnumpunct%2Fdecimal_point.html&labels=migrate-cppref-page) | `cpp/library/text/locale/numpunct/decimal_point` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/numpunct/numpunct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fnumpunct%2Fnumpunct.html&labels=migrate-cppref-page) | `cpp/library/text/locale/numpunct/numpunct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/numpunct/truefalsename.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fnumpunct%2Ftruefalsename.html&labels=migrate-cppref-page) | `cpp/library/text/locale/numpunct/truefalsename` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype_char/classic_table.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype_char%2Fclassic_table.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype/../ctype_char/classic_table` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype_char/ctype.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype_char%2Fctype.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype/../ctype_char/ctype` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype_char/~ctype.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype_char%2F~ctype.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype/../ctype_char/~ctype` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype_char/scan_is.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype_char%2Fscan_is.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype/../ctype_char/scan_is` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype_char/is.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype_char%2Fis.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype/../ctype_char/is` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype_char/table.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype_char%2Ftable.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype/../ctype_char/table` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype_char/scan_not.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype_char%2Fscan_not.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype/../ctype_char/scan_not` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/collate/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcollate%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/text/locale/collate/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/collate/compare.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcollate%2Fcompare.html&labels=migrate-cppref-page) | `cpp/library/text/locale/collate/compare` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/collate/collate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcollate%2Fcollate.html&labels=migrate-cppref-page) | `cpp/library/text/locale/collate/collate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/collate/transform.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcollate%2Ftransform.html&labels=migrate-cppref-page) | `cpp/library/text/locale/collate/transform` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/collate/~collate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcollate%2F~collate.html&labels=migrate-cppref-page) | `cpp/library/text/locale/collate/~collate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/codecvt/out.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcodecvt%2Fout.html&labels=migrate-cppref-page) | `cpp/library/text/locale/codecvt/out` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/codecvt/codecvt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcodecvt%2Fcodecvt.html&labels=migrate-cppref-page) | `cpp/library/text/locale/codecvt/codecvt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/codecvt/~codecvt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcodecvt%2F~codecvt.html&labels=migrate-cppref-page) | `cpp/library/text/locale/codecvt/~codecvt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/codecvt/in.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcodecvt%2Fin.html&labels=migrate-cppref-page) | `cpp/library/text/locale/codecvt/in` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/codecvt/unshift.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcodecvt%2Funshift.html&labels=migrate-cppref-page) | `cpp/library/text/locale/codecvt/unshift` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/codecvt/max_length.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcodecvt%2Fmax_length.html&labels=migrate-cppref-page) | `cpp/library/text/locale/codecvt/max_length` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/codecvt/always_noconv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcodecvt%2Falways_noconv.html&labels=migrate-cppref-page) | `cpp/library/text/locale/codecvt/always_noconv` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/codecvt/length.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcodecvt%2Flength.html&labels=migrate-cppref-page) | `cpp/library/text/locale/codecvt/length` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/codecvt/encoding.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fcodecvt%2Fencoding.html&labels=migrate-cppref-page) | `cpp/library/text/locale/codecvt/encoding` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/num_put/num_put.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fnum_put%2Fnum_put.html&labels=migrate-cppref-page) | `cpp/library/text/locale/num_put/num_put` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/num_put/put.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fnum_put%2Fput.html&labels=migrate-cppref-page) | `cpp/library/text/locale/num_put/put` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/num_put/~num_put.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fnum_put%2F~num_put.html&labels=migrate-cppref-page) | `cpp/library/text/locale/num_put/~num_put` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/num_get/num_get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fnum_get%2Fnum_get.html&labels=migrate-cppref-page) | `cpp/library/text/locale/num_get/num_get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/num_get/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fnum_get%2Fget.html&labels=migrate-cppref-page) | `cpp/library/text/locale/num_get/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/num_get/~num_get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fnum_get%2F~num_get.html&labels=migrate-cppref-page) | `cpp/library/text/locale/num_get/~num_get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/money_get/~money_get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoney_get%2F~money_get.html&labels=migrate-cppref-page) | `cpp/library/text/locale/money_get/~money_get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/money_get/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoney_get%2Fget.html&labels=migrate-cppref-page) | `cpp/library/text/locale/money_get/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/money_get/money_get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fmoney_get%2Fmoney_get.html&labels=migrate-cppref-page) | `cpp/library/text/locale/money_get/money_get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/time_get/get_time.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftime_get%2Fget_time.html&labels=migrate-cppref-page) | `cpp/library/text/locale/time_get/get_time` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/time_get/date_order.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftime_get%2Fdate_order.html&labels=migrate-cppref-page) | `cpp/library/text/locale/time_get/date_order` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/time_get/get_monthname.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftime_get%2Fget_monthname.html&labels=migrate-cppref-page) | `cpp/library/text/locale/time_get/get_monthname` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/time_get/get_weekday.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftime_get%2Fget_weekday.html&labels=migrate-cppref-page) | `cpp/library/text/locale/time_get/get_weekday` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/time_get/get_year.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftime_get%2Fget_year.html&labels=migrate-cppref-page) | `cpp/library/text/locale/time_get/get_year` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/time_get/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftime_get%2Fget.html&labels=migrate-cppref-page) | `cpp/library/text/locale/time_get/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/time_get/~time_get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftime_get%2F~time_get.html&labels=migrate-cppref-page) | `cpp/library/text/locale/time_get/~time_get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/time_get/get_date.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftime_get%2Fget_date.html&labels=migrate-cppref-page) | `cpp/library/text/locale/time_get/get_date` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/time_get/time_get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftime_get%2Ftime_get.html&labels=migrate-cppref-page) | `cpp/library/text/locale/time_get/time_get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype/toupper.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype%2Ftoupper.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype/toupper` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype/ctype.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype%2Fctype.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype/ctype` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype/~ctype.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype%2F~ctype.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype/~ctype` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype/scan_is.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype%2Fscan_is.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype/scan_is` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype/narrow.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype%2Fnarrow.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype/narrow` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype/is.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype%2Fis.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype/is` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype/widen.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype%2Fwiden.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype/widen` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype/scan_not.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype%2Fscan_not.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype/scan_not` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/ctype/tolower.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fctype%2Ftolower.html&labels=migrate-cppref-page) | `cpp/library/text/locale/ctype/tolower` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/wstring_convert/from_bytes.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fwstring_convert%2Ffrom_bytes.html&labels=migrate-cppref-page) | `cpp/library/text/locale/wstring_convert/from_bytes` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/wstring_convert/wstring_convert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fwstring_convert%2Fwstring_convert.html&labels=migrate-cppref-page) | `cpp/library/text/locale/wstring_convert/wstring_convert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/wstring_convert/converted.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fwstring_convert%2Fconverted.html&labels=migrate-cppref-page) | `cpp/library/text/locale/wstring_convert/converted` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/wstring_convert/~wstring_convert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fwstring_convert%2F~wstring_convert.html&labels=migrate-cppref-page) | `cpp/library/text/locale/wstring_convert/~wstring_convert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/wstring_convert/to_bytes.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fwstring_convert%2Fto_bytes.html&labels=migrate-cppref-page) | `cpp/library/text/locale/wstring_convert/to_bytes` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/wstring_convert/state.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fwstring_convert%2Fstate.html&labels=migrate-cppref-page) | `cpp/library/text/locale/wstring_convert/state` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/wbuffer_convert/wbuffer_convert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fwbuffer_convert%2Fwbuffer_convert.html&labels=migrate-cppref-page) | `cpp/library/text/locale/wbuffer_convert/wbuffer_convert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/wbuffer_convert/~wbuffer_convert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fwbuffer_convert%2F~wbuffer_convert.html&labels=migrate-cppref-page) | `cpp/library/text/locale/wbuffer_convert/~wbuffer_convert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/wbuffer_convert/rdbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fwbuffer_convert%2Frdbuf.html&labels=migrate-cppref-page) | `cpp/library/text/locale/wbuffer_convert/rdbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/wbuffer_convert/state.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Fwbuffer_convert%2Fstate.html&labels=migrate-cppref-page) | `cpp/library/text/locale/wbuffer_convert/state` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/time_put/time_put.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftime_put%2Ftime_put.html&labels=migrate-cppref-page) | `cpp/library/text/locale/time_put/time_put` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/time_put/put.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftime_put%2Fput.html&labels=migrate-cppref-page) | `cpp/library/text/locale/time_put/put` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/locale/time_put/~time_put.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flocale%2Ftime_put%2F~time_put.html&labels=migrate-cppref-page) | `cpp/library/text/locale/time_put/~time_put` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/text/text_encoding.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftext%2Ftext_encoding.html&labels=migrate-cppref-page) | `cpp/library/text/text_encoding` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/text/text_encoding/operator_eq.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftext%2Ftext_encoding%2Foperator_eq.html&labels=migrate-cppref-page) | `cpp/library/text/text_encoding/operator_eq` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/text/text_encoding/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftext%2Ftext_encoding%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/text/text_encoding/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/text/text_encoding/aliases.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftext%2Ftext_encoding%2Faliases.html&labels=migrate-cppref-page) | `cpp/library/text/text_encoding/aliases` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/text/text_encoding/comp-name.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftext%2Ftext_encoding%2Fcomp-name.html&labels=migrate-cppref-page) | `cpp/library/text/text_encoding/comp-name` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/text/text_encoding/mib.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftext%2Ftext_encoding%2Fmib.html&labels=migrate-cppref-page) | `cpp/library/text/text_encoding/mib` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/text/text_encoding/id.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftext%2Ftext_encoding%2Fid.html&labels=migrate-cppref-page) | `cpp/library/text/text_encoding/id` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/text/text_encoding/environment.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftext%2Ftext_encoding%2Fenvironment.html&labels=migrate-cppref-page) | `cpp/library/text/text_encoding/environment` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/text/text_encoding/name.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftext%2Ftext_encoding%2Fname.html&labels=migrate-cppref-page) | `cpp/library/text/text_encoding/name` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/text/text_encoding/environment_is.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftext%2Ftext_encoding%2Fenvironment_is.html&labels=migrate-cppref-page) | `cpp/library/text/text_encoding/environment_is` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/text/text_encoding/literal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftext%2Ftext_encoding%2Fliteral.html&labels=migrate-cppref-page) | `cpp/library/text/text_encoding/literal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/text/text_encoding/aliases_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftext%2Ftext_encoding%2Faliases_view.html&labels=migrate-cppref-page) | `cpp/library/text/text_encoding/aliases_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte.html&labels=migrate-cppref-page) | `cpp/library/text/byte` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/char_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fchar_traits.html&labels=migrate-cppref-page) | `cpp/library/string/char_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide.html&labels=migrate-cppref-page) | `cpp/library/text/wide` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/mbsinit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fmbsinit.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/mbsinit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/mbrtoc16.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fmbrtoc16.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/mbrtoc16` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/wctomb.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fwctomb.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/wctomb` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/mbstate_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fmbstate_t.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/mbstate_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/mbtowc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fmbtowc.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/mbtowc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/mbrtoc32.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fmbrtoc32.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/mbrtoc32` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/wcsrtombs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fwcsrtombs.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/wcsrtombs` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/wcrtomb.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fwcrtomb.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/wcrtomb` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/wctob.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fwctob.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/wctob` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/mbrlen.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fmbrlen.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/mbrlen` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/c32rtomb.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fc32rtomb.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/c32rtomb` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/mbrtowc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fmbrtowc.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/mbrtowc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/c16rtomb.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fc16rtomb.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/c16rtomb` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/btowc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fbtowc.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/btowc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/mbstowcs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fmbstowcs.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/mbstowcs` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/wcstombs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fwcstombs.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/wcstombs` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/c8rtomb.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fc8rtomb.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/c8rtomb` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/mbsrtowcs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fmbsrtowcs.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/mbsrtowcs` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/mblen.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fmblen.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/mblen` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/multibyte/mbrtoc8.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fmultibyte%2Fmbrtoc8.html&labels=migrate-cppref-page) | `cpp/library/text/multibyte/mbrtoc8` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/stoul.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fstoul.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/stoul` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/replace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Freplace.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/replace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fat.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/operator_q__q_s.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Foperator_q__q_s.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/operator_q__q_s` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fback.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/npos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fnpos.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/npos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/assign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fassign.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/assign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/insert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Finsert.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/insert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/resize_and_overwrite.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fresize_and_overwrite.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/resize_and_overwrite` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/operator+=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Foperator%2B%3D.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/operator+=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fcopy.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/ends_with.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fends_with.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/ends_with` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/find_first_not_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Ffind_first_not_of.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/find_first_not_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/to_string.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fto_string.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/to_string` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/to_wstring.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fto_wstring.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/to_wstring` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fend.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Frend.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/~basic_string.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2F~basic_string.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/~basic_string` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/substr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fsubstr.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/substr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/stol.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fstol.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/stol` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/pop_back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fpop_back.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/pop_back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/find_last_not_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Ffind_last_not_of.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/find_last_not_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/assign_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fassign_range.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/assign_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/getline.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fgetline.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/getline` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/stof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fstof.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/stof` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Ffront.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/rfind.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Frfind.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/rfind` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/operator+.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Foperator%2B.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/operator+` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/resize.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fresize.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/resize` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/compare.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fcompare.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/compare` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/basic_string.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fbasic_string.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/basic_string` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/reserve.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Freserve.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/reserve` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/append.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fappend.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/append` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/get_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fget_allocator.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/get_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/contains.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fcontains.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/contains` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/find_last_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Ffind_last_of.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/find_last_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/c_str.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fc_str.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/c_str` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/insert_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Finsert_range.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/insert_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/erase2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Ferase2.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/erase2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/find_first_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Ffind_first_of.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/find_first_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/operator_basic_string_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Foperator_basic_string_view.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/operator_basic_string_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/capacity.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fcapacity.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/capacity` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/data.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fdata.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/data` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/push_back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fpush_back.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/push_back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/starts_with.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fstarts_with.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/starts_with` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/shrink_to_fit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fshrink_to_fit.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/shrink_to_fit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/append_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fappend_range.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/append_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string/replace_with_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string%2Freplace_with_range.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string/replace_with_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/islower.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fislower.html&labels=migrate-cppref-page) | `cpp/library/text/byte/islower` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/memmove.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fmemmove.html&labels=migrate-cppref-page) | `cpp/library/text/byte/memmove` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strpbrk.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrpbrk.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strpbrk` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/iscntrl.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fiscntrl.html&labels=migrate-cppref-page) | `cpp/library/text/byte/iscntrl` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strspn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrspn.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strspn` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strlen.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrlen.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strlen` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/toupper.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Ftoupper.html&labels=migrate-cppref-page) | `cpp/library/text/byte/toupper` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/isprint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fisprint.html&labels=migrate-cppref-page) | `cpp/library/text/byte/isprint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strchr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrchr.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strchr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strtoimax.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrtoimax.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strtoimax` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strrchr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrrchr.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strrchr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/memcpy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fmemcpy.html&labels=migrate-cppref-page) | `cpp/library/text/byte/memcpy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strcat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrcat.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strcat` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strncpy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrncpy.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strncpy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/isalpha.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fisalpha.html&labels=migrate-cppref-page) | `cpp/library/text/byte/isalpha` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strtol.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrtol.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strtol` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/memset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fmemset.html&labels=migrate-cppref-page) | `cpp/library/text/byte/memset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strtoul.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrtoul.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strtoul` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strtok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrtok.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strtok` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/ispunct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fispunct.html&labels=migrate-cppref-page) | `cpp/library/text/byte/ispunct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/atoi.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fatoi.html&labels=migrate-cppref-page) | `cpp/library/text/byte/atoi` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strcoll.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrcoll.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strcoll` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/isdigit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fisdigit.html&labels=migrate-cppref-page) | `cpp/library/text/byte/isdigit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/memcmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fmemcmp.html&labels=migrate-cppref-page) | `cpp/library/text/byte/memcmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strerror.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrerror.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strerror` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/isspace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fisspace.html&labels=migrate-cppref-page) | `cpp/library/text/byte/isspace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strcspn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrcspn.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strcspn` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strxfrm.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrxfrm.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strxfrm` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strncat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrncat.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strncat` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/isxdigit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fisxdigit.html&labels=migrate-cppref-page) | `cpp/library/text/byte/isxdigit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/atof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fatof.html&labels=migrate-cppref-page) | `cpp/library/text/byte/atof` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strcmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrcmp.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strcmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strstr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrstr.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strstr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/isgraph.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fisgraph.html&labels=migrate-cppref-page) | `cpp/library/text/byte/isgraph` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/tolower.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Ftolower.html&labels=migrate-cppref-page) | `cpp/library/text/byte/tolower` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/isblank.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fisblank.html&labels=migrate-cppref-page) | `cpp/library/text/byte/isblank` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strtof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrtof.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strtof` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/isalnum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fisalnum.html&labels=migrate-cppref-page) | `cpp/library/text/byte/isalnum` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strcpy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrcpy.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strcpy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/strncmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fstrncmp.html&labels=migrate-cppref-page) | `cpp/library/text/byte/strncmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/memchr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fmemchr.html&labels=migrate-cppref-page) | `cpp/library/text/byte/memchr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/byte/isupper.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbyte%2Fisupper.html&labels=migrate-cppref-page) | `cpp/library/text/byte/isupper` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/towupper.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Ftowupper.html&labels=migrate-cppref-page) | `cpp/library/text/wide/towupper` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcsncat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcsncat.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcsncat` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcscpy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcscpy.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcscpy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcscmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcscmp.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcscmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcsstr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcsstr.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcsstr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcstok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcstok.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcstok` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wmemcpy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwmemcpy.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wmemcpy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wmemset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwmemset.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wmemset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcstol.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcstol.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcstol` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/towctrans.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Ftowctrans.html&labels=migrate-cppref-page) | `cpp/library/text/wide/towctrans` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcspbrk.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcspbrk.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcspbrk` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcschr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcschr.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcschr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wmemcmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwmemcmp.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wmemcmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/iswdigit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fiswdigit.html&labels=migrate-cppref-page) | `cpp/library/text/wide/iswdigit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcscat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcscat.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcscat` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wmemmove.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwmemmove.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wmemmove` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/iswupper.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fiswupper.html&labels=migrate-cppref-page) | `cpp/library/text/wide/iswupper` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/iswblank.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fiswblank.html&labels=migrate-cppref-page) | `cpp/library/text/wide/iswblank` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/iswpunct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fiswpunct.html&labels=migrate-cppref-page) | `cpp/library/text/wide/iswpunct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/iswlower.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fiswlower.html&labels=migrate-cppref-page) | `cpp/library/text/wide/iswlower` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wctype.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwctype.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wctype` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcsrchr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcsrchr.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcsrchr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcscspn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcscspn.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcscspn` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/iswcntrl.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fiswcntrl.html&labels=migrate-cppref-page) | `cpp/library/text/wide/iswcntrl` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcstoul.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcstoul.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcstoul` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcstoimax.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcstoimax.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcstoimax` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/iswalnum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fiswalnum.html&labels=migrate-cppref-page) | `cpp/library/text/wide/iswalnum` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/iswctype.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fiswctype.html&labels=migrate-cppref-page) | `cpp/library/text/wide/iswctype` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/towlower.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Ftowlower.html&labels=migrate-cppref-page) | `cpp/library/text/wide/towlower` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/iswalpha.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fiswalpha.html&labels=migrate-cppref-page) | `cpp/library/text/wide/iswalpha` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcsncmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcsncmp.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcsncmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/iswprint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fiswprint.html&labels=migrate-cppref-page) | `cpp/library/text/wide/iswprint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/iswxdigit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fiswxdigit.html&labels=migrate-cppref-page) | `cpp/library/text/wide/iswxdigit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcsxfrm.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcsxfrm.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcsxfrm` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcsspn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcsspn.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcsspn` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcstof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcstof.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcstof` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wmemchr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwmemchr.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wmemchr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcsncpy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcsncpy.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcsncpy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wctrans.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwctrans.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wctrans` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/iswgraph.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fiswgraph.html&labels=migrate-cppref-page) | `cpp/library/text/wide/iswgraph` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/iswspace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fiswspace.html&labels=migrate-cppref-page) | `cpp/library/text/wide/iswspace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcscoll.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcscoll.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcscoll` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/wide/wcslen.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fwide%2Fwcslen.html&labels=migrate-cppref-page) | `cpp/library/text/wide/wcslen` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/remove_prefix.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fremove_prefix.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/remove_prefix` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/operator_q__q_sv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Foperator_q__q_sv.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/operator_q__q_sv` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fat.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fback.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/npos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fnpos.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/npos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fcopy.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/ends_with.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fends_with.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/ends_with` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/find_first_not_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Ffind_first_not_of.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/find_first_not_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Frend.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/substr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fsubstr.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/substr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/find_last_not_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Ffind_last_not_of.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/find_last_not_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Ffront.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/rfind.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Frfind.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/rfind` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/compare.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fcompare.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/compare` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/basic_string_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fbasic_string_view.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/basic_string_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/contains.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fcontains.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/contains` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/find_last_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Ffind_last_of.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/find_last_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/find_first_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Ffind_first_of.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/find_first_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/data.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fdata.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/data` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/starts_with.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fstarts_with.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/starts_with` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/basic_string_view/remove_suffix.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fbasic_string_view%2Fremove_suffix.html&labels=migrate-cppref-page) | `cpp/library/string/basic_string_view/remove_suffix` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/char_traits/assign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fchar_traits%2Fassign.html&labels=migrate-cppref-page) | `cpp/library/string/char_traits/assign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/char_traits/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fchar_traits%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/string/char_traits/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/char_traits/move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fchar_traits%2Fmove.html&labels=migrate-cppref-page) | `cpp/library/string/char_traits/move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/char_traits/copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fchar_traits%2Fcopy.html&labels=migrate-cppref-page) | `cpp/library/string/char_traits/copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/char_traits/to_char_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fchar_traits%2Fto_char_type.html&labels=migrate-cppref-page) | `cpp/library/string/char_traits/to_char_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/char_traits/eof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fchar_traits%2Feof.html&labels=migrate-cppref-page) | `cpp/library/string/char_traits/eof` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/char_traits/to_int_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fchar_traits%2Fto_int_type.html&labels=migrate-cppref-page) | `cpp/library/string/char_traits/to_int_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/char_traits/cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fchar_traits%2Fcmp.html&labels=migrate-cppref-page) | `cpp/library/string/char_traits/cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/char_traits/compare.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fchar_traits%2Fcompare.html&labels=migrate-cppref-page) | `cpp/library/string/char_traits/compare` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/char_traits/not_eof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fchar_traits%2Fnot_eof.html&labels=migrate-cppref-page) | `cpp/library/string/char_traits/not_eof` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/char_traits/length.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fchar_traits%2Flength.html&labels=migrate-cppref-page) | `cpp/library/string/char_traits/length` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/string/char_traits/eq_int_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstring%2Fchar_traits%2Feq_int_type.html&labels=migrate-cppref-page) | `cpp/library/string/char_traits/eq_int_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/rotate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Frotate.html&labels=migrate-cppref-page) | `cpp/library/algorithm/rotate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/adjacent_find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fadjacent_find.html&labels=migrate-cppref-page) | `cpp/library/algorithm/adjacent_find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/replace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Freplace.html&labels=migrate-cppref-page) | `cpp/library/algorithm/replace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/transform_reduce.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Ftransform_reduce.html&labels=migrate-cppref-page) | `cpp/library/numeric/transform_reduce` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/includes.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fincludes.html&labels=migrate-cppref-page) | `cpp/library/algorithm/includes` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/remove.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fremove.html&labels=migrate-cppref-page) | `cpp/library/algorithm/remove` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/transform_exclusive_scan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Ftransform_exclusive_scan.html&labels=migrate-cppref-page) | `cpp/library/numeric/transform_exclusive_scan` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/prev_permutation.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fprev_permutation.html&labels=migrate-cppref-page) | `cpp/library/algorithm/prev_permutation` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/is_heap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fis_heap.html&labels=migrate-cppref-page) | `cpp/library/algorithm/is_heap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/sample.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fsample.html&labels=migrate-cppref-page) | `cpp/library/algorithm/sample` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/partition_copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fpartition_copy.html&labels=migrate-cppref-page) | `cpp/library/algorithm/partition_copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/clamp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fclamp.html&labels=migrate-cppref-page) | `cpp/library/algorithm/clamp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/set_symmetric_difference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fset_symmetric_difference.html&labels=migrate-cppref-page) | `cpp/library/algorithm/set_symmetric_difference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/random_shuffle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Frandom_shuffle.html&labels=migrate-cppref-page) | `cpp/library/algorithm/random_shuffle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/algorithm/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/search.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fsearch.html&labels=migrate-cppref-page) | `cpp/library/algorithm/search` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/equal_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fequal_range.html&labels=migrate-cppref-page) | `cpp/library/algorithm/equal_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/stable_sort.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fstable_sort.html&labels=migrate-cppref-page) | `cpp/library/algorithm/stable_sort` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fmove.html&labels=migrate-cppref-page) | `cpp/library/algorithm/move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/all_any_none_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fall_any_none_of.html&labels=migrate-cppref-page) | `cpp/library/algorithm/all_any_none_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/shift.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fshift.html&labels=migrate-cppref-page) | `cpp/library/algorithm/shift` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fcopy.html&labels=migrate-cppref-page) | `cpp/library/algorithm/copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/algorithm/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/max_element.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fmax_element.html&labels=migrate-cppref-page) | `cpp/library/algorithm/max_element` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/qsort.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fqsort.html&labels=migrate-cppref-page) | `cpp/library/algorithm/qsort` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/minmax.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fminmax.html&labels=migrate-cppref-page) | `cpp/library/algorithm/minmax` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/partition.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fpartition.html&labels=migrate-cppref-page) | `cpp/library/algorithm/partition` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/partial_sum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fpartial_sum.html&labels=migrate-cppref-page) | `cpp/library/numeric/partial_sum` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/copy_backward.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fcopy_backward.html&labels=migrate-cppref-page) | `cpp/library/algorithm/copy_backward` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/push_heap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fpush_heap.html&labels=migrate-cppref-page) | `cpp/library/algorithm/push_heap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/copy_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fcopy_n.html&labels=migrate-cppref-page) | `cpp/library/algorithm/copy_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/transform_inclusive_scan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Ftransform_inclusive_scan.html&labels=migrate-cppref-page) | `cpp/library/numeric/transform_inclusive_scan` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/pop_heap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fpop_heap.html&labels=migrate-cppref-page) | `cpp/library/algorithm/pop_heap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/execution_policy_tag.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fexecution_policy_tag.html&labels=migrate-cppref-page) | `cpp/library/algorithm/execution_policy_tag` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/is_sorted.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fis_sorted.html&labels=migrate-cppref-page) | `cpp/library/algorithm/is_sorted` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/bsearch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fbsearch.html&labels=migrate-cppref-page) | `cpp/library/algorithm/bsearch` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/rotate_copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Frotate_copy.html&labels=migrate-cppref-page) | `cpp/library/algorithm/rotate_copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/iota.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fiota.html&labels=migrate-cppref-page) | `cpp/library/numeric/iota` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/set_difference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fset_difference.html&labels=migrate-cppref-page) | `cpp/library/algorithm/set_difference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/execution_policy_tag_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fexecution_policy_tag_t.html&labels=migrate-cppref-page) | `cpp/library/algorithm/execution_policy_tag_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/is_partitioned.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fis_partitioned.html&labels=migrate-cppref-page) | `cpp/library/algorithm/is_partitioned` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/for_each.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Ffor_each.html&labels=migrate-cppref-page) | `cpp/library/algorithm/for_each` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/find_end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Ffind_end.html&labels=migrate-cppref-page) | `cpp/library/algorithm/find_end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/lexicographical_compare_three_way.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Flexicographical_compare_three_way.html&labels=migrate-cppref-page) | `cpp/library/algorithm/lexicographical_compare_three_way` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/algorithm/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/sort_heap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fsort_heap.html&labels=migrate-cppref-page) | `cpp/library/algorithm/sort_heap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/accumulate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Faccumulate.html&labels=migrate-cppref-page) | `cpp/library/numeric/accumulate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/swap_ranges.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fswap_ranges.html&labels=migrate-cppref-page) | `cpp/library/algorithm/swap_ranges` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/min_element.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fmin_element.html&labels=migrate-cppref-page) | `cpp/library/algorithm/min_element` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/exclusive_scan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fexclusive_scan.html&labels=migrate-cppref-page) | `cpp/library/numeric/exclusive_scan` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/algorithm/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/upper_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fupper_bound.html&labels=migrate-cppref-page) | `cpp/library/algorithm/upper_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/next_permutation.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fnext_permutation.html&labels=migrate-cppref-page) | `cpp/library/algorithm/next_permutation` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/partial_sort_copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fpartial_sort_copy.html&labels=migrate-cppref-page) | `cpp/library/algorithm/partial_sort_copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/inclusive_scan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Finclusive_scan.html&labels=migrate-cppref-page) | `cpp/library/numeric/inclusive_scan` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/search_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fsearch_n.html&labels=migrate-cppref-page) | `cpp/library/algorithm/search_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/lower_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Flower_bound.html&labels=migrate-cppref-page) | `cpp/library/algorithm/lower_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/is_execution_policy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fis_execution_policy.html&labels=migrate-cppref-page) | `cpp/library/algorithm/is_execution_policy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/mismatch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fmismatch.html&labels=migrate-cppref-page) | `cpp/library/algorithm/mismatch` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/reduce.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Freduce.html&labels=migrate-cppref-page) | `cpp/library/numeric/reduce` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fcount.html&labels=migrate-cppref-page) | `cpp/library/algorithm/count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fequal.html&labels=migrate-cppref-page) | `cpp/library/algorithm/equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/replace_copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Freplace_copy.html&labels=migrate-cppref-page) | `cpp/library/algorithm/replace_copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/inplace_merge.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Finplace_merge.html&labels=migrate-cppref-page) | `cpp/library/algorithm/inplace_merge` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/generate_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fgenerate_n.html&labels=migrate-cppref-page) | `cpp/library/algorithm/generate_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/inner_product.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Finner_product.html&labels=migrate-cppref-page) | `cpp/library/numeric/inner_product` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/set_union.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fset_union.html&labels=migrate-cppref-page) | `cpp/library/algorithm/set_union` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/merge.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fmerge.html&labels=migrate-cppref-page) | `cpp/library/algorithm/merge` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/fill_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Ffill_n.html&labels=migrate-cppref-page) | `cpp/library/algorithm/fill_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/set_intersection.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fset_intersection.html&labels=migrate-cppref-page) | `cpp/library/algorithm/set_intersection` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/make_heap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fmake_heap.html&labels=migrate-cppref-page) | `cpp/library/algorithm/make_heap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/iter_swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fiter_swap.html&labels=migrate-cppref-page) | `cpp/library/algorithm/iter_swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/binary_search.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fbinary_search.html&labels=migrate-cppref-page) | `cpp/library/algorithm/binary_search` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/unique.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Funique.html&labels=migrate-cppref-page) | `cpp/library/algorithm/unique` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/is_heap_until.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fis_heap_until.html&labels=migrate-cppref-page) | `cpp/library/algorithm/is_heap_until` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/is_sorted_until.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fis_sorted_until.html&labels=migrate-cppref-page) | `cpp/library/algorithm/is_sorted_until` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/fill.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Ffill.html&labels=migrate-cppref-page) | `cpp/library/algorithm/fill` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/move_backward.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fmove_backward.html&labels=migrate-cppref-page) | `cpp/library/algorithm/move_backward` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/partition_point.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fpartition_point.html&labels=migrate-cppref-page) | `cpp/library/algorithm/partition_point` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/minmax_element.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fminmax_element.html&labels=migrate-cppref-page) | `cpp/library/algorithm/minmax_element` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/adjacent_difference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fadjacent_difference.html&labels=migrate-cppref-page) | `cpp/library/numeric/adjacent_difference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/sort.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fsort.html&labels=migrate-cppref-page) | `cpp/library/algorithm/sort` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/for_each_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Ffor_each_n.html&labels=migrate-cppref-page) | `cpp/library/algorithm/for_each_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/nth_element.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fnth_element.html&labels=migrate-cppref-page) | `cpp/library/algorithm/nth_element` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/find_first_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Ffind_first_of.html&labels=migrate-cppref-page) | `cpp/library/algorithm/find_first_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/stable_partition.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fstable_partition.html&labels=migrate-cppref-page) | `cpp/library/algorithm/stable_partition` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/remove_copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fremove_copy.html&labels=migrate-cppref-page) | `cpp/library/algorithm/remove_copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/unique_copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Funique_copy.html&labels=migrate-cppref-page) | `cpp/library/algorithm/unique_copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/transform.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Ftransform.html&labels=migrate-cppref-page) | `cpp/library/algorithm/transform` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/reverse_copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Freverse_copy.html&labels=migrate-cppref-page) | `cpp/library/algorithm/reverse_copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/lexicographical_compare.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Flexicographical_compare.html&labels=migrate-cppref-page) | `cpp/library/algorithm/lexicographical_compare` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/generate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fgenerate.html&labels=migrate-cppref-page) | `cpp/library/algorithm/generate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/partial_sort.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fpartial_sort.html&labels=migrate-cppref-page) | `cpp/library/algorithm/partial_sort` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/is_permutation.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Fis_permutation.html&labels=migrate-cppref-page) | `cpp/library/algorithm/is_permutation` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/reverse.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Freverse.html&labels=migrate-cppref-page) | `cpp/library/algorithm/reverse` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/fold_left_first_with_iter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Ffold_left_first_with_iter.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/fold_left_first_with_iter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/rotate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Frotate.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/rotate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/adjacent_find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fadjacent_find.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/adjacent_find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/replace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Freplace.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/replace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/includes.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fincludes.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/includes` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/remove.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fremove.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/remove` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/fold_left_first.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Ffold_left_first.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/fold_left_first` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/prev_permutation.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fprev_permutation.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/prev_permutation` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/is_heap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fis_heap.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/is_heap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/sample.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fsample.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/sample` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/partition_copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fpartition_copy.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/partition_copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/clamp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fclamp.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/clamp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/set_symmetric_difference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fset_symmetric_difference.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/set_symmetric_difference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/search.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fsearch.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/search` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/equal_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fequal_range.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/equal_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/stable_sort.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fstable_sort.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/stable_sort` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fmove.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/all_any_none_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fall_any_none_of.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/all_any_none_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/shift.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fshift.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/shift` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fcopy.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/ends_with.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fends_with.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/ends_with` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/max_element.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fmax_element.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/max_element` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/minmax.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fminmax.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/minmax` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/partition.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fpartition.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/partition` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/copy_backward.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fcopy_backward.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/copy_backward` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/find_last.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Ffind_last.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/find_last` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/push_heap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fpush_heap.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/push_heap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/copy_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fcopy_n.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/copy_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/pop_heap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fpop_heap.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/pop_heap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/is_sorted.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fis_sorted.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/is_sorted` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/rotate_copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Frotate_copy.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/rotate_copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/iota.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fiota.html&labels=migrate-cppref-page) | `cpp/library/numeric/ranges/iota` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/fold_right.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Ffold_right.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/fold_right` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/generate_random.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fgenerate_random.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/generate_random` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/set_difference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fset_difference.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/set_difference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/is_partitioned.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fis_partitioned.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/is_partitioned` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/for_each.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Ffor_each.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/for_each` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/find_end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Ffind_end.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/find_end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/sort_heap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fsort_heap.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/sort_heap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/swap_ranges.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fswap_ranges.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/swap_ranges` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/min_element.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fmin_element.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/min_element` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/upper_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fupper_bound.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/upper_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/next_permutation.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fnext_permutation.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/next_permutation` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/partial_sort_copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fpartial_sort_copy.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/partial_sort_copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/search_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fsearch_n.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/search_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/lower_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Flower_bound.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/lower_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/mismatch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fmismatch.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/mismatch` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fcount.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/shuffle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fshuffle.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/shuffle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fequal.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/replace_copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Freplace_copy.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/replace_copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/inplace_merge.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Finplace_merge.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/inplace_merge` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/generate_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fgenerate_n.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/generate_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/set_union.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fset_union.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/set_union` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/contains.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fcontains.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/contains` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/merge.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fmerge.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/merge` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/fill_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Ffill_n.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/fill_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/set_intersection.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fset_intersection.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/set_intersection` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/make_heap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fmake_heap.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/make_heap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/binary_search.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fbinary_search.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/binary_search` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/unique.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Funique.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/unique` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/is_heap_until.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fis_heap_until.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/is_heap_until` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/is_sorted_until.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fis_sorted_until.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/is_sorted_until` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/fill.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Ffill.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/fill` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/move_backward.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fmove_backward.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/move_backward` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/partition_point.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fpartition_point.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/partition_point` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/minmax_element.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fminmax_element.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/minmax_element` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/sort.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fsort.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/sort` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/for_each_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Ffor_each_n.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/for_each_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/nth_element.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fnth_element.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/nth_element` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/find_first_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Ffind_first_of.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/find_first_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/stable_partition.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fstable_partition.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/stable_partition` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/remove_copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fremove_copy.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/remove_copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/unique_copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Funique_copy.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/unique_copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/fold_left.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Ffold_left.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/fold_left` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/transform.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Ftransform.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/transform` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/reverse_copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Freverse_copy.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/reverse_copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/lexicographical_compare.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Flexicographical_compare.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/lexicographical_compare` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/starts_with.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fstarts_with.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/starts_with` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/fold_right_last.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Ffold_right_last.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/fold_right_last` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/generate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fgenerate.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/generate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/partial_sort.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fpartial_sort.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/partial_sort` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/is_permutation.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Fis_permutation.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/is_permutation` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/reverse.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Freverse.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/reverse` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/fold_left_with_iter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Ffold_left_with_iter.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/fold_left_with_iter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/return_types/in_out_out_result.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Freturn_types%2Fin_out_out_result.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/return_types/in_out_out_result` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/return_types/in_found_result.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Freturn_types%2Fin_found_result.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/return_types/in_found_result` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/return_types/in_fun_result.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Freturn_types%2Fin_fun_result.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/return_types/in_fun_result` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/return_types/in_in_result.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Freturn_types%2Fin_in_result.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/return_types/in_in_result` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/return_types/in_out_result.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Freturn_types%2Fin_out_result.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/return_types/in_out_result` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/return_types/out_value_result.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Freturn_types%2Fout_value_result.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/return_types/out_value_result` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/return_types/in_value_result.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Freturn_types%2Fin_value_result.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/return_types/in_value_result` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/return_types/in_in_out_result.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Freturn_types%2Fin_in_out_result.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/return_types/in_in_out_result` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/algorithm/ranges/return_types/min_max_result.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Falgorithm%2Franges%2Freturn_types%2Fmin_max_result.html&labels=migrate-cppref-page) | `cpp/library/algorithm/ranges/return_types/min_max_result` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/fenv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Ffenv.html&labels=migrate-cppref-page) | `cpp/library/numeric/fenv` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/lcm.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Flcm.html&labels=migrate-cppref-page) | `cpp/library/numeric/lcm` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/ratio.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fratio.html&labels=migrate-cppref-page) | `cpp/library/meta/ratio` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/constants.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fconstants.html&labels=migrate-cppref-page) | `cpp/library/numeric/constants` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/linalg.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Flinalg.html&labels=migrate-cppref-page) | `cpp/library/numeric/linalg` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/lerp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Flerp.html&labels=migrate-cppref-page) | `cpp/library/numeric/lerp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/saturate_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fsaturate_cast.html&labels=migrate-cppref-page) | `cpp/library/numeric/saturate_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/add_sat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fadd_sat.html&labels=migrate-cppref-page) | `cpp/library/numeric/add_sat` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/midpoint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmidpoint.html&labels=migrate-cppref-page) | `cpp/library/numeric/midpoint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/simd.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fsimd.html&labels=migrate-cppref-page) | `cpp/library/numeric/simd` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/div_sat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fdiv_sat.html&labels=migrate-cppref-page) | `cpp/library/numeric/div_sat` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/gcd.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fgcd.html&labels=migrate-cppref-page) | `cpp/library/numeric/gcd` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath.html&labels=migrate-cppref-page) | `cpp/library/numeric/math` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/mul_sat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmul_sat.html&labels=migrate-cppref-page) | `cpp/library/numeric/mul_sat` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom.html&labels=migrate-cppref-page) | `cpp/library/numeric/random` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/sub_sat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fsub_sat.html&labels=migrate-cppref-page) | `cpp/library/numeric/sub_sat` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/end2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fend2.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/end2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/asin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fasin.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/asin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/sin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fsin.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/sin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/slice.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fslice.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/slice` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/acos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Facos.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/acos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/shift.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fshift.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/shift` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/tan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Ftan.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/tan` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/~valarray.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2F~valarray.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/~valarray` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/valarray.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fvalarray.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/valarray` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/begin2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fbegin2.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/begin2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/exp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fexp.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/exp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/sqrt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fsqrt.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/sqrt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/operator_arith3.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Foperator_arith3.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/operator_arith3` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/resize.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fresize.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/resize` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/mask_array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fmask_array.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/mask_array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/indirect_array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Findirect_array.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/indirect_array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/gslice_array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fgslice_array.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/gslice_array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/cosh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fcosh.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/cosh` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/pow.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fpow.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/pow` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/slice_array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fslice_array.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/slice_array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/cshift.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fcshift.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/cshift` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/sum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fsum.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/sum` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/tanh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Ftanh.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/tanh` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/apply.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fapply.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/apply` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/gslice.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fgslice.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/gslice` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/cos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fcos.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/cos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/sinh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fsinh.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/sinh` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/atan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fatan.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/atan` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/atan2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fatan2.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/atan2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/log10.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Flog10.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/log10` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/abs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fabs.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/abs` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/log.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Flog.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/log` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/gslice_array/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fgslice_array%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/gslice_array/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/gslice_array/gslice_array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fgslice_array%2Fgslice_array.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/gslice_array/gslice_array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/gslice_array/~gslice_array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fgslice_array%2F~gslice_array.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/gslice_array/~gslice_array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/gslice_array/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fgslice_array%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/gslice_array/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/mask_array/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fmask_array%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/mask_array/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/mask_array/mask_array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fmask_array%2Fmask_array.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/mask_array/mask_array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/mask_array/~mask_array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fmask_array%2F~mask_array.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/mask_array/~mask_array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/mask_array/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fmask_array%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/mask_array/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/slice_array/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fslice_array%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/slice_array/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/slice_array/~slice_array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fslice_array%2F~slice_array.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/slice_array/~slice_array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/slice_array/slice_array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fslice_array%2Fslice_array.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/slice_array/slice_array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/slice_array/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Fslice_array%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/slice_array/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/indirect_array/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Findirect_array%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/indirect_array/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/indirect_array/indirect_array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Findirect_array%2Findirect_array.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/indirect_array/indirect_array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/indirect_array/~indirect_array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Findirect_array%2F~indirect_array.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/indirect_array/~indirect_array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/valarray/indirect_array/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fvalarray%2Findirect_array%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/numeric/valarray/indirect_array/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/asin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fasin.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/asin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/sin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fsin.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/sin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/imag2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fimag2.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/imag2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/acos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Facos.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/acos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/operator_q__q_i.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Foperator_q__q_i.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/operator_q__q_i` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/tan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Ftan.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/tan` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/exp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fexp.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/exp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/proj.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fproj.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/proj` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/conj.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fconj.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/conj` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/sqrt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fsqrt.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/sqrt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/operator_arith3.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Foperator_arith3.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/operator_arith3` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/norm.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fnorm.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/norm` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/imag.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fimag.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/imag` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/tuple_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Ftuple_size.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/tuple_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/cosh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fcosh.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/cosh` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/pow.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fpow.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/pow` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fget.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/asinh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fasinh.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/asinh` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/real2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Freal2.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/real2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/tanh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Ftanh.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/tanh` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/cos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fcos.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/cos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/tuple_element.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Ftuple_element.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/tuple_element` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/sinh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fsinh.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/sinh` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/atan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fatan.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/atan` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/log10.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Flog10.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/log10` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/arg.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Farg.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/arg` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/acosh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Facosh.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/acosh` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/complex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fcomplex.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/complex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/real.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Freal.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/real` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/polar.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fpolar.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/polar` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/abs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fabs.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/abs` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/log.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Flog.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/log` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/complex/atanh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcomplex%2Fatanh.html&labels=migrate-cppref-page) | `cpp/library/numeric/complex/atanh` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/cyl_bessel_j.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Fcyl_bessel_j.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/cyl_bessel_j` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/hermite.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Fhermite.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/hermite` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/cyl_bessel_i.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Fcyl_bessel_i.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/cyl_bessel_i` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/sph_neumann.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Fsph_neumann.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/sph_neumann` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/cyl_bessel_k.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Fcyl_bessel_k.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/cyl_bessel_k` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/comp_ellint_2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Fcomp_ellint_2.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/comp_ellint_2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/assoc_legendre.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Fassoc_legendre.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/assoc_legendre` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/sph_bessel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Fsph_bessel.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/sph_bessel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/beta.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Fbeta.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/beta` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/sph_legendre.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Fsph_legendre.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/sph_legendre` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/ellint_1.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Fellint_1.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/ellint_1` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/assoc_laguerre.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Fassoc_laguerre.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/assoc_laguerre` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/riemann_zeta.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Friemann_zeta.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/riemann_zeta` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/comp_ellint_1.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Fcomp_ellint_1.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/comp_ellint_1` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/legendre.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Flegendre.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/legendre` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/laguerre.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Flaguerre.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/laguerre` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/comp_ellint_3.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Fcomp_ellint_3.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/comp_ellint_3` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/expint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Fexpint.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/expint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/cyl_neumann.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Fcyl_neumann.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/cyl_neumann` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/ellint_3.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Fellint_3.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/ellint_3` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/special_functions/ellint_2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fspecial_functions%2Fellint_2.html&labels=migrate-cppref-page) | `cpp/library/numeric/special_functions/ellint_2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/random_device.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Frandom_device.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/random_device` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscard_block_engine.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discard_block_engine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/normal_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnormal_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/normal_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnegative_binomial_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/negative_binomial_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fsubtract_with_carry_engine.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/subtract_with_carry_engine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fextreme_value_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/extreme_value_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/RAND_MAX.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2FRAND_MAX.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/RAND_MAX` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Ffisher_f_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/fisher_f_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/geometric_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgeometric_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/geometric_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flinear_congruential_engine.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/linear_congruential_engine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/bernoulli_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbernoulli_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/bernoulli_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/gamma_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgamma_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/gamma_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_random_bit_generator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_random_bit_generator.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_random_bit_generator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fmersenne_twister_engine.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/mersenne_twister_engine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fshuffle_order_engine.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/shuffle_order_engine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/cauchy_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fcauchy_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/cauchy_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/rand.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Frand.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/rand` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/lognormal_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flognormal_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/lognormal_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/UniformRandomBitGenerator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2FUniformRandomBitGenerator.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/UniformRandomBitGenerator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/seed_seq.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fseed_seq.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/seed_seq` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/chi_squared_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fchi_squared_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/chi_squared_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/srand.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fsrand.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/srand` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/student_t_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fstudent_t_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/student_t_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discrete_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscrete_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discrete_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/generate_canonical.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgenerate_canonical.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/generate_canonical` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/binomial_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbinomial_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/binomial_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_linear_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_linear_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_real_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_real_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_real_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/philox_engine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fphilox_engine.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/philox_engine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/weibull_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fweibull_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/weibull_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/poisson_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpoisson_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/poisson_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_constant_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_constant_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/exponential_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fexponential_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/exponential_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_int_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_int_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Findependent_bits_engine.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/independent_bits_engine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/negative_binomial_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnegative_binomial_distribution%2Fnegative_binomial_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/negative_binomial_distribution/negative_binomial_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnegative_binomial_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/negative_binomial_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnegative_binomial_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/negative_binomial_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnegative_binomial_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/negative_binomial_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnegative_binomial_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/negative_binomial_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnegative_binomial_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/negative_binomial_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnegative_binomial_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/negative_binomial_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnegative_binomial_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/negative_binomial_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/params.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnegative_binomial_distribution%2Fparams.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/negative_binomial_distribution/params` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/gamma_distribution/gamma_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgamma_distribution%2Fgamma_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/gamma_distribution/gamma_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/gamma_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgamma_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/gamma_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/gamma_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgamma_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/gamma_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/gamma_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgamma_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/gamma_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/gamma_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgamma_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/gamma_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/gamma_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgamma_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/gamma_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/gamma_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgamma_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/gamma_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/gamma_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgamma_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/gamma_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/gamma_distribution/params.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgamma_distribution%2Fparams.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/gamma_distribution/params` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/discard.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fshuffle_order_engine%2Fdiscard.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/shuffle_order_engine/discard` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fshuffle_order_engine%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/shuffle_order_engine/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fshuffle_order_engine%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/shuffle_order_engine/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/shuffle_order_engine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fshuffle_order_engine%2Fshuffle_order_engine.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/shuffle_order_engine/shuffle_order_engine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fshuffle_order_engine%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/shuffle_order_engine/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fshuffle_order_engine%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/shuffle_order_engine/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fshuffle_order_engine%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/shuffle_order_engine/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/seed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fshuffle_order_engine%2Fseed.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/shuffle_order_engine/seed` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fshuffle_order_engine%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/shuffle_order_engine/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_int_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_int_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_int_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_int_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_int_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_int_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_int_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_int_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_int_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_int_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_int_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_int_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_int_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_int_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/uniform_int_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_int_distribution%2Funiform_int_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_int_distribution/uniform_int_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/params.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_int_distribution%2Fparams.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_int_distribution/params` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/discard_block_engine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscard_block_engine%2Fdiscard_block_engine.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discard_block_engine/discard_block_engine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/discard.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscard_block_engine%2Fdiscard.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discard_block_engine/discard` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscard_block_engine%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discard_block_engine/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscard_block_engine%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discard_block_engine/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscard_block_engine%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discard_block_engine/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscard_block_engine%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discard_block_engine/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscard_block_engine%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discard_block_engine/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/seed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscard_block_engine%2Fseed.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discard_block_engine/seed` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscard_block_engine%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discard_block_engine/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/bernoulli_distribution/bernoulli_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbernoulli_distribution%2Fbernoulli_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/bernoulli_distribution/bernoulli_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/bernoulli_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbernoulli_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/bernoulli_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/bernoulli_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbernoulli_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/bernoulli_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/bernoulli_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbernoulli_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/bernoulli_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/bernoulli_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbernoulli_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/bernoulli_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/bernoulli_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbernoulli_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/bernoulli_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/bernoulli_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbernoulli_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/bernoulli_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/bernoulli_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbernoulli_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/bernoulli_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/bernoulli_distribution/p.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbernoulli_distribution%2Fp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/bernoulli_distribution/p` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fstudent_t_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/student_t_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fstudent_t_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/student_t_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fstudent_t_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/student_t_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/student_t_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fstudent_t_distribution%2Fstudent_t_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/student_t_distribution/student_t_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fstudent_t_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/student_t_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fstudent_t_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/student_t_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fstudent_t_distribution%2Fn.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/student_t_distribution/n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fstudent_t_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/student_t_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fstudent_t_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/student_t_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbinomial_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/binomial_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbinomial_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/binomial_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbinomial_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/binomial_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbinomial_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/binomial_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbinomial_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/binomial_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/binomial_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbinomial_distribution%2Fbinomial_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/binomial_distribution/binomial_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbinomial_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/binomial_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbinomial_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/binomial_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/params.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fbinomial_distribution%2Fparams.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/binomial_distribution/params` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_constant_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_constant_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_constant_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_constant_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_constant_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_constant_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_constant_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_constant_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_constant_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_constant_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_constant_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_constant_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_constant_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_constant_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/piecewise_constant_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_constant_distribution%2Fpiecewise_constant_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_constant_distribution/piecewise_constant_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/params.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_constant_distribution%2Fparams.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_constant_distribution/params` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/discard.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Findependent_bits_engine%2Fdiscard.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/independent_bits_engine/discard` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Findependent_bits_engine%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/independent_bits_engine/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Findependent_bits_engine%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/independent_bits_engine/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Findependent_bits_engine%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/independent_bits_engine/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Findependent_bits_engine%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/independent_bits_engine/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Findependent_bits_engine%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/independent_bits_engine/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/seed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Findependent_bits_engine%2Fseed.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/independent_bits_engine/seed` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Findependent_bits_engine%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/independent_bits_engine/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/independent_bits_engine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Findependent_bits_engine%2Findependent_bits_engine.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/independent_bits_engine/independent_bits_engine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/cauchy_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fcauchy_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/cauchy_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/cauchy_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fcauchy_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/cauchy_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/cauchy_distribution/cauchy_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fcauchy_distribution%2Fcauchy_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/cauchy_distribution/cauchy_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/cauchy_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fcauchy_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/cauchy_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/cauchy_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fcauchy_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/cauchy_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/cauchy_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fcauchy_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/cauchy_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/cauchy_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fcauchy_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/cauchy_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/cauchy_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fcauchy_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/cauchy_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/cauchy_distribution/params.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fcauchy_distribution%2Fparams.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/cauchy_distribution/params` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/normal_distribution/normal_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnormal_distribution%2Fnormal_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/normal_distribution/normal_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/normal_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnormal_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/normal_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/normal_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnormal_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/normal_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/normal_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnormal_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/normal_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/normal_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnormal_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/normal_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/normal_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnormal_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/normal_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/normal_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnormal_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/normal_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/normal_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnormal_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/normal_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/normal_distribution/params.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fnormal_distribution%2Fparams.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/normal_distribution/params` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/discard.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flinear_congruential_engine%2Fdiscard.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/linear_congruential_engine/discard` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/linear_congruential_engine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flinear_congruential_engine%2Flinear_congruential_engine.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/linear_congruential_engine/linear_congruential_engine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flinear_congruential_engine%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/linear_congruential_engine/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flinear_congruential_engine%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/linear_congruential_engine/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flinear_congruential_engine%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/linear_congruential_engine/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flinear_congruential_engine%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/linear_congruential_engine/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flinear_congruential_engine%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/linear_congruential_engine/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/seed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flinear_congruential_engine%2Fseed.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/linear_congruential_engine/seed` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/extreme_value_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fextreme_value_distribution%2Fextreme_value_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/extreme_value_distribution/extreme_value_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fextreme_value_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/extreme_value_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fextreme_value_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/extreme_value_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fextreme_value_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/extreme_value_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fextreme_value_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/extreme_value_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fextreme_value_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/extreme_value_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fextreme_value_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/extreme_value_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fextreme_value_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/extreme_value_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/params.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fextreme_value_distribution%2Fparams.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/extreme_value_distribution/params` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fweibull_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/weibull_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fweibull_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/weibull_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fweibull_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/weibull_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fweibull_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/weibull_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fweibull_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/weibull_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fweibull_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/weibull_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fweibull_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/weibull_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/weibull_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fweibull_distribution%2Fweibull_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/weibull_distribution/weibull_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/params.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fweibull_distribution%2Fparams.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/weibull_distribution/params` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discrete_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscrete_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discrete_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discrete_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscrete_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discrete_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discrete_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscrete_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discrete_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discrete_distribution/probabilities.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscrete_distribution%2Fprobabilities.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discrete_distribution/probabilities` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discrete_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscrete_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discrete_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discrete_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscrete_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discrete_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discrete_distribution/discrete_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscrete_distribution%2Fdiscrete_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discrete_distribution/discrete_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discrete_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscrete_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discrete_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/discrete_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fdiscrete_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/discrete_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/chi_squared_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fchi_squared_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/chi_squared_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/chi_squared_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fchi_squared_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/chi_squared_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/chi_squared_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fchi_squared_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/chi_squared_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/chi_squared_distribution/chi_squared_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fchi_squared_distribution%2Fchi_squared_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/chi_squared_distribution/chi_squared_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/chi_squared_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fchi_squared_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/chi_squared_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/chi_squared_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fchi_squared_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/chi_squared_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/chi_squared_distribution/n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fchi_squared_distribution%2Fn.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/chi_squared_distribution/n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/chi_squared_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fchi_squared_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/chi_squared_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/chi_squared_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fchi_squared_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/chi_squared_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/poisson_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpoisson_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/poisson_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/poisson_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpoisson_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/poisson_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/poisson_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpoisson_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/poisson_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/poisson_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpoisson_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/poisson_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/poisson_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpoisson_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/poisson_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/poisson_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpoisson_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/poisson_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/poisson_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpoisson_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/poisson_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/poisson_distribution/poisson_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpoisson_distribution%2Fpoisson_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/poisson_distribution/poisson_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/poisson_distribution/mean.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpoisson_distribution%2Fmean.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/poisson_distribution/mean` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/philox_engine/discard.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fphilox_engine%2Fdiscard.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/philox_engine/discard` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/philox_engine/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fphilox_engine%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/philox_engine/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/philox_engine/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fphilox_engine%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/philox_engine/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/philox_engine/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fphilox_engine%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/philox_engine/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/philox_engine/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fphilox_engine%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/philox_engine/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/philox_engine/set_counter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fphilox_engine%2Fset_counter.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/philox_engine/set_counter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/philox_engine/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fphilox_engine%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/philox_engine/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/philox_engine/philox_engine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fphilox_engine%2Fphilox_engine.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/philox_engine/philox_engine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/philox_engine/seed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fphilox_engine%2Fseed.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/philox_engine/seed` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/exponential_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fexponential_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/exponential_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/exponential_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fexponential_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/exponential_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/exponential_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fexponential_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/exponential_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/exponential_distribution/lambda.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fexponential_distribution%2Flambda.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/exponential_distribution/lambda` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/exponential_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fexponential_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/exponential_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/exponential_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fexponential_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/exponential_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/exponential_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fexponential_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/exponential_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/exponential_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fexponential_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/exponential_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/exponential_distribution/exponential_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fexponential_distribution%2Fexponential_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/exponential_distribution/exponential_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/discard.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fmersenne_twister_engine%2Fdiscard.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/mersenne_twister_engine/discard` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/mersenne_twister_engine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fmersenne_twister_engine%2Fmersenne_twister_engine.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/mersenne_twister_engine/mersenne_twister_engine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fmersenne_twister_engine%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/mersenne_twister_engine/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fmersenne_twister_engine%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/mersenne_twister_engine/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fmersenne_twister_engine%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/mersenne_twister_engine/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fmersenne_twister_engine%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/mersenne_twister_engine/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fmersenne_twister_engine%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/mersenne_twister_engine/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/seed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fmersenne_twister_engine%2Fseed.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/mersenne_twister_engine/seed` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_linear_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_linear_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_linear_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_linear_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_linear_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_linear_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_linear_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_linear_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_linear_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_linear_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_linear_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_linear_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/piecewise_linear_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_linear_distribution%2Fpiecewise_linear_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_linear_distribution/piecewise_linear_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_linear_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_linear_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/params.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fpiecewise_linear_distribution%2Fparams.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/piecewise_linear_distribution/params` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/subtract_with_carry_engine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fsubtract_with_carry_engine%2Fsubtract_with_carry_engine.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/subtract_with_carry_engine/subtract_with_carry_engine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/discard.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fsubtract_with_carry_engine%2Fdiscard.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/subtract_with_carry_engine/discard` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fsubtract_with_carry_engine%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/subtract_with_carry_engine/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fsubtract_with_carry_engine%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/subtract_with_carry_engine/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fsubtract_with_carry_engine%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/subtract_with_carry_engine/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fsubtract_with_carry_engine%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/subtract_with_carry_engine/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fsubtract_with_carry_engine%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/subtract_with_carry_engine/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/seed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fsubtract_with_carry_engine%2Fseed.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/subtract_with_carry_engine/seed` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/lognormal_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flognormal_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/lognormal_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/lognormal_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flognormal_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/lognormal_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/lognormal_distribution/lognormal_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flognormal_distribution%2Flognormal_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/lognormal_distribution/lognormal_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/lognormal_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flognormal_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/lognormal_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/lognormal_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flognormal_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/lognormal_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/lognormal_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flognormal_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/lognormal_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/lognormal_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flognormal_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/lognormal_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/lognormal_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flognormal_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/lognormal_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/lognormal_distribution/params.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Flognormal_distribution%2Fparams.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/lognormal_distribution/params` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/geometric_distribution/geometric_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgeometric_distribution%2Fgeometric_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/geometric_distribution/geometric_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/geometric_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgeometric_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/geometric_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/geometric_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgeometric_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/geometric_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/geometric_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgeometric_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/geometric_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/geometric_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgeometric_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/geometric_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/geometric_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgeometric_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/geometric_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/geometric_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgeometric_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/geometric_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/geometric_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgeometric_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/geometric_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/geometric_distribution/p.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fgeometric_distribution%2Fp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/geometric_distribution/p` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/random_device/random_device.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Frandom_device%2Frandom_device.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/random_device/random_device` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/random_device/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Frandom_device%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/random_device/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/random_device/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Frandom_device%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/random_device/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/random_device/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Frandom_device%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/random_device/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/random_device/entropy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Frandom_device%2Fentropy.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/random_device/entropy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_real_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_real_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_real_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_real_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_real_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_real_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_real_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_real_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_real_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_real_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_real_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_real_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_real_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_real_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_real_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_real_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_real_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_real_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_real_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_real_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_real_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_real_distribution/uniform_real_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_real_distribution%2Funiform_real_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_real_distribution/uniform_real_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/uniform_real_distribution/params.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Funiform_real_distribution%2Fparams.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/uniform_real_distribution/params` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution/fisher_f_distribution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Ffisher_f_distribution%2Ffisher_f_distribution.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/fisher_f_distribution/fisher_f_distribution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Ffisher_f_distribution%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/fisher_f_distribution/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Ffisher_f_distribution%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/fisher_f_distribution/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Ffisher_f_distribution%2Freset.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/fisher_f_distribution/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Ffisher_f_distribution%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/fisher_f_distribution/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Ffisher_f_distribution%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/fisher_f_distribution/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Ffisher_f_distribution%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/numeric/random/fisher_f_distribution/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Ffisher_f_distribution%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/fisher_f_distribution/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution/params.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Ffisher_f_distribution%2Fparams.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/fisher_f_distribution/params` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/seed_seq/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fseed_seq%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/seed_seq/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/seed_seq/seed_seq.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fseed_seq%2Fseed_seq.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/seed_seq/seed_seq` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/seed_seq/param.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fseed_seq%2Fparam.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/seed_seq/param` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/random/seed_seq/generate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frandom%2Fseed_seq%2Fgenerate.html&labels=migrate-cppref-page) | `cpp/library/numeric/random/seed_seq/generate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/fenv/feupdateenv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Ffenv%2Ffeupdateenv.html&labels=migrate-cppref-page) | `cpp/library/numeric/fenv/feupdateenv` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/fenv/FE_exceptions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Ffenv%2FFE_exceptions.html&labels=migrate-cppref-page) | `cpp/library/numeric/fenv/FE_exceptions` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/fenv/feexceptflag.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Ffenv%2Ffeexceptflag.html&labels=migrate-cppref-page) | `cpp/library/numeric/fenv/feexceptflag` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/fenv/feholdexcept.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Ffenv%2Ffeholdexcept.html&labels=migrate-cppref-page) | `cpp/library/numeric/fenv/feholdexcept` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/fenv/feraiseexcept.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Ffenv%2Fferaiseexcept.html&labels=migrate-cppref-page) | `cpp/library/numeric/fenv/feraiseexcept` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/fenv/feround.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Ffenv%2Fferound.html&labels=migrate-cppref-page) | `cpp/library/numeric/fenv/feround` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/fenv/FE_round.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Ffenv%2FFE_round.html&labels=migrate-cppref-page) | `cpp/library/numeric/fenv/FE_round` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/fenv/feenv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Ffenv%2Ffeenv.html&labels=migrate-cppref-page) | `cpp/library/numeric/fenv/feenv` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/fenv/fetestexcept.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Ffenv%2Ffetestexcept.html&labels=migrate-cppref-page) | `cpp/library/numeric/fenv/fetestexcept` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/fenv/FE_DFL_ENV.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Ffenv%2FFE_DFL_ENV.html&labels=migrate-cppref-page) | `cpp/library/numeric/fenv/FE_DFL_ENV` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/fenv/feclearexcept.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Ffenv%2Ffeclearexcept.html&labels=migrate-cppref-page) | `cpp/library/numeric/fenv/feclearexcept` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/fma.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Ffma.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/fma` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/asin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fasin.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/asin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/isnormal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fisnormal.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/isnormal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/sin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fsin.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/sin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/scalbn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fscalbn.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/scalbn` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/acos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Facos.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/acos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/modf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fmodf.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/modf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/tan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Ftan.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/tan` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/fmin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Ffmin.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/fmin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/frexp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Ffrexp.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/frexp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/fabs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Ffabs.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/fabs` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/floor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Ffloor.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/floor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/fdim.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Ffdim.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/fdim` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/ldexp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fldexp.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/ldexp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/log2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Flog2.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/log2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/ceil.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fceil.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/ceil` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/erfc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Ferfc.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/erfc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/isless.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fisless.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/isless` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/exp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fexp.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/exp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/sqrt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fsqrt.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/sqrt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/tgamma.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Ftgamma.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/tgamma` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/math_errhandling.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fmath_errhandling.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/math_errhandling` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/erf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Ferf.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/erf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/log1p.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Flog1p.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/log1p` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/exp2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fexp2.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/exp2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/remainder.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fremainder.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/remainder` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/islessgreater.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fislessgreater.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/islessgreater` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/isunordered.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fisunordered.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/isunordered` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/isnan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fisnan.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/isnan` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/isfinite.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fisfinite.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/isfinite` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/ilogb.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Filogb.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/ilogb` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/trunc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Ftrunc.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/trunc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/isinf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fisinf.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/isinf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/signbit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fsignbit.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/signbit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/HUGE_VAL.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2FHUGE_VAL.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/HUGE_VAL` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/cosh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fcosh.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/cosh` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/pow.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fpow.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/pow` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/isgreaterequal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fisgreaterequal.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/isgreaterequal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/INFINITY.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2FINFINITY.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/INFINITY` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/logb.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Flogb.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/logb` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/NAN.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2FNAN.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/NAN` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/asinh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fasinh.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/asinh` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/lgamma.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Flgamma.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/lgamma` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/FP_categories.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2FFP_categories.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/FP_categories` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/tanh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Ftanh.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/tanh` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/copysign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fcopysign.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/copysign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/cbrt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fcbrt.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/cbrt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/hypot.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fhypot.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/hypot` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/cos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fcos.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/cos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/rint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Frint.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/rint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/nextafter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fnextafter.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/nextafter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/sinh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fsinh.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/sinh` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/isgreater.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fisgreater.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/isgreater` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/nearbyint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fnearbyint.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/nearbyint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/atan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fatan.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/atan` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/atan2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fatan2.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/atan2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/log10.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Flog10.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/log10` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/round.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fround.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/round` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/nan.2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fnan.2.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/nan.2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/fmax.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Ffmax.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/fmax` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/remquo.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fremquo.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/remquo` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/acosh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Facosh.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/acosh` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/islessequal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fislessequal.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/islessequal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/abs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fabs.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/abs` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/div.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fdiv.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/div` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/log.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Flog.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/log` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/fpclassify.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Ffpclassify.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/fpclassify` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/fmod.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Ffmod.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/fmod` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/expm1.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fexpm1.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/expm1` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/math/atanh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fmath%2Fatanh.html&labels=migrate-cppref-page) | `cpp/library/numeric/math/atanh` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/simd/basic_simd.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fsimd%2Fbasic_simd.html&labels=migrate-cppref-page) | `cpp/library/numeric/simd/basic_simd` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/ratio/ratio_less.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fratio%2Fratio_less.html&labels=migrate-cppref-page) | `cpp/library/meta/ratio/ratio_less` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/ratio/ratio_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fratio%2Fratio_equal.html&labels=migrate-cppref-page) | `cpp/library/meta/ratio/ratio_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/ratio/ratio.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fratio%2Fratio.html&labels=migrate-cppref-page) | `cpp/library/meta/ratio/ratio` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/ratio/ratio_add.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fratio%2Fratio_add.html&labels=migrate-cppref-page) | `cpp/library/meta/ratio/ratio_add` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/ratio/ratio_not_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fratio%2Fratio_not_equal.html&labels=migrate-cppref-page) | `cpp/library/meta/ratio/ratio_not_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/ratio/ratio_greater_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fratio%2Fratio_greater_equal.html&labels=migrate-cppref-page) | `cpp/library/meta/ratio/ratio_greater_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/ratio/ratio_divide.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fratio%2Fratio_divide.html&labels=migrate-cppref-page) | `cpp/library/meta/ratio/ratio_divide` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/ratio/ratio_greater.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fratio%2Fratio_greater.html&labels=migrate-cppref-page) | `cpp/library/meta/ratio/ratio_greater` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/ratio/ratio_multiply.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fratio%2Fratio_multiply.html&labels=migrate-cppref-page) | `cpp/library/meta/ratio/ratio_multiply` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/ratio/ratio_less_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fratio%2Fratio_less_equal.html&labels=migrate-cppref-page) | `cpp/library/meta/ratio/ratio_less_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/ratio/ratio_subtract.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fratio%2Fratio_subtract.html&labels=migrate-cppref-page) | `cpp/library/meta/ratio/ratio_subtract` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/classes.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fclasses.html&labels=migrate-cppref-page) | `cpp/language/classes` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/static.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fstatic.html&labels=migrate-cppref-page) | `cpp/language/classes/static` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/declarations.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fdeclarations.html&labels=migrate-cppref-page) | `cpp/language/declarations` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/consteval.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fconsteval.html&labels=migrate-cppref-page) | `cpp/language/declarations/consteval` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/structured_binding.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fstructured_binding.html&labels=migrate-cppref-page) | `cpp/language/declarations/structured_binding` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/namespace_alias.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fnamespace_alias.html&labels=migrate-cppref-page) | `cpp/language/declarations/namespace_alias` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/expressions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fexpressions.html&labels=migrate-cppref-page) | `cpp/language/expressions` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/operator_alternative.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Foperator_alternative.html&labels=migrate-cppref-page) | `cpp/language/expressions/operator_alternative` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/templates.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ftemplates.html&labels=migrate-cppref-page) | `cpp/language/templates` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/partial_specialization.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fpartial_specialization.html&labels=migrate-cppref-page) | `cpp/language/templates/partial_specialization` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/default_constructor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fdefault_constructor.html&labels=migrate-cppref-page) | `cpp/language/classes/default_constructor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/attributes.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fattributes.html&labels=migrate-cppref-page) | `cpp/language/declarations/attributes` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/pack_indexing.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fpack_indexing.html&labels=migrate-cppref-page) | `cpp/language/templates/pack_indexing` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/initializer_list.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Finitializer_list.html&labels=migrate-cppref-page) | `cpp/language/classes/initializer_list` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/using_declaration.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fusing_declaration.html&labels=migrate-cppref-page) | `cpp/language/classes/using_declaration` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/delete.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fdelete.html&labels=migrate-cppref-page) | `cpp/language/expressions/delete` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/variable_template.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fvariable_template.html&labels=migrate-cppref-page) | `cpp/language/templates/variable_template` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/class.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fclass.html&labels=migrate-cppref-page) | `cpp/language/classes/class` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/elaborated_type_specifier.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Felaborated_type_specifier.html&labels=migrate-cppref-page) | `cpp/language/declarations/elaborated_type_specifier` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/cv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fcv.html&labels=migrate-cppref-page) | `cpp/language/declarations/cv` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/parameter_pack.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fparameter_pack.html&labels=migrate-cppref-page) | `cpp/language/templates/parameter_pack` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/default_comparisons.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fdefault_comparisons.html&labels=migrate-cppref-page) | `cpp/language/expressions/default_comparisons` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/operator_logical.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Foperator_logical.html&labels=migrate-cppref-page) | `cpp/language/expressions/operator_logical` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/requires.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Frequires.html&labels=migrate-cppref-page) | `cpp/language/templates/requires` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/operator_incdec.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Foperator_incdec.html&labels=migrate-cppref-page) | `cpp/language/expressions/operator_incdec` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/ndr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fndr.html&labels=migrate-cppref-page) | `cpp/language/ndr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/alignof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Falignof.html&labels=migrate-cppref-page) | `cpp/language/expressions/alignof` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/namespace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fnamespace.html&labels=migrate-cppref-page) | `cpp/language/declarations/namespace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/ascii.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fascii.html&labels=migrate-cppref-page) | `cpp/language/ascii` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/template_parameters.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ftemplate_parameters.html&labels=migrate-cppref-page) | `cpp/language/templates/template_parameters` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/rule_of_three.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Frule_of_three.html&labels=migrate-cppref-page) | `cpp/language/rule_of_three` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/operator_other.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Foperator_other.html&labels=migrate-cppref-page) | `cpp/language/expressions/operator_other` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/destructor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fdestructor.html&labels=migrate-cppref-page) | `cpp/language/classes/destructor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/escape.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fescape.html&labels=migrate-cppref-page) | `cpp/language/expressions/escape` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/statements.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fstatements.html&labels=migrate-cppref-page) | `cpp/language/statements` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/explicit_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fexplicit_cast.html&labels=migrate-cppref-page) | `cpp/language/expressions/explicit_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/bool_literal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fbool_literal.html&labels=migrate-cppref-page) | `cpp/language/expressions/bool_literal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/move_constructor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fmove_constructor.html&labels=migrate-cppref-page) | `cpp/language/classes/move_constructor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/this.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fthis.html&labels=migrate-cppref-page) | `cpp/language/classes/this` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/explicit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fexplicit.html&labels=migrate-cppref-page) | `cpp/language/classes/explicit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/member_functions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fmember_functions.html&labels=migrate-cppref-page) | `cpp/language/classes/member_functions` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/operator_precedence.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Foperator_precedence.html&labels=migrate-cppref-page) | `cpp/language/expressions/operator_precedence` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/floating_literal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ffloating_literal.html&labels=migrate-cppref-page) | `cpp/language/expressions/floating_literal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/constant_expression.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fconstant_expression.html&labels=migrate-cppref-page) | `cpp/language/expressions/constant_expression` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/switch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fswitch.html&labels=migrate-cppref-page) | `cpp/language/statements/switch` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/language_linkage.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Flanguage_linkage.html&labels=migrate-cppref-page) | `cpp/language/declarations/language_linkage` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/abstract_class.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fabstract_class.html&labels=migrate-cppref-page) | `cpp/language/classes/abstract_class` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/constraints.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fconstraints.html&labels=migrate-cppref-page) | `cpp/language/templates/constraints` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/new.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fnew.html&labels=migrate-cppref-page) | `cpp/language/expressions/new` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/fold.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ffold.html&labels=migrate-cppref-page) | `cpp/language/templates/fold` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/raii.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fraii.html&labels=migrate-cppref-page) | `cpp/language/raii` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/crtp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fcrtp.html&labels=migrate-cppref-page) | `cpp/language/crtp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/sizeof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fsizeof.html&labels=migrate-cppref-page) | `cpp/language/expressions/sizeof` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/move_assignment.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fmove_assignment.html&labels=migrate-cppref-page) | `cpp/language/classes/move_assignment` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/template_specialization.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ftemplate_specialization.html&labels=migrate-cppref-page) | `cpp/language/templates/template_specialization` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/deduction_guide.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fdeduction_guide.html&labels=migrate-cppref-page) | `cpp/language/templates/deduction_guide` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ffor.html&labels=migrate-cppref-page) | `cpp/language/statements/for` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/eval_order.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Feval_order.html&labels=migrate-cppref-page) | `cpp/language/expressions/eval_order` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/exceptions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fexceptions.html&labels=migrate-cppref-page) | `cpp/language/exceptions` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/operators.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Foperators.html&labels=migrate-cppref-page) | `cpp/language/expressions/operators` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/continue.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fcontinue.html&labels=migrate-cppref-page) | `cpp/language/statements/continue` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/tu_local.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ftu_local.html&labels=migrate-cppref-page) | `cpp/language/declarations/tu_local` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/type_alias.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ftype_alias.html&labels=migrate-cppref-page) | `cpp/language/declarations/type_alias` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/function_template.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ffunction_template.html&labels=migrate-cppref-page) | `cpp/language/templates/function_template` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/character_literal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fcharacter_literal.html&labels=migrate-cppref-page) | `cpp/language/expressions/character_literal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/derived_class.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fderived_class.html&labels=migrate-cppref-page) | `cpp/language/classes/derived_class` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fif.html&labels=migrate-cppref-page) | `cpp/language/statements/if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/integer_literal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Finteger_literal.html&labels=migrate-cppref-page) | `cpp/language/expressions/integer_literal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/extending_std.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fextending_std.html&labels=migrate-cppref-page) | `cpp/language/extending_std` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Farray.html&labels=migrate-cppref-page) | `cpp/language/declarations/array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/operator_arithmetic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Foperator_arithmetic.html&labels=migrate-cppref-page) | `cpp/language/expressions/operator_arithmetic` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/reinterpret_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Freinterpret_cast.html&labels=migrate-cppref-page) | `cpp/language/expressions/reinterpret_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/static_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fstatic_cast.html&labels=migrate-cppref-page) | `cpp/language/expressions/static_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/value_category.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fvalue_category.html&labels=migrate-cppref-page) | `cpp/language/expressions/value_category` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/typedef.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ftypedef.html&labels=migrate-cppref-page) | `cpp/language/declarations/typedef` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/Zero-overhead_principle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2FZero-overhead_principle.html&labels=migrate-cppref-page) | `cpp/language/Zero-overhead_principle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/injected-class-name.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Finjected-class-name.html&labels=migrate-cppref-page) | `cpp/language/classes/injected-class-name` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/nullptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fnullptr.html&labels=migrate-cppref-page) | `cpp/language/expressions/nullptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/throw.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fthrow.html&labels=migrate-cppref-page) | `cpp/language/exceptions/throw` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/friend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ffriend.html&labels=migrate-cppref-page) | `cpp/language/classes/friend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/pimpl.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fpimpl.html&labels=migrate-cppref-page) | `cpp/language/pimpl` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/conflicting_declarations.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fconflicting_declarations.html&labels=migrate-cppref-page) | `cpp/language/declarations/conflicting_declarations` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/data_members.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fdata_members.html&labels=migrate-cppref-page) | `cpp/language/classes/data_members` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/ebo.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Febo.html&labels=migrate-cppref-page) | `cpp/language/classes/ebo` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/nested_types.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fnested_types.html&labels=migrate-cppref-page) | `cpp/language/classes/nested_types` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/user_literal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fuser_literal.html&labels=migrate-cppref-page) | `cpp/language/expressions/user_literal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/static_assert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fstatic_assert.html&labels=migrate-cppref-page) | `cpp/language/declarations/static_assert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/string_literal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fstring_literal.html&labels=migrate-cppref-page) | `cpp/language/expressions/string_literal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/transactional_memory.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ftransactional_memory.html&labels=migrate-cppref-page) | `cpp/language/statements/transactional_memory` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/class_template.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fclass_template.html&labels=migrate-cppref-page) | `cpp/language/templates/class_template` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/template_argument_deduction.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ftemplate_argument_deduction.html&labels=migrate-cppref-page) | `cpp/language/templates/template_argument_deduction` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/pointer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fpointer.html&labels=migrate-cppref-page) | `cpp/language/declarations/pointer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/operator_assignment.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Foperator_assignment.html&labels=migrate-cppref-page) | `cpp/language/expressions/operator_assignment` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/enum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fenum.html&labels=migrate-cppref-page) | `cpp/language/declarations/enum` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/as_operator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fas_operator.html&labels=migrate-cppref-page) | `cpp/language/classes/as_operator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/storage_duration.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fstorage_duration.html&labels=migrate-cppref-page) | `cpp/language/declarations/storage_duration` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/noexcept.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fnoexcept.html&labels=migrate-cppref-page) | `cpp/language/exceptions/noexcept` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/asm.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fasm.html&labels=migrate-cppref-page) | `cpp/language/declarations/asm` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/final.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ffinal.html&labels=migrate-cppref-page) | `cpp/language/classes/final` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/while.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fwhile.html&labels=migrate-cppref-page) | `cpp/language/statements/while` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/union.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Funion.html&labels=migrate-cppref-page) | `cpp/language/classes/union` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/implicit_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fimplicit_cast.html&labels=migrate-cppref-page) | `cpp/language/expressions/implicit_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/move_operator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fmove_operator.html&labels=migrate-cppref-page) | `cpp/language/classes/move_operator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/dynamic_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fdynamic_cast.html&labels=migrate-cppref-page) | `cpp/language/expressions/dynamic_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/template_metaprogramming.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ftemplate_metaprogramming.html&labels=migrate-cppref-page) | `cpp/language/template_metaprogramming` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/copy_constructor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fcopy_constructor.html&labels=migrate-cppref-page) | `cpp/language/classes/copy_constructor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/nested_classes.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fnested_classes.html&labels=migrate-cppref-page) | `cpp/language/classes/nested_classes` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/break.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fbreak.html&labels=migrate-cppref-page) | `cpp/language/statements/break` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/sizeof....html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fsizeof....html&labels=migrate-cppref-page) | `cpp/language/templates/sizeof...` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/functions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ffunctions.html&labels=migrate-cppref-page) | `cpp/language/functions` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/access.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Faccess.html&labels=migrate-cppref-page) | `cpp/language/classes/access` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/ctad.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fctad.html&labels=migrate-cppref-page) | `cpp/language/templates/ctad` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/override.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Foverride.html&labels=migrate-cppref-page) | `cpp/language/classes/override` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/constexpr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fconstexpr.html&labels=migrate-cppref-page) | `cpp/language/declarations/constexpr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/reference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Freference.html&labels=migrate-cppref-page) | `cpp/language/declarations/reference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/operator_member_access.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Foperator_member_access.html&labels=migrate-cppref-page) | `cpp/language/expressions/operator_member_access` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/converting_constructor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fconverting_constructor.html&labels=migrate-cppref-page) | `cpp/language/classes/converting_constructor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/class_template_argument_deduction.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fclass_template_argument_deduction.html&labels=migrate-cppref-page) | `cpp/language/templates/class_template_argument_deduction` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/range-for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Frange-for.html&labels=migrate-cppref-page) | `cpp/language/statements/range-for` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/inline.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Finline.html&labels=migrate-cppref-page) | `cpp/language/declarations/inline` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/decltype.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fdecltype.html&labels=migrate-cppref-page) | `cpp/language/declarations/decltype` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/history.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fhistory.html&labels=migrate-cppref-page) | `cpp/language/history` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/initialization.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Finitialization.html&labels=migrate-cppref-page) | `cpp/language/initialization` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/usual_arithmetic_conversions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fusual_arithmetic_conversions.html&labels=migrate-cppref-page) | `cpp/language/expressions/usual_arithmetic_conversions` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/dependent_name.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fdependent_name.html&labels=migrate-cppref-page) | `cpp/language/templates/dependent_name` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/typeid.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ftypeid.html&labels=migrate-cppref-page) | `cpp/language/expressions/typeid` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/bit_field.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fbit_field.html&labels=migrate-cppref-page) | `cpp/language/classes/bit_field` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/cast_operator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fcast_operator.html&labels=migrate-cppref-page) | `cpp/language/expressions/cast_operator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/acronyms.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Facronyms.html&labels=migrate-cppref-page) | `cpp/language/acronyms` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/basic_concepts.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fbasic_concepts.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/goto.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fgoto.html&labels=migrate-cppref-page) | `cpp/language/statements/goto` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/const_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fconst_cast.html&labels=migrate-cppref-page) | `cpp/language/expressions/const_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/reference_initialization.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Freference_initialization.html&labels=migrate-cppref-page) | `cpp/language/initialization/reference_initialization` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/operator_comparison.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Foperator_comparison.html&labels=migrate-cppref-page) | `cpp/language/expressions/operator_comparison` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/virtual.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fvirtual.html&labels=migrate-cppref-page) | `cpp/language/classes/virtual` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/constinit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fconstinit.html&labels=migrate-cppref-page) | `cpp/language/declarations/constinit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/auto.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fauto.html&labels=migrate-cppref-page) | `cpp/language/declarations/auto` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/attributes/fallthrough.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fattributes%2Ffallthrough.html&labels=migrate-cppref-page) | `cpp/language/declarations/attributes/fallthrough` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/attributes/indeterminate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fattributes%2Findeterminate.html&labels=migrate-cppref-page) | `cpp/language/declarations/attributes/indeterminate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/attributes/deprecated.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fattributes%2Fdeprecated.html&labels=migrate-cppref-page) | `cpp/language/declarations/attributes/deprecated` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/attributes/assume.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fattributes%2Fassume.html&labels=migrate-cppref-page) | `cpp/language/declarations/attributes/assume` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/attributes/optimize_for_synchronized.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fattributes%2Foptimize_for_synchronized.html&labels=migrate-cppref-page) | `cpp/language/declarations/attributes/optimize_for_synchronized` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/attributes/maybe_unused.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fattributes%2Fmaybe_unused.html&labels=migrate-cppref-page) | `cpp/language/declarations/attributes/maybe_unused` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/attributes/likely.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fattributes%2Flikely.html&labels=migrate-cppref-page) | `cpp/language/declarations/attributes/likely` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/attributes/noreturn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fattributes%2Fnoreturn.html&labels=migrate-cppref-page) | `cpp/language/declarations/attributes/noreturn` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/attributes/nodiscard.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fattributes%2Fnodiscard.html&labels=migrate-cppref-page) | `cpp/language/declarations/attributes/nodiscard` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/attributes/no_unique_address.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fattributes%2Fno_unique_address.html&labels=migrate-cppref-page) | `cpp/language/declarations/attributes/no_unique_address` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/attributes/carries_dependency.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fattributes%2Fcarries_dependency.html&labels=migrate-cppref-page) | `cpp/language/declarations/attributes/carries_dependency` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/lazy_split_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Flazy_split_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/lazy_split_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/ref_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fref_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/ref_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/common_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcommon_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/common_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/subrange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsubrange.html&labels=migrate-cppref-page) | `cpp/library/ranges/subrange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/range_size_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Frange_size_t.html&labels=migrate-cppref-page) | `cpp/library/ranges/range_size_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/range_reference_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Frange_reference_t.html&labels=migrate-cppref-page) | `cpp/library/ranges/range_reference_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/keys_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fkeys_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/keys_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cdata.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcdata.html&labels=migrate-cppref-page) | `cpp/library/ranges/cdata` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/drop_while_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fdrop_while_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/drop_while_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/bidirectional_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fbidirectional_range.html&labels=migrate-cppref-page) | `cpp/library/ranges/bidirectional_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/view_counted.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fview_counted.html&labels=migrate-cppref-page) | `cpp/library/ranges/view_counted` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcend.html&labels=migrate-cppref-page) | `cpp/library/ranges/cend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/ranges/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/values_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fvalues_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/values_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_with_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_with_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_with_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/slide_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fslide_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/slide_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/empty_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fempty_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/empty_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/range_adaptor_closure.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Frange_adaptor_closure.html&labels=migrate-cppref-page) | `cpp/library/ranges/range_adaptor_closure` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fview.html&labels=migrate-cppref-page) | `cpp/library/ranges/view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/common_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcommon_range.html&labels=migrate-cppref-page) | `cpp/library/ranges/common_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_transform_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_transform_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_transform_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_by_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_by_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_by_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/to.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fto.html&labels=migrate-cppref-page) | `cpp/library/ranges/to` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/non-propagating-cache.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fnon-propagating-cache.html&labels=migrate-cppref-page) | `cpp/library/ranges/non-propagating-cache` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/drop_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fdrop_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/drop_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/single_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsingle_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/single_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/crbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcrbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/crbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Frend.html&labels=migrate-cppref-page) | `cpp/library/ranges/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/subrange_kind.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsubrange_kind.html&labels=migrate-cppref-page) | `cpp/library/ranges/subrange/../subrange_kind` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/borrowed_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fborrowed_range.html&labels=migrate-cppref-page) | `cpp/library/ranges/borrowed_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/cbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/constant_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fconstant_range.html&labels=migrate-cppref-page) | `cpp/library/ranges/constant_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/forward_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fforward_range.html&labels=migrate-cppref-page) | `cpp/library/ranges/forward_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/output_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Foutput_range.html&labels=migrate-cppref-page) | `cpp/library/ranges/output_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/iterator_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fiterator_t.html&labels=migrate-cppref-page) | `cpp/library/ranges/iterator_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Frange.html&labels=migrate-cppref-page) | `cpp/library/ranges/range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/as_const_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fas_const_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/as_const_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cpo.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcpo.html&labels=migrate-cppref-page) | `cpp/library/standard_library/cpo` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/ssize.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fssize.html&labels=migrate-cppref-page) | `cpp/library/ranges/ssize` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/counted_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcounted_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/counted_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/concat_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fconcat_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/concat_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/split_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsplit_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/split_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/view_interface.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fview_interface.html&labels=migrate-cppref-page) | `cpp/library/ranges/view_interface` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cartesian_product_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcartesian_product_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/cartesian_product_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/copyable_wrapper.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcopyable_wrapper.html&labels=migrate-cppref-page) | `cpp/library/ranges/copyable_wrapper` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/input_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Finput_range.html&labels=migrate-cppref-page) | `cpp/library/ranges/input_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/stride_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fstride_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/stride_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/crend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcrend.html&labels=migrate-cppref-page) | `cpp/library/ranges/crend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/filter_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ffilter_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/filter_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/repeat_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Frepeat_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/repeat_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/viewable_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fviewable_range.html&labels=migrate-cppref-page) | `cpp/library/ranges/viewable_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/contiguous_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcontiguous_range.html&labels=migrate-cppref-page) | `cpp/library/ranges/contiguous_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/all_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fall_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/all_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/data.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fdata.html&labels=migrate-cppref-page) | `cpp/library/ranges/data` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/reverse_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Freverse_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/reverse_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/random_access_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Frandom_access_range.html&labels=migrate-cppref-page) | `cpp/library/ranges/random_access_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_of.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/from_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ffrom_range.html&labels=migrate-cppref-page) | `cpp/library/ranges/from_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/iota_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fiota_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/iota_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/dangling.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fdangling.html&labels=migrate-cppref-page) | `cpp/library/ranges/dangling` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_transform_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_transform_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_transform_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/sized_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsized_range.html&labels=migrate-cppref-page) | `cpp/library/ranges/sized_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_while_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_while_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_while_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/owning_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fowning_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/owning_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/as_rvalue_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fas_rvalue_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/as_rvalue_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/borrowed_iterator_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fborrowed_iterator_t.html&labels=migrate-cppref-page) | `cpp/library/ranges/borrowed_iterator_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/basic_istream_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fbasic_istream_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/basic_istream_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_view/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_view%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_view/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_view/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_view%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_view/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_view/take_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_view%2Ftake_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_view/take_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_view/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_view%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_view/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_view/sentinel/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_view%2Fsentinel%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_view/sentinel/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_view/sentinel/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_view%2Fsentinel%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_view/sentinel/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_view/sentinel/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_view%2Fsentinel%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_view/sentinel/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view/zip_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view%2Fzip_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view/zip_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view/sentinel/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view%2Fsentinel%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view/sentinel/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view/sentinel/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view%2Fsentinel%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view/sentinel/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view/sentinel/operator-.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view%2Fsentinel%2Foperator-.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view/sentinel/operator-` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view/iterator/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view%2Fiterator%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view/iterator/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view/iterator/iter_move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view%2Fiterator%2Fiter_move.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view/iterator/iter_move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view/iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view%2Fiterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view/iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view/iterator/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view%2Fiterator%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view/iterator/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view/iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view%2Fiterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view/iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view/iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view%2Fiterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view/iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view/iterator/iter_swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view%2Fiterator%2Fiter_swap.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view/iterator/iter_swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_view/iterator/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_view%2Fiterator%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_view/iterator/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view/elements_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view%2Felements_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view/elements_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view/sentinel/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view%2Fsentinel%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view/sentinel/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view/sentinel/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view%2Fsentinel%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view/sentinel/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view/sentinel/operator-.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view%2Fsentinel%2Foperator-.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view/sentinel/operator-` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view/sentinel/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view%2Fsentinel%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view/sentinel/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view/iterator/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view%2Fiterator%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view/iterator/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view/iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view%2Fiterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view/iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view/iterator/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view%2Fiterator%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view/iterator/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view/iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view%2Fiterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view/iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view/iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view%2Fiterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view/iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view/iterator/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view%2Fiterator%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view/iterator/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/elements_view/iterator/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Felements_view%2Fiterator%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/elements_view/iterator/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/basic_istream_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fbasic_istream_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/basic_istream_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_view/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_view%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_view/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_view/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_view%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_view/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_view/adjacent_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_view%2Fadjacent_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_view/adjacent_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_view/sentinel/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_view%2Fsentinel%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_view/sentinel/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_view/sentinel/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_view%2Fsentinel%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_view/sentinel/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_view/sentinel/operator-.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_view%2Fsentinel%2Foperator-.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_view/sentinel/operator-` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_view/iterator/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_view%2Fiterator%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_view/iterator/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_view/iterator/iter_move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_view%2Fiterator%2Fiter_move.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_view/iterator/iter_move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_view/iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_view%2Fiterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_view/iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_view/iterator/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_view%2Fiterator%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_view/iterator/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_view/iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_view%2Fiterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_view/iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_view/iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_view%2Fiterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_view/iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_view/iterator/iter_swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_view%2Fiterator%2Fiter_swap.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_view/iterator/iter_swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_view/iterator/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_view%2Fiterator%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_view/iterator/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_view/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_view%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_view/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_view/join_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_view%2Fjoin_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_view/join_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_view/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_view%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_view/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_view/sentinel/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_view%2Fsentinel%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_view/sentinel/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_view/sentinel/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_view%2Fsentinel%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_view/sentinel/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_view/iterator/satisfy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_view%2Fiterator%2Fsatisfy.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_view/iterator/satisfy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_view/iterator/iter_move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_view%2Fiterator%2Fiter_move.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_view/iterator/iter_move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_view/iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_view%2Fiterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_view/iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_view/iterator/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_view%2Fiterator%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_view/iterator/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_view/iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_view%2Fiterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_view/iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_view/iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_view%2Fiterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_view/iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_view/iterator/iter_swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_view%2Fiterator%2Fiter_swap.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_view/iterator/iter_swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/slide_view/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fslide_view%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/slide_view/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/slide_view/slide_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fslide_view%2Fslide_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/slide_view/slide_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/slide_view/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fslide_view%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/slide_view/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/slide_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fslide_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/slide_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/slide_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fslide_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/slide_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/slide_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fslide_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/slide_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/slide_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fslide_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/slide_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/slide_view/sentinel/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fslide_view%2Fsentinel%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/slide_view/sentinel/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/slide_view/sentinel/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fslide_view%2Fsentinel%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/slide_view/sentinel/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/slide_view/sentinel/operator-.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fslide_view%2Fsentinel%2Foperator-.html&labels=migrate-cppref-page) | `cpp/library/ranges/slide_view/sentinel/operator-` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/slide_view/iterator/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fslide_view%2Fiterator%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/ranges/slide_view/iterator/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/slide_view/iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fslide_view%2Fiterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/ranges/slide_view/iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/slide_view/iterator/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fslide_view%2Fiterator%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/slide_view/iterator/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/slide_view/iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fslide_view%2Fiterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/ranges/slide_view/iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/slide_view/iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fslide_view%2Fiterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/slide_view/iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/slide_view/iterator/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fslide_view%2Fiterator%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/ranges/slide_view/iterator/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_transform_view/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_transform_view%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_transform_view/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_transform_view/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_transform_view%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_transform_view/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_transform_view/adjacent_transform_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_transform_view%2Fadjacent_transform_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_transform_view/adjacent_transform_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_transform_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_transform_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_transform_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_transform_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_transform_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_transform_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_transform_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_transform_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_transform_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_transform_view/sentinel/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_transform_view%2Fsentinel%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_transform_view/sentinel/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_transform_view/sentinel/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_transform_view%2Fsentinel%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_transform_view/sentinel/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_transform_view/sentinel/operator-.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_transform_view%2Fsentinel%2Foperator-.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_transform_view/sentinel/operator-` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_transform_view/iterator/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_transform_view%2Fiterator%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_transform_view/iterator/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_transform_view/iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_transform_view%2Fiterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_transform_view/iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_transform_view/iterator/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_transform_view%2Fiterator%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_transform_view/iterator/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_transform_view/iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_transform_view%2Fiterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_transform_view/iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_transform_view/iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_transform_view%2Fiterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_transform_view/iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/adjacent_transform_view/iterator/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fadjacent_transform_view%2Fiterator%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/ranges/adjacent_transform_view/iterator/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cartesian_product_view/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcartesian_product_view%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/cartesian_product_view/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cartesian_product_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcartesian_product_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/cartesian_product_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cartesian_product_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcartesian_product_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/cartesian_product_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cartesian_product_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcartesian_product_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/cartesian_product_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cartesian_product_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcartesian_product_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/cartesian_product_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cartesian_product_view/cartesian_product_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcartesian_product_view%2Fcartesian_product_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/cartesian_product_view/cartesian_product_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cartesian_product_view/iterator/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcartesian_product_view%2Fiterator%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/ranges/cartesian_product_view/iterator/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cartesian_product_view/iterator/helpers.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcartesian_product_view%2Fiterator%2Fhelpers.html&labels=migrate-cppref-page) | `cpp/library/ranges/cartesian_product_view/iterator/helpers` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cartesian_product_view/iterator/iter_move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcartesian_product_view%2Fiterator%2Fiter_move.html&labels=migrate-cppref-page) | `cpp/library/ranges/cartesian_product_view/iterator/iter_move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cartesian_product_view/iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcartesian_product_view%2Fiterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/ranges/cartesian_product_view/iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cartesian_product_view/iterator/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcartesian_product_view%2Fiterator%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/cartesian_product_view/iterator/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cartesian_product_view/iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcartesian_product_view%2Fiterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/ranges/cartesian_product_view/iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cartesian_product_view/iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcartesian_product_view%2Fiterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/cartesian_product_view/iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cartesian_product_view/iterator/iter_swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcartesian_product_view%2Fiterator%2Fiter_swap.html&labels=migrate-cppref-page) | `cpp/library/ranges/cartesian_product_view/iterator/iter_swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/cartesian_product_view/iterator/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcartesian_product_view%2Fiterator%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/ranges/cartesian_product_view/iterator/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/concat_view/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fconcat_view%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/concat_view/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/concat_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fconcat_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/concat_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/concat_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fconcat_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/concat_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/concat_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fconcat_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/concat_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/concat_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fconcat_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/concat_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/concat_view/concat_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fconcat_view%2Fconcat_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/concat_view/concat_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/concat_view/iterator/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fconcat_view%2Fiterator%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/ranges/concat_view/iterator/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/concat_view/iterator/helpers.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fconcat_view%2Fiterator%2Fhelpers.html&labels=migrate-cppref-page) | `cpp/library/ranges/concat_view/iterator/helpers` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/concat_view/iterator/iter_move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fconcat_view%2Fiterator%2Fiter_move.html&labels=migrate-cppref-page) | `cpp/library/ranges/concat_view/iterator/iter_move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/concat_view/iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fconcat_view%2Fiterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/ranges/concat_view/iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/concat_view/iterator/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fconcat_view%2Fiterator%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/concat_view/iterator/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/concat_view/iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fconcat_view%2Fiterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/ranges/concat_view/iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/concat_view/iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fconcat_view%2Fiterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/concat_view/iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/concat_view/iterator/iter_swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fconcat_view%2Fiterator%2Fiter_swap.html&labels=migrate-cppref-page) | `cpp/library/ranges/concat_view/iterator/iter_swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/concat_view/iterator/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fconcat_view%2Fiterator%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/ranges/concat_view/iterator/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/subrange/subrange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsubrange%2Fsubrange.html&labels=migrate-cppref-page) | `cpp/library/ranges/subrange/subrange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/subrange/prev.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsubrange%2Fprev.html&labels=migrate-cppref-page) | `cpp/library/ranges/subrange/prev` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/subrange/next.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsubrange%2Fnext.html&labels=migrate-cppref-page) | `cpp/library/ranges/subrange/next` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/subrange/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsubrange%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/ranges/subrange/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/subrange/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsubrange%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/subrange/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/subrange/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsubrange%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/subrange/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/subrange/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsubrange%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/subrange/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/subrange/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsubrange%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/subrange/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/subrange/tuple_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsubrange%2Ftuple_size.html&labels=migrate-cppref-page) | `cpp/library/ranges/subrange/tuple_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/subrange/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsubrange%2Fget.html&labels=migrate-cppref-page) | `cpp/library/ranges/subrange/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/subrange/operator_PairLike.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsubrange%2Foperator_PairLike.html&labels=migrate-cppref-page) | `cpp/library/ranges/subrange/operator_PairLike` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/subrange/tuple_element.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsubrange%2Ftuple_element.html&labels=migrate-cppref-page) | `cpp/library/ranges/subrange/tuple_element` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/subrange/advance.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsubrange%2Fadvance.html&labels=migrate-cppref-page) | `cpp/library/ranges/subrange/advance` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/transform_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Ftransform_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/transform_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/sentinel/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fsentinel%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/sentinel/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/sentinel/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fsentinel%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/sentinel/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/sentinel/operator-.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fsentinel%2Foperator-.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/sentinel/operator-` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/sentinel/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fsentinel%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/sentinel/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/iterator/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fiterator%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/iterator/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/iterator/iter_move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fiterator%2Fiter_move.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/iterator/iter_move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fiterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/iterator/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fiterator%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/iterator/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fiterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fiterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/iterator/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fiterator%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/iterator/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/transform_view/iterator/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftransform_view%2Fiterator%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/transform_view/iterator/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/drop_view/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fdrop_view%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/drop_view/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/drop_view/drop_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fdrop_view%2Fdrop_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/drop_view/drop_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/drop_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fdrop_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/drop_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/drop_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fdrop_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/drop_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/drop_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fdrop_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/drop_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/drop_view/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fdrop_view%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/drop_view/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/drop_while_view/drop_while_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fdrop_while_view%2Fdrop_while_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/drop_while_view/drop_while_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/drop_while_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fdrop_while_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/drop_while_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/drop_while_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fdrop_while_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/drop_while_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/drop_while_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fdrop_while_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/drop_while_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/drop_while_view/pred.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fdrop_while_view%2Fpred.html&labels=migrate-cppref-page) | `cpp/library/ranges/drop_while_view/pred` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/drop_while_view/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fdrop_while_view%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/drop_while_view/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/chunk_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fchunk_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/chunk_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/inner_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Finner_iterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/inner_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/outer_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fouter_iterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/outer_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/outer_iterator/value_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fouter_iterator%2Fvalue_type.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/outer_iterator/value_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/outer_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fouter_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/outer_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/outer_iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fouter_iterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/outer_iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/outer_iterator/outer_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fouter_iterator%2Fouter_iterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/outer_iterator/outer_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/outer_iterator/operator-.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fouter_iterator%2Foperator-.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/outer_iterator/operator-` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/outer_iterator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fouter_iterator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/outer_iterator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/outer_iterator/operator_inc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fouter_iterator%2Foperator_inc.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/outer_iterator/operator_inc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/iterator/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fiterator%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/iterator/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fiterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/iterator/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fiterator%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/iterator/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fiterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fiterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/iterator/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fiterator%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/iterator/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/iterator/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Fiterator%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/iterator/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/inner_iterator/inner_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Finner_iterator%2Finner_iterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/inner_iterator/inner_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/inner_iterator/iter_move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Finner_iterator%2Fiter_move.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/inner_iterator/iter_move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/inner_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Finner_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/inner_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/inner_iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Finner_iterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/inner_iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/inner_iterator/iter_swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Finner_iterator%2Fiter_swap.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/inner_iterator/iter_swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/inner_iterator/operator-.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Finner_iterator%2Foperator-.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/inner_iterator/operator-` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/inner_iterator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Finner_iterator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/inner_iterator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/inner_iterator/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Finner_iterator%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/inner_iterator/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_view/inner_iterator/operator_inc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_view%2Finner_iterator%2Foperator_inc.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_view/inner_iterator/operator_inc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/view_interface/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fview_interface%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/ranges/view_interface/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/view_interface/back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fview_interface%2Fback.html&labels=migrate-cppref-page) | `cpp/library/ranges/view_interface/back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/view_interface/cend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fview_interface%2Fcend.html&labels=migrate-cppref-page) | `cpp/library/ranges/view_interface/cend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/view_interface/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fview_interface%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/ranges/view_interface/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/view_interface/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fview_interface%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/view_interface/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/view_interface/cbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fview_interface%2Fcbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/view_interface/cbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/view_interface/front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fview_interface%2Ffront.html&labels=migrate-cppref-page) | `cpp/library/ranges/view_interface/front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/view_interface/operator_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fview_interface%2Foperator_bool.html&labels=migrate-cppref-page) | `cpp/library/ranges/view_interface/operator_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/view_interface/data.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fview_interface%2Fdata.html&labels=migrate-cppref-page) | `cpp/library/ranges/view_interface/data` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_with_view/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_with_view%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_with_view/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_with_view/join_with_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_with_view%2Fjoin_with_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_with_view/join_with_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_with_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_with_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_with_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_with_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_with_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_with_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_with_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_with_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_with_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_with_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_with_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_with_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_with_view/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_with_view%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_with_view/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_with_view/sentinel/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_with_view%2Fsentinel%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_with_view/sentinel/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_with_view/sentinel/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_with_view%2Fsentinel%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_with_view/sentinel/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_with_view/iterator/iter_move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_with_view%2Fiterator%2Fiter_move.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_with_view/iterator/iter_move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_with_view/iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_with_view%2Fiterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_with_view/iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_with_view/iterator/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_with_view%2Fiterator%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_with_view/iterator/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_with_view/iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_with_view%2Fiterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_with_view/iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_with_view/iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_with_view%2Fiterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_with_view/iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/join_with_view/iterator/iter_swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fjoin_with_view%2Fiterator%2Fiter_swap.html&labels=migrate-cppref-page) | `cpp/library/ranges/join_with_view/iterator/iter_swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_while_view/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_while_view%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_while_view/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_while_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_while_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_while_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_while_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_while_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_while_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_while_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_while_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_while_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_while_view/pred.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_while_view%2Fpred.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_while_view/pred` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_while_view/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_while_view%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_while_view/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_while_view/take_while_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_while_view%2Ftake_while_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_while_view/take_while_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_while_view/sentinel/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_while_view%2Fsentinel%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_while_view/sentinel/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_while_view/sentinel/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_while_view%2Fsentinel%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_while_view/sentinel/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/take_while_view/sentinel/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ftake_while_view%2Fsentinel%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/take_while_view/sentinel/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/repeat_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Frepeat_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/repeat_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/iota_view/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fiota_view%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/iota_view/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/iota_view/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fiota_view%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/ranges/iota_view/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/iota_view/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fiota_view%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/iota_view/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/iota_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fiota_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/iota_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/iota_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fiota_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/iota_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/iota_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fiota_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/iota_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/iota_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fiota_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/iota_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/iota_view/iota_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fiota_view%2Fiota_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/iota_view/iota_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/enumerate_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fenumerate_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/enumerate_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/sentinel/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fsentinel%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/sentinel/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/sentinel/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fsentinel%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/sentinel/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/sentinel/operator-.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fsentinel%2Foperator-.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/sentinel/operator-` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/sentinel/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fsentinel%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/sentinel/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/iterator/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fiterator%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/iterator/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/iterator/index.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fiterator%2Findex.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/iterator/index` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/iterator/iter_move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fiterator%2Fiter_move.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/iterator/iter_move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fiterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/iterator/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fiterator%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/iterator/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fiterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fiterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/iterator/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fiterator%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/iterator/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/enumerate_view/iterator/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fenumerate_view%2Fiterator%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/enumerate_view/iterator/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_by_view/helpers.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_by_view%2Fhelpers.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_by_view/helpers` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_by_view/chunk_by_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_by_view%2Fchunk_by_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_by_view/chunk_by_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_by_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_by_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_by_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_by_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_by_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_by_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_by_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_by_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_by_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_by_view/pred.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_by_view%2Fpred.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_by_view/pred` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_by_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_by_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_by_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_by_view/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_by_view%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_by_view/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_by_view/iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_by_view%2Fiterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_by_view/iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_by_view/iterator/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_by_view%2Fiterator%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_by_view/iterator/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_by_view/iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_by_view%2Fiterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_by_view/iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/chunk_by_view/iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fchunk_by_view%2Fiterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/chunk_by_view/iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_transform_view/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_transform_view%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_transform_view/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_transform_view/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_transform_view%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_transform_view/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_transform_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_transform_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_transform_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_transform_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_transform_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_transform_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_transform_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_transform_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_transform_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_transform_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_transform_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_transform_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_transform_view/zip_transform_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_transform_view%2Fzip_transform_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_transform_view/zip_transform_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_transform_view/sentinel/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_transform_view%2Fsentinel%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_transform_view/sentinel/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_transform_view/sentinel/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_transform_view%2Fsentinel%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_transform_view/sentinel/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_transform_view/sentinel/operator-.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_transform_view%2Fsentinel%2Foperator-.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_transform_view/sentinel/operator-` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_transform_view/iterator/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_transform_view%2Fiterator%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_transform_view/iterator/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_transform_view/iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_transform_view%2Fiterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_transform_view/iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_transform_view/iterator/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_transform_view%2Fiterator%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_transform_view/iterator/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_transform_view/iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_transform_view%2Fiterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_transform_view/iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_transform_view/iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_transform_view%2Fiterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_transform_view/iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/zip_transform_view/iterator/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fzip_transform_view%2Fiterator%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/ranges/zip_transform_view/iterator/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/lazy_split_view/lazy_split_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Flazy_split_view%2Flazy_split_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/lazy_split_view/lazy_split_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/lazy_split_view/value_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Flazy_split_view%2Fvalue_type.html&labels=migrate-cppref-page) | `cpp/library/ranges/lazy_split_view/value_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/lazy_split_view/inner_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Flazy_split_view%2Finner_iterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/lazy_split_view/inner_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/lazy_split_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Flazy_split_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/lazy_split_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/lazy_split_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Flazy_split_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/lazy_split_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/lazy_split_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Flazy_split_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/lazy_split_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/lazy_split_view/outer_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Flazy_split_view%2Fouter_iterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/lazy_split_view/outer_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/lazy_split_view/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Flazy_split_view%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/lazy_split_view/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/common_view/common_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcommon_view%2Fcommon_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/common_view/common_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/common_view/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcommon_view%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/common_view/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/common_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcommon_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/common_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/common_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcommon_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/common_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/common_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcommon_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/common_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/common_view/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fcommon_view%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/common_view/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/stride_view/stride.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fstride_view%2Fstride.html&labels=migrate-cppref-page) | `cpp/library/ranges/stride_view/stride` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/stride_view/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fstride_view%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/ranges/stride_view/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/stride_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fstride_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/stride_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/stride_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fstride_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/stride_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/stride_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fstride_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/stride_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/stride_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fstride_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/stride_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/stride_view/stride_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fstride_view%2Fstride_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/stride_view/stride_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/stride_view/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fstride_view%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/stride_view/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/stride_view/iterator/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fstride_view%2Fiterator%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/ranges/stride_view/iterator/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/stride_view/iterator/iter_move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fstride_view%2Fiterator%2Fiter_move.html&labels=migrate-cppref-page) | `cpp/library/ranges/stride_view/iterator/iter_move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/stride_view/iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fstride_view%2Fiterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/ranges/stride_view/iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/stride_view/iterator/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fstride_view%2Fiterator%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/stride_view/iterator/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/stride_view/iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fstride_view%2Fiterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/ranges/stride_view/iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/stride_view/iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fstride_view%2Fiterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/ranges/stride_view/iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/stride_view/iterator/iter_swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fstride_view%2Fiterator%2Fiter_swap.html&labels=migrate-cppref-page) | `cpp/library/ranges/stride_view/iterator/iter_swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/stride_view/iterator/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fstride_view%2Fiterator%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/ranges/stride_view/iterator/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/stride_view/iterator/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fstride_view%2Fiterator%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/stride_view/iterator/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/split_view/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsplit_view%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/split_view/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/split_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsplit_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/split_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/split_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsplit_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/split_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/split_view/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsplit_view%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/ranges/split_view/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/split_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsplit_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/split_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/split_view/split_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsplit_view%2Fsplit_view.html&labels=migrate-cppref-page) | `cpp/library/ranges/split_view/split_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/split_view/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsplit_view%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/ranges/split_view/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/split_view/find_next.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Fsplit_view%2Ffind_next.html&labels=migrate-cppref-page) | `cpp/library/ranges/split_view/find_next` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/filter_view/sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ffilter_view%2Fsentinel.html&labels=migrate-cppref-page) | `cpp/library/ranges/filter_view/sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/ranges/filter_view/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Franges%2Ffilter_view%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/filter_view/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/mergeable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmergeable.html&labels=migrate-cppref-page) | `cpp/library/iterator/mergeable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/default_sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fdefault_sentinel.html&labels=migrate-cppref-page) | `cpp/library/iterator/default_sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/indirect_result_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Findirect_result_t.html&labels=migrate-cppref-page) | `cpp/library/iterator/indirect_result_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/const_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fconst_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/const_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/ostreambuf_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fostreambuf_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/ostreambuf_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/basic_const_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fbasic_const_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/basic_const_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/move_sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmove_sentinel.html&labels=migrate-cppref-page) | `cpp/library/iterator/move_sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/istream_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fistream_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/istream_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/sentinel_for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fsentinel_for.html&labels=migrate-cppref-page) | `cpp/library/iterator/sentinel_for` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/front_insert_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Ffront_insert_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/front_insert_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/prev.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fprev.html&labels=migrate-cppref-page) | `cpp/library/iterator/prev` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/bidirectional_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fbidirectional_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/bidirectional_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/next.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fnext.html&labels=migrate-cppref-page) | `cpp/library/iterator/next` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/default_sentinel_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fdefault_sentinel_t.html&labels=migrate-cppref-page) | `cpp/library/iterator/default_sentinel_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/iterator/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/back_inserter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fback_inserter.html&labels=migrate-cppref-page) | `cpp/library/iterator/back_inserter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/projected.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fprojected.html&labels=migrate-cppref-page) | `cpp/library/iterator/projected` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/incrementable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fincrementable.html&labels=migrate-cppref-page) | `cpp/library/iterator/incrementable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/iterator/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/indirectly_copyable_storable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Findirectly_copyable_storable.html&labels=migrate-cppref-page) | `cpp/library/iterator/indirectly_copyable_storable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/is-integer-like.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fis-integer-like.html&labels=migrate-cppref-page) | `cpp/library/iterator/is-integer-like` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/contiguous_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcontiguous_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/contiguous_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/back_insert_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fback_insert_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/back_insert_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/indirectly_swappable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Findirectly_swappable.html&labels=migrate-cppref-page) | `cpp/library/iterator/indirectly_swappable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/const_sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fconst_sentinel.html&labels=migrate-cppref-page) | `cpp/library/iterator/const_sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/indirect_unary_predicate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Findirect_unary_predicate.html&labels=migrate-cppref-page) | `cpp/library/iterator/indirect_unary_predicate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/output_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Foutput_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/output_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fend.html&labels=migrate-cppref-page) | `cpp/library/iterator/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Frend.html&labels=migrate-cppref-page) | `cpp/library/iterator/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/make_move_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmake_move_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/make_move_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/iterator/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/indirect_equivalence_relation.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Findirect_equivalence_relation.html&labels=migrate-cppref-page) | `cpp/library/iterator/indirect_equivalence_relation` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/input_or_output_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Finput_or_output_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/input_or_output_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/reverse_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Freverse_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/reverse_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/ostream_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fostream_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/ostream_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/unreachable_sentinel_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Funreachable_sentinel_t.html&labels=migrate-cppref-page) | `cpp/library/iterator/unreachable_sentinel_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/iter_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fiter_t.html&labels=migrate-cppref-page) | `cpp/library/iterator/iter_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/indirectly_movable_storable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Findirectly_movable_storable.html&labels=migrate-cppref-page) | `cpp/library/iterator/indirectly_movable_storable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/forward_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fforward_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/forward_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/indirectly_readable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Findirectly_readable.html&labels=migrate-cppref-page) | `cpp/library/iterator/indirectly_readable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/iterator/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/sized_sentinel_for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fsized_sentinel_for.html&labels=migrate-cppref-page) | `cpp/library/iterator/sized_sentinel_for` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/indirectly_writable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Findirectly_writable.html&labels=migrate-cppref-page) | `cpp/library/iterator/indirectly_writable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/make_const_sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmake_const_sentinel.html&labels=migrate-cppref-page) | `cpp/library/iterator/make_const_sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/indirectly_readable_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Findirectly_readable_traits.html&labels=migrate-cppref-page) | `cpp/library/iterator/indirectly_readable_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/projected_value_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fprojected_value_t.html&labels=migrate-cppref-page) | `cpp/library/iterator/projected_value_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/iterator_tags.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fiterator_tags.html&labels=migrate-cppref-page) | `cpp/library/iterator/iterator_tags` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/indirectly_unary_invocable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Findirectly_unary_invocable.html&labels=migrate-cppref-page) | `cpp/library/iterator/indirectly_unary_invocable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/indirect_strict_weak_order.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Findirect_strict_weak_order.html&labels=migrate-cppref-page) | `cpp/library/iterator/indirect_strict_weak_order` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/incrementable_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fincrementable_traits.html&labels=migrate-cppref-page) | `cpp/library/iterator/incrementable_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/indirectly_comparable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Findirectly_comparable.html&labels=migrate-cppref-page) | `cpp/library/iterator/indirectly_comparable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/indirectly_copyable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Findirectly_copyable.html&labels=migrate-cppref-page) | `cpp/library/iterator/indirectly_copyable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/input_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Finput_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/input_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/indirectly_movable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Findirectly_movable.html&labels=migrate-cppref-page) | `cpp/library/iterator/indirectly_movable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/front_inserter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Ffront_inserter.html&labels=migrate-cppref-page) | `cpp/library/iterator/front_inserter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/insert_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Finsert_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/insert_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/iterator_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fiterator_traits.html&labels=migrate-cppref-page) | `cpp/library/iterator/iterator_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/istreambuf_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fistreambuf_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/istreambuf_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/distance.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fdistance.html&labels=migrate-cppref-page) | `cpp/library/iterator/distance` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/counted_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcounted_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/counted_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/make_reverse_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmake_reverse_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/make_reverse_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/common_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcommon_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/common_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/indirect_binary_predicate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Findirect_binary_predicate.html&labels=migrate-cppref-page) | `cpp/library/iterator/indirect_binary_predicate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/data.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fdata.html&labels=migrate-cppref-page) | `cpp/library/iterator/data` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/random_access_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Frandom_access_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/random_access_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/sortable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fsortable.html&labels=migrate-cppref-page) | `cpp/library/iterator/sortable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/move_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmove_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/move_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/weakly_incrementable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fweakly_incrementable.html&labels=migrate-cppref-page) | `cpp/library/iterator/weakly_incrementable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/permutable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fpermutable.html&labels=migrate-cppref-page) | `cpp/library/iterator/permutable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/advance.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fadvance.html&labels=migrate-cppref-page) | `cpp/library/iterator/advance` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/make_const_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmake_const_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/make_const_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/inserter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Finserter.html&labels=migrate-cppref-page) | `cpp/library/iterator/inserter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/move_sentinel/move_sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmove_sentinel%2Fmove_sentinel.html&labels=migrate-cppref-page) | `cpp/library/iterator/move_sentinel/move_sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/move_sentinel/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmove_sentinel%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/iterator/move_sentinel/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/move_sentinel/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmove_sentinel%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/iterator/move_sentinel/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/ostreambuf_iterator/ostreambuf_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fostreambuf_iterator%2Fostreambuf_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/ostreambuf_iterator/ostreambuf_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/ostreambuf_iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fostreambuf_iterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/iterator/ostreambuf_iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/ostreambuf_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fostreambuf_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/iterator/ostreambuf_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/ostreambuf_iterator/failed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fostreambuf_iterator%2Ffailed.html&labels=migrate-cppref-page) | `cpp/library/iterator/ostreambuf_iterator/failed` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/ostreambuf_iterator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fostreambuf_iterator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/iterator/ostreambuf_iterator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/counted_iterator/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcounted_iterator%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/iterator/counted_iterator/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/counted_iterator/iter_move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcounted_iterator%2Fiter_move.html&labels=migrate-cppref-page) | `cpp/library/iterator/counted_iterator/iter_move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/counted_iterator/operator_cmp2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcounted_iterator%2Foperator_cmp2.html&labels=migrate-cppref-page) | `cpp/library/iterator/counted_iterator/operator_cmp2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/counted_iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcounted_iterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/iterator/counted_iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/counted_iterator/operator+.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcounted_iterator%2Foperator%2B.html&labels=migrate-cppref-page) | `cpp/library/iterator/counted_iterator/operator+` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/counted_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcounted_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/iterator/counted_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/counted_iterator/count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcounted_iterator%2Fcount.html&labels=migrate-cppref-page) | `cpp/library/iterator/counted_iterator/count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/counted_iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcounted_iterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/iterator/counted_iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/counted_iterator/iter_swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcounted_iterator%2Fiter_swap.html&labels=migrate-cppref-page) | `cpp/library/iterator/counted_iterator/iter_swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/counted_iterator/iterator_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcounted_iterator%2Fiterator_traits.html&labels=migrate-cppref-page) | `cpp/library/iterator/counted_iterator/iterator_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/counted_iterator/operator-.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcounted_iterator%2Foperator-.html&labels=migrate-cppref-page) | `cpp/library/iterator/counted_iterator/operator-` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/counted_iterator/counted_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcounted_iterator%2Fcounted_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/counted_iterator/counted_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/counted_iterator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcounted_iterator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/iterator/counted_iterator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/counted_iterator/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcounted_iterator%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/iterator/counted_iterator/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/counted_iterator/operator-2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcounted_iterator%2Foperator-2.html&labels=migrate-cppref-page) | `cpp/library/iterator/counted_iterator/operator-2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/back_insert_iterator/back_insert_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fback_insert_iterator%2Fback_insert_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/back_insert_iterator/back_insert_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/back_insert_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fback_insert_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/iterator/back_insert_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/back_insert_iterator/operator++.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fback_insert_iterator%2Foperator%2B%2B.html&labels=migrate-cppref-page) | `cpp/library/iterator/back_insert_iterator/operator++` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/back_insert_iterator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fback_insert_iterator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/iterator/back_insert_iterator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/ranges/prev.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Franges%2Fprev.html&labels=migrate-cppref-page) | `cpp/library/iterator/ranges/prev` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/ranges/next.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Franges%2Fnext.html&labels=migrate-cppref-page) | `cpp/library/iterator/ranges/next` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/ranges/iter_move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Franges%2Fiter_move.html&labels=migrate-cppref-page) | `cpp/library/iterator/ranges/iter_move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/ranges/iter_swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Franges%2Fiter_swap.html&labels=migrate-cppref-page) | `cpp/library/iterator/ranges/iter_swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/ranges/distance.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Franges%2Fdistance.html&labels=migrate-cppref-page) | `cpp/library/iterator/ranges/distance` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/ranges/advance.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Franges%2Fadvance.html&labels=migrate-cppref-page) | `cpp/library/iterator/ranges/advance` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/front_insert_iterator/front_insert_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Ffront_insert_iterator%2Ffront_insert_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/front_insert_iterator/front_insert_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/front_insert_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Ffront_insert_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/iterator/front_insert_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/front_insert_iterator/operator++.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Ffront_insert_iterator%2Foperator%2B%2B.html&labels=migrate-cppref-page) | `cpp/library/iterator/front_insert_iterator/operator++` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/front_insert_iterator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Ffront_insert_iterator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/iterator/front_insert_iterator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Freverse_iterator%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/iterator/reverse_iterator/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/reverse_iterator/iter_move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Freverse_iterator%2Fiter_move.html&labels=migrate-cppref-page) | `cpp/library/iterator/reverse_iterator/iter_move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/reverse_iterator/reverse_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Freverse_iterator%2Freverse_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/reverse_iterator/reverse_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Freverse_iterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/iterator/reverse_iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator+.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Freverse_iterator%2Foperator%2B.html&labels=migrate-cppref-page) | `cpp/library/iterator/reverse_iterator/operator+` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Freverse_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/iterator/reverse_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Freverse_iterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/iterator/reverse_iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/reverse_iterator/iter_swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Freverse_iterator%2Fiter_swap.html&labels=migrate-cppref-page) | `cpp/library/iterator/reverse_iterator/iter_swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator-.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Freverse_iterator%2Foperator-.html&labels=migrate-cppref-page) | `cpp/library/iterator/reverse_iterator/operator-` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Freverse_iterator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/iterator/reverse_iterator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/reverse_iterator/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Freverse_iterator%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/iterator/reverse_iterator/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/basic_const_iterator/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fbasic_const_iterator%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/iterator/basic_const_iterator/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/basic_const_iterator/basic_const_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fbasic_const_iterator%2Fbasic_const_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/basic_const_iterator/basic_const_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/basic_const_iterator/iter_move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fbasic_const_iterator%2Fiter_move.html&labels=migrate-cppref-page) | `cpp/library/iterator/basic_const_iterator/iter_move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/basic_const_iterator/operator_cmp2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fbasic_const_iterator%2Foperator_cmp2.html&labels=migrate-cppref-page) | `cpp/library/iterator/basic_const_iterator/operator_cmp2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/basic_const_iterator/operator_constant_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fbasic_const_iterator%2Foperator_constant_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/basic_const_iterator/operator_constant_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/basic_const_iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fbasic_const_iterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/iterator/basic_const_iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/basic_const_iterator/common_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fbasic_const_iterator%2Fcommon_type.html&labels=migrate-cppref-page) | `cpp/library/iterator/basic_const_iterator/common_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/basic_const_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fbasic_const_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/iterator/basic_const_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/basic_const_iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fbasic_const_iterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/iterator/basic_const_iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/basic_const_iterator/operator-.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fbasic_const_iterator%2Foperator-.html&labels=migrate-cppref-page) | `cpp/library/iterator/basic_const_iterator/operator-` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/basic_const_iterator/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fbasic_const_iterator%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/iterator/basic_const_iterator/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/basic_const_iterator/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fbasic_const_iterator%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/iterator/basic_const_iterator/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/common_iterator/iter_move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcommon_iterator%2Fiter_move.html&labels=migrate-cppref-page) | `cpp/library/iterator/common_iterator/iter_move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/common_iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcommon_iterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/iterator/common_iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/common_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcommon_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/iterator/common_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/common_iterator/incrementable_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcommon_iterator%2Fincrementable_traits.html&labels=migrate-cppref-page) | `cpp/library/iterator/common_iterator/incrementable_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/common_iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcommon_iterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/iterator/common_iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/common_iterator/iter_swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcommon_iterator%2Fiter_swap.html&labels=migrate-cppref-page) | `cpp/library/iterator/common_iterator/iter_swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/common_iterator/iterator_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcommon_iterator%2Fiterator_traits.html&labels=migrate-cppref-page) | `cpp/library/iterator/common_iterator/iterator_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/common_iterator/operator-.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcommon_iterator%2Foperator-.html&labels=migrate-cppref-page) | `cpp/library/iterator/common_iterator/operator-` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/common_iterator/common_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcommon_iterator%2Fcommon_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/common_iterator/common_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/common_iterator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fcommon_iterator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/iterator/common_iterator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/ostream_iterator/~ostream_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fostream_iterator%2F~ostream_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/ostream_iterator/~ostream_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/ostream_iterator/ostream_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fostream_iterator%2Fostream_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/ostream_iterator/ostream_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/ostream_iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fostream_iterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/iterator/ostream_iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/ostream_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fostream_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/iterator/ostream_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/ostream_iterator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fostream_iterator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/iterator/ostream_iterator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/istream_iterator/istream_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fistream_iterator%2Fistream_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/istream_iterator/istream_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/istream_iterator/~istream_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fistream_iterator%2F~istream_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/istream_iterator/~istream_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/istream_iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fistream_iterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/iterator/istream_iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/istream_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fistream_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/iterator/istream_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/istream_iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fistream_iterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/iterator/istream_iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/insert_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Finsert_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/iterator/insert_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/insert_iterator/insert_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Finsert_iterator%2Finsert_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/insert_iterator/insert_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/insert_iterator/operator++.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Finsert_iterator%2Foperator%2B%2B.html&labels=migrate-cppref-page) | `cpp/library/iterator/insert_iterator/operator++` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/insert_iterator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Finsert_iterator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/iterator/insert_iterator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/move_iterator/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmove_iterator%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/iterator/move_iterator/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/move_iterator/iter_move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmove_iterator%2Fiter_move.html&labels=migrate-cppref-page) | `cpp/library/iterator/move_iterator/iter_move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/move_iterator/operator_cmp2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmove_iterator%2Foperator_cmp2.html&labels=migrate-cppref-page) | `cpp/library/iterator/move_iterator/operator_cmp2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/move_iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmove_iterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/iterator/move_iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/move_iterator/operator+.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmove_iterator%2Foperator%2B.html&labels=migrate-cppref-page) | `cpp/library/iterator/move_iterator/operator+` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/move_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmove_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/iterator/move_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/move_iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmove_iterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/iterator/move_iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/move_iterator/iter_swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmove_iterator%2Fiter_swap.html&labels=migrate-cppref-page) | `cpp/library/iterator/move_iterator/iter_swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/move_iterator/operator-.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmove_iterator%2Foperator-.html&labels=migrate-cppref-page) | `cpp/library/iterator/move_iterator/operator-` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/move_iterator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmove_iterator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/iterator/move_iterator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/move_iterator/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmove_iterator%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/iterator/move_iterator/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/move_iterator/move_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmove_iterator%2Fmove_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/move_iterator/move_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/move_iterator/operator-2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fmove_iterator%2Foperator-2.html&labels=migrate-cppref-page) | `cpp/library/iterator/move_iterator/operator-2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/istreambuf_iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fistreambuf_iterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/iterator/istreambuf_iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/istreambuf_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fistreambuf_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/iterator/istreambuf_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/istreambuf_iterator/equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fistreambuf_iterator%2Fequal.html&labels=migrate-cppref-page) | `cpp/library/iterator/istreambuf_iterator/equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/istreambuf_iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fistreambuf_iterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/iterator/istreambuf_iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/iterator/istreambuf_iterator/istreambuf_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fiterator%2Fistreambuf_iterator%2Fistreambuf_iterator.html&labels=migrate-cppref-page) | `cpp/library/iterator/istreambuf_iterator/istreambuf_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/standard_library/decay-copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstandard_library%2Fdecay-copy.html&labels=migrate-cppref-page) | `cpp/library/standard_library/decay-copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/standard_library/synth-three-way.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fstandard_library%2Fsynth-three-way.html&labels=migrate-cppref-page) | `cpp/library/standard_library/synth-three-way` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/links/libs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flinks%2Flibs.html&labels=migrate-cppref-page) | `cpp/library/links/libs` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/voidify.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fvoidify.html&labels=migrate-cppref-page) | `cpp/library/memory/voidify` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/auto_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fauto_ptr.html&labels=migrate-cppref-page) | `cpp/library/memory/auto_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/uses_allocator_construction_args.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fuses_allocator_construction_args.html&labels=migrate-cppref-page) | `cpp/library/memory/uses_allocator_construction_args` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/uninitialized_value_construct_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funinitialized_value_construct_n.html&labels=migrate-cppref-page) | `cpp/library/memory/uninitialized_value_construct_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/owner_less_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fowner_less_void.html&labels=migrate-cppref-page) | `cpp/library/memory/owner_less_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/set_default_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fset_default_resource.html&labels=migrate-cppref-page) | `cpp/library/memory/set_default_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/uninitialized_construct_using_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funinitialized_construct_using_allocator.html&labels=migrate-cppref-page) | `cpp/library/memory/uninitialized_construct_using_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/owner_less.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fowner_less.html&labels=migrate-cppref-page) | `cpp/library/memory/owner_less` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fscoped_allocator_adaptor.html&labels=migrate-cppref-page) | `cpp/library/memory/scoped_allocator_adaptor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/get_default_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fget_default_resource.html&labels=migrate-cppref-page) | `cpp/library/memory/get_default_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/polymorphic_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpolymorphic_allocator.html&labels=migrate-cppref-page) | `cpp/library/memory/polymorphic_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/raw_storage_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fraw_storage_iterator.html&labels=migrate-cppref-page) | `cpp/library/memory/raw_storage_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/uninitialized_move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funinitialized_move.html&labels=migrate-cppref-page) | `cpp/library/memory/uninitialized_move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/monotonic_buffer_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fmonotonic_buffer_resource.html&labels=migrate-cppref-page) | `cpp/library/memory/monotonic_buffer_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/addressof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Faddressof.html&labels=migrate-cppref-page) | `cpp/library/memory/addressof` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/pool_options.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpool_options.html&labels=migrate-cppref-page) | `cpp/library/memory/pool_options` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/bad_weak_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fbad_weak_ptr.html&labels=migrate-cppref-page) | `cpp/library/memory/bad_weak_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/uninitialized_move_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funinitialized_move_n.html&labels=migrate-cppref-page) | `cpp/library/memory/uninitialized_move_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unsynchronized_pool_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funsynchronized_pool_resource.html&labels=migrate-cppref-page) | `cpp/library/memory/unsynchronized_pool_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/assume_aligned.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fassume_aligned.html&labels=migrate-cppref-page) | `cpp/library/memory/assume_aligned` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/new_delete_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fnew_delete_resource.html&labels=migrate-cppref-page) | `cpp/library/memory/new_delete_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/pointer_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpointer_traits.html&labels=migrate-cppref-page) | `cpp/library/memory/pointer_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/new.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fnew.html&labels=migrate-cppref-page) | `cpp/library/memory/new` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/to_address.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fto_address.html&labels=migrate-cppref-page) | `cpp/library/memory/to_address` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/make_obj_using_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fmake_obj_using_allocator.html&labels=migrate-cppref-page) | `cpp/library/memory/make_obj_using_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/weak_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fweak_ptr.html&labels=migrate-cppref-page) | `cpp/library/memory/weak_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator_traits.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/owner_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fowner_equal.html&labels=migrate-cppref-page) | `cpp/library/memory/owner_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/uninitialized_copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funinitialized_copy.html&labels=migrate-cppref-page) | `cpp/library/memory/uninitialized_copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/default_delete.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fdefault_delete.html&labels=migrate-cppref-page) | `cpp/library/memory/default_delete` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/get_temporary_buffer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fget_temporary_buffer.html&labels=migrate-cppref-page) | `cpp/library/memory/get_temporary_buffer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/owner_hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fowner_hash.html&labels=migrate-cppref-page) | `cpp/library/memory/owner_hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/uninitialized_fill.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funinitialized_fill.html&labels=migrate-cppref-page) | `cpp/library/memory/uninitialized_fill` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/uninitialized_fill_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funinitialized_fill_n.html&labels=migrate-cppref-page) | `cpp/library/memory/uninitialized_fill_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator_arg.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator_arg.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator_arg` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocation_result.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocation_result.html&labels=migrate-cppref-page) | `cpp/library/memory/allocation_result` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/c.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fc.html&labels=migrate-cppref-page) | `cpp/library/memory/c` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/out_ptr_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fout_ptr_t.html&labels=migrate-cppref-page) | `cpp/library/memory/out_ptr_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/align.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Falign.html&labels=migrate-cppref-page) | `cpp/library/memory/align` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/destroy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fdestroy.html&labels=migrate-cppref-page) | `cpp/library/memory/destroy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/inout_ptr_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Finout_ptr_t.html&labels=migrate-cppref-page) | `cpp/library/memory/inout_ptr_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/uninitialized_default_construct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funinitialized_default_construct.html&labels=migrate-cppref-page) | `cpp/library/memory/uninitialized_default_construct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/destroy_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fdestroy_at.html&labels=migrate-cppref-page) | `cpp/library/memory/destroy_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/start_lifetime_as.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fstart_lifetime_as.html&labels=migrate-cppref-page) | `cpp/library/memory/start_lifetime_as` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/destroy_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fdestroy_n.html&labels=migrate-cppref-page) | `cpp/library/memory/destroy_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/construct_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fconstruct_at.html&labels=migrate-cppref-page) | `cpp/library/memory/construct_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/uninitialized_value_construct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funinitialized_value_construct.html&labels=migrate-cppref-page) | `cpp/library/memory/uninitialized_value_construct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/is_sufficiently_aligned.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fis_sufficiently_aligned.html&labels=migrate-cppref-page) | `cpp/library/memory/is_sufficiently_aligned` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/uninitialized_default_construct_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funinitialized_default_construct_n.html&labels=migrate-cppref-page) | `cpp/library/memory/uninitialized_default_construct_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/enable_shared_from_this.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fenable_shared_from_this.html&labels=migrate-cppref-page) | `cpp/library/memory/enable_shared_from_this` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/return_temporary_buffer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Freturn_temporary_buffer.html&labels=migrate-cppref-page) | `cpp/library/memory/return_temporary_buffer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator_arg_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator_arg_t.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator_arg_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/synchronized_pool_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fsynchronized_pool_resource.html&labels=migrate-cppref-page) | `cpp/library/memory/synchronized_pool_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/null_memory_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fnull_memory_resource.html&labels=migrate-cppref-page) | `cpp/library/memory/null_memory_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/uninitialized_copy_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funinitialized_copy_n.html&labels=migrate-cppref-page) | `cpp/library/memory/uninitialized_copy_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/uses_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fuses_allocator.html&labels=migrate-cppref-page) | `cpp/library/memory/uses_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unique_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funique_ptr.html&labels=migrate-cppref-page) | `cpp/library/memory/unique_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/memory_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fmemory_resource.html&labels=migrate-cppref-page) | `cpp/library/memory/memory_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/enable_shared_from_this/shared_from_this.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fenable_shared_from_this%2Fshared_from_this.html&labels=migrate-cppref-page) | `cpp/library/memory/enable_shared_from_this/shared_from_this` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/enable_shared_from_this/weak_from_this.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fenable_shared_from_this%2Fweak_from_this.html&labels=migrate-cppref-page) | `cpp/library/memory/enable_shared_from_this/weak_from_this` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/enable_shared_from_this/~enable_shared_from_this.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fenable_shared_from_this%2F~enable_shared_from_this.html&labels=migrate-cppref-page) | `cpp/library/memory/enable_shared_from_this/~enable_shared_from_this` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/enable_shared_from_this/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fenable_shared_from_this%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/memory/enable_shared_from_this/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/enable_shared_from_this/enable_shared_from_this.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fenable_shared_from_this%2Fenable_shared_from_this.html&labels=migrate-cppref-page) | `cpp/library/memory/enable_shared_from_this/enable_shared_from_this` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/auto_ptr/auto_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fauto_ptr%2Fauto_ptr.html&labels=migrate-cppref-page) | `cpp/library/memory/auto_ptr/auto_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/auto_ptr/operator_auto_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fauto_ptr%2Foperator_auto_ptr.html&labels=migrate-cppref-page) | `cpp/library/memory/auto_ptr/operator_auto_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/auto_ptr/~auto_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fauto_ptr%2F~auto_ptr.html&labels=migrate-cppref-page) | `cpp/library/memory/auto_ptr/~auto_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/auto_ptr/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fauto_ptr%2Freset.html&labels=migrate-cppref-page) | `cpp/library/memory/auto_ptr/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/auto_ptr/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fauto_ptr%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/memory/auto_ptr/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/auto_ptr/release.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fauto_ptr%2Frelease.html&labels=migrate-cppref-page) | `cpp/library/memory/auto_ptr/release` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/auto_ptr/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fauto_ptr%2Fget.html&labels=migrate-cppref-page) | `cpp/library/memory/auto_ptr/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/auto_ptr/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fauto_ptr%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/memory/auto_ptr/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unsynchronized_pool_resource/do_is_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funsynchronized_pool_resource%2Fdo_is_equal.html&labels=migrate-cppref-page) | `cpp/library/memory/unsynchronized_pool_resource/do_is_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unsynchronized_pool_resource/do_deallocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funsynchronized_pool_resource%2Fdo_deallocate.html&labels=migrate-cppref-page) | `cpp/library/memory/unsynchronized_pool_resource/do_deallocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unsynchronized_pool_resource/unsynchronized_pool_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funsynchronized_pool_resource%2Funsynchronized_pool_resource.html&labels=migrate-cppref-page) | `cpp/library/memory/unsynchronized_pool_resource/unsynchronized_pool_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unsynchronized_pool_resource/do_allocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funsynchronized_pool_resource%2Fdo_allocate.html&labels=migrate-cppref-page) | `cpp/library/memory/unsynchronized_pool_resource/do_allocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unsynchronized_pool_resource/options.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funsynchronized_pool_resource%2Foptions.html&labels=migrate-cppref-page) | `cpp/library/memory/unsynchronized_pool_resource/options` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unsynchronized_pool_resource/release.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funsynchronized_pool_resource%2Frelease.html&labels=migrate-cppref-page) | `cpp/library/memory/unsynchronized_pool_resource/release` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unsynchronized_pool_resource/~unsynchronized_pool_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funsynchronized_pool_resource%2F~unsynchronized_pool_resource.html&labels=migrate-cppref-page) | `cpp/library/memory/unsynchronized_pool_resource/~unsynchronized_pool_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unsynchronized_pool_resource/upstream_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funsynchronized_pool_resource%2Fupstream_resource.html&labels=migrate-cppref-page) | `cpp/library/memory/unsynchronized_pool_resource/upstream_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/memory_resource/do_is_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fmemory_resource%2Fdo_is_equal.html&labels=migrate-cppref-page) | `cpp/library/memory/memory_resource/do_is_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/memory_resource/operator_eq.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fmemory_resource%2Foperator_eq.html&labels=migrate-cppref-page) | `cpp/library/memory/memory_resource/operator_eq` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/memory_resource/allocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fmemory_resource%2Fallocate.html&labels=migrate-cppref-page) | `cpp/library/memory/memory_resource/allocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/memory_resource/deallocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fmemory_resource%2Fdeallocate.html&labels=migrate-cppref-page) | `cpp/library/memory/memory_resource/deallocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/memory_resource/do_deallocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fmemory_resource%2Fdo_deallocate.html&labels=migrate-cppref-page) | `cpp/library/memory/memory_resource/do_deallocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/memory_resource/do_allocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fmemory_resource%2Fdo_allocate.html&labels=migrate-cppref-page) | `cpp/library/memory/memory_resource/do_allocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/memory_resource/is_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fmemory_resource%2Fis_equal.html&labels=migrate-cppref-page) | `cpp/library/memory/memory_resource/is_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/memory_resource/memory_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fmemory_resource%2Fmemory_resource.html&labels=migrate-cppref-page) | `cpp/library/memory/memory_resource/memory_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/new/operator_new.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fnew%2Foperator_new.html&labels=migrate-cppref-page) | `cpp/library/memory/new/operator_new` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/new/set_new_handler.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fnew%2Fset_new_handler.html&labels=migrate-cppref-page) | `cpp/library/memory/new/set_new_handler` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/new/get_new_handler.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fnew%2Fget_new_handler.html&labels=migrate-cppref-page) | `cpp/library/memory/new/get_new_handler` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/new/bad_alloc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fnew%2Fbad_alloc.html&labels=migrate-cppref-page) | `cpp/library/memory/new/bad_alloc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/new/align_val_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fnew%2Falign_val_t.html&labels=migrate-cppref-page) | `cpp/library/memory/new/align_val_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/new/nothrow_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fnew%2Fnothrow_t.html&labels=migrate-cppref-page) | `cpp/library/memory/new/nothrow_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/new/nothrow.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fnew%2Fnothrow.html&labels=migrate-cppref-page) | `cpp/library/memory/new/nothrow` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/new/new_handler.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fnew%2Fnew_handler.html&labels=migrate-cppref-page) | `cpp/library/memory/new/new_handler` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/new/bad_array_new_length.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fnew%2Fbad_array_new_length.html&labels=migrate-cppref-page) | `cpp/library/memory/new/bad_array_new_length` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/new/destroying_delete_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fnew%2Fdestroying_delete_t.html&labels=migrate-cppref-page) | `cpp/library/memory/new/destroying_delete_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/new/operator_delete.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fnew%2Foperator_delete.html&labels=migrate-cppref-page) | `cpp/library/memory/new/operator_delete` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/monotonic_buffer_resource/~monotonic_buffer_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fmonotonic_buffer_resource%2F~monotonic_buffer_resource.html&labels=migrate-cppref-page) | `cpp/library/memory/monotonic_buffer_resource/~monotonic_buffer_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/monotonic_buffer_resource/do_is_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fmonotonic_buffer_resource%2Fdo_is_equal.html&labels=migrate-cppref-page) | `cpp/library/memory/monotonic_buffer_resource/do_is_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/monotonic_buffer_resource/monotonic_buffer_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fmonotonic_buffer_resource%2Fmonotonic_buffer_resource.html&labels=migrate-cppref-page) | `cpp/library/memory/monotonic_buffer_resource/monotonic_buffer_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/monotonic_buffer_resource/do_deallocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fmonotonic_buffer_resource%2Fdo_deallocate.html&labels=migrate-cppref-page) | `cpp/library/memory/monotonic_buffer_resource/do_deallocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/monotonic_buffer_resource/do_allocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fmonotonic_buffer_resource%2Fdo_allocate.html&labels=migrate-cppref-page) | `cpp/library/memory/monotonic_buffer_resource/do_allocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/monotonic_buffer_resource/release.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fmonotonic_buffer_resource%2Frelease.html&labels=migrate-cppref-page) | `cpp/library/memory/monotonic_buffer_resource/release` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/monotonic_buffer_resource/upstream_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fmonotonic_buffer_resource%2Fupstream_resource.html&labels=migrate-cppref-page) | `cpp/library/memory/monotonic_buffer_resource/upstream_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/helpers.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fscoped_allocator_adaptor%2Fhelpers.html&labels=migrate-cppref-page) | `cpp/library/memory/scoped_allocator_adaptor/helpers` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/outer_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fscoped_allocator_adaptor%2Fouter_allocator.html&labels=migrate-cppref-page) | `cpp/library/memory/scoped_allocator_adaptor/outer_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/allocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fscoped_allocator_adaptor%2Fallocate.html&labels=migrate-cppref-page) | `cpp/library/memory/scoped_allocator_adaptor/allocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/inner_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fscoped_allocator_adaptor%2Finner_allocator.html&labels=migrate-cppref-page) | `cpp/library/memory/scoped_allocator_adaptor/inner_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/scoped_allocator_adaptor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fscoped_allocator_adaptor%2Fscoped_allocator_adaptor.html&labels=migrate-cppref-page) | `cpp/library/memory/scoped_allocator_adaptor/scoped_allocator_adaptor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/deallocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fscoped_allocator_adaptor%2Fdeallocate.html&labels=migrate-cppref-page) | `cpp/library/memory/scoped_allocator_adaptor/deallocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fscoped_allocator_adaptor%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/memory/scoped_allocator_adaptor/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fscoped_allocator_adaptor%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/memory/scoped_allocator_adaptor/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/select_on_container_copy_construction.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fscoped_allocator_adaptor%2Fselect_on_container_copy_construction.html&labels=migrate-cppref-page) | `cpp/library/memory/scoped_allocator_adaptor/select_on_container_copy_construction` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/construct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fscoped_allocator_adaptor%2Fconstruct.html&labels=migrate-cppref-page) | `cpp/library/memory/scoped_allocator_adaptor/construct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fscoped_allocator_adaptor%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/memory/scoped_allocator_adaptor/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/destroy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fscoped_allocator_adaptor%2Fdestroy.html&labels=migrate-cppref-page) | `cpp/library/memory/scoped_allocator_adaptor/destroy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fscoped_allocator_adaptor%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/memory/scoped_allocator_adaptor/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/~scoped_allocator_adaptor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fscoped_allocator_adaptor%2F~scoped_allocator_adaptor.html&labels=migrate-cppref-page) | `cpp/library/memory/scoped_allocator_adaptor/~scoped_allocator_adaptor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unique_ptr/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funique_ptr%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/memory/unique_ptr/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unique_ptr/get_deleter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funique_ptr%2Fget_deleter.html&labels=migrate-cppref-page) | `cpp/library/memory/unique_ptr/get_deleter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unique_ptr/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funique_ptr%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/memory/unique_ptr/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unique_ptr/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funique_ptr%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/memory/unique_ptr/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unique_ptr/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funique_ptr%2Freset.html&labels=migrate-cppref-page) | `cpp/library/memory/unique_ptr/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unique_ptr/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funique_ptr%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/memory/unique_ptr/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unique_ptr/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funique_ptr%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/memory/unique_ptr/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unique_ptr/release.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funique_ptr%2Frelease.html&labels=migrate-cppref-page) | `cpp/library/memory/unique_ptr/release` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unique_ptr/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funique_ptr%2Fget.html&labels=migrate-cppref-page) | `cpp/library/memory/unique_ptr/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unique_ptr/make_unique.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funique_ptr%2Fmake_unique.html&labels=migrate-cppref-page) | `cpp/library/memory/unique_ptr/make_unique` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unique_ptr/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funique_ptr%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/memory/unique_ptr/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unique_ptr/~unique_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funique_ptr%2F~unique_ptr.html&labels=migrate-cppref-page) | `cpp/library/memory/unique_ptr/~unique_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unique_ptr/operator_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funique_ptr%2Foperator_bool.html&labels=migrate-cppref-page) | `cpp/library/memory/unique_ptr/operator_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unique_ptr/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funique_ptr%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/memory/unique_ptr/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unique_ptr/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funique_ptr%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/memory/unique_ptr/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/unique_ptr/unique_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Funique_ptr%2Funique_ptr.html&labels=migrate-cppref-page) | `cpp/library/memory/unique_ptr/unique_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/ranges/uninitialized_value_construct_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Franges%2Funinitialized_value_construct_n.html&labels=migrate-cppref-page) | `cpp/library/memory/ranges/uninitialized_value_construct_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/ranges/nothrow_concepts.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Franges%2Fnothrow_concepts.html&labels=migrate-cppref-page) | `cpp/library/memory/ranges/nothrow_concepts` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/ranges/uninitialized_move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Franges%2Funinitialized_move.html&labels=migrate-cppref-page) | `cpp/library/memory/ranges/uninitialized_move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/ranges/uninitialized_move_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Franges%2Funinitialized_move_n.html&labels=migrate-cppref-page) | `cpp/library/memory/ranges/uninitialized_move_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/ranges/uninitialized_copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Franges%2Funinitialized_copy.html&labels=migrate-cppref-page) | `cpp/library/memory/ranges/uninitialized_copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/ranges/uninitialized_fill.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Franges%2Funinitialized_fill.html&labels=migrate-cppref-page) | `cpp/library/memory/ranges/uninitialized_fill` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/ranges/uninitialized_fill_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Franges%2Funinitialized_fill_n.html&labels=migrate-cppref-page) | `cpp/library/memory/ranges/uninitialized_fill_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/ranges/destroy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Franges%2Fdestroy.html&labels=migrate-cppref-page) | `cpp/library/memory/ranges/destroy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/ranges/uninitialized_default_construct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Franges%2Funinitialized_default_construct.html&labels=migrate-cppref-page) | `cpp/library/memory/ranges/uninitialized_default_construct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/ranges/destroy_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Franges%2Fdestroy_at.html&labels=migrate-cppref-page) | `cpp/library/memory/ranges/destroy_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/ranges/destroy_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Franges%2Fdestroy_n.html&labels=migrate-cppref-page) | `cpp/library/memory/ranges/destroy_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/ranges/construct_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Franges%2Fconstruct_at.html&labels=migrate-cppref-page) | `cpp/library/memory/ranges/construct_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/ranges/uninitialized_value_construct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Franges%2Funinitialized_value_construct.html&labels=migrate-cppref-page) | `cpp/library/memory/ranges/uninitialized_value_construct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/ranges/uninitialized_default_construct_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Franges%2Funinitialized_default_construct_n.html&labels=migrate-cppref-page) | `cpp/library/memory/ranges/uninitialized_default_construct_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/ranges/uninitialized_copy_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Franges%2Funinitialized_copy_n.html&labels=migrate-cppref-page) | `cpp/library/memory/ranges/uninitialized_copy_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/inout_ptr_t/inout_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Finout_ptr_t%2Finout_ptr.html&labels=migrate-cppref-page) | `cpp/library/memory/inout_ptr_t/inout_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/inout_ptr_t/~inout_ptr_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Finout_ptr_t%2F~inout_ptr_t.html&labels=migrate-cppref-page) | `cpp/library/memory/inout_ptr_t/~inout_ptr_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/inout_ptr_t/operator_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Finout_ptr_t%2Foperator_ptr.html&labels=migrate-cppref-page) | `cpp/library/memory/inout_ptr_t/operator_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/inout_ptr_t/inout_ptr_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Finout_ptr_t%2Finout_ptr_t.html&labels=migrate-cppref-page) | `cpp/library/memory/inout_ptr_t/inout_ptr_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/polymorphic_allocator/allocate_object.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpolymorphic_allocator%2Fallocate_object.html&labels=migrate-cppref-page) | `cpp/library/memory/polymorphic_allocator/allocate_object` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/polymorphic_allocator/operator_eq.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpolymorphic_allocator%2Foperator_eq.html&labels=migrate-cppref-page) | `cpp/library/memory/polymorphic_allocator/operator_eq` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/polymorphic_allocator/allocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpolymorphic_allocator%2Fallocate.html&labels=migrate-cppref-page) | `cpp/library/memory/polymorphic_allocator/allocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/polymorphic_allocator/deallocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpolymorphic_allocator%2Fdeallocate.html&labels=migrate-cppref-page) | `cpp/library/memory/polymorphic_allocator/deallocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/polymorphic_allocator/polymorphic_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpolymorphic_allocator%2Fpolymorphic_allocator.html&labels=migrate-cppref-page) | `cpp/library/memory/polymorphic_allocator/polymorphic_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/polymorphic_allocator/deallocate_bytes.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpolymorphic_allocator%2Fdeallocate_bytes.html&labels=migrate-cppref-page) | `cpp/library/memory/polymorphic_allocator/deallocate_bytes` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/polymorphic_allocator/delete_object.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpolymorphic_allocator%2Fdelete_object.html&labels=migrate-cppref-page) | `cpp/library/memory/polymorphic_allocator/delete_object` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/polymorphic_allocator/deallocate_object.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpolymorphic_allocator%2Fdeallocate_object.html&labels=migrate-cppref-page) | `cpp/library/memory/polymorphic_allocator/deallocate_object` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/polymorphic_allocator/allocate_bytes.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpolymorphic_allocator%2Fallocate_bytes.html&labels=migrate-cppref-page) | `cpp/library/memory/polymorphic_allocator/allocate_bytes` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/polymorphic_allocator/select_on_container_copy_construction.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpolymorphic_allocator%2Fselect_on_container_copy_construction.html&labels=migrate-cppref-page) | `cpp/library/memory/polymorphic_allocator/select_on_container_copy_construction` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/polymorphic_allocator/construct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpolymorphic_allocator%2Fconstruct.html&labels=migrate-cppref-page) | `cpp/library/memory/polymorphic_allocator/construct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/polymorphic_allocator/new_object.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpolymorphic_allocator%2Fnew_object.html&labels=migrate-cppref-page) | `cpp/library/memory/polymorphic_allocator/new_object` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/polymorphic_allocator/destroy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpolymorphic_allocator%2Fdestroy.html&labels=migrate-cppref-page) | `cpp/library/memory/polymorphic_allocator/destroy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/polymorphic_allocator/resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpolymorphic_allocator%2Fresource.html&labels=migrate-cppref-page) | `cpp/library/memory/polymorphic_allocator/resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/c/free.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fc%2Ffree.html&labels=migrate-cppref-page) | `cpp/library/memory/c/free` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/c/calloc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fc%2Fcalloc.html&labels=migrate-cppref-page) | `cpp/library/memory/c/calloc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/c/realloc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fc%2Frealloc.html&labels=migrate-cppref-page) | `cpp/library/memory/c/realloc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/c/malloc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fc%2Fmalloc.html&labels=migrate-cppref-page) | `cpp/library/memory/c/malloc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/c/aligned_alloc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fc%2Faligned_alloc.html&labels=migrate-cppref-page) | `cpp/library/memory/c/aligned_alloc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/get_deleter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Fget_deleter.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/get_deleter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/atomic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Fatomic.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/atomic` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/use_count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Fuse_count.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/use_count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/owner_before.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Fowner_before.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/owner_before` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Freset.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/shared_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Fshared_ptr.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/shared_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/owner_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Fowner_equal.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/owner_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/atomic2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Fatomic2.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/atomic2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/owner_hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Fowner_hash.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/owner_hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Fget.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/make_shared.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Fmake_shared.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/make_shared` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/unique.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Funique.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/unique` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/allocate_shared.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Fallocate_shared.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/allocate_shared` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/operator_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Foperator_bool.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/operator_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/pointer_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Fpointer_cast.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/pointer_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/shared_ptr/~shared_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fshared_ptr%2F~shared_ptr.html&labels=migrate-cppref-page) | `cpp/library/memory/shared_ptr/~shared_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/weak_ptr/use_count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fweak_ptr%2Fuse_count.html&labels=migrate-cppref-page) | `cpp/library/memory/weak_ptr/use_count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/weak_ptr/owner_before.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fweak_ptr%2Fowner_before.html&labels=migrate-cppref-page) | `cpp/library/memory/weak_ptr/owner_before` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/weak_ptr/~weak_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fweak_ptr%2F~weak_ptr.html&labels=migrate-cppref-page) | `cpp/library/memory/weak_ptr/~weak_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/weak_ptr/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fweak_ptr%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/memory/weak_ptr/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/weak_ptr/expired.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fweak_ptr%2Fexpired.html&labels=migrate-cppref-page) | `cpp/library/memory/weak_ptr/expired` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/weak_ptr/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fweak_ptr%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/memory/weak_ptr/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/weak_ptr/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fweak_ptr%2Freset.html&labels=migrate-cppref-page) | `cpp/library/memory/weak_ptr/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/weak_ptr/weak_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fweak_ptr%2Fweak_ptr.html&labels=migrate-cppref-page) | `cpp/library/memory/weak_ptr/weak_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/weak_ptr/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fweak_ptr%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/memory/weak_ptr/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/weak_ptr/owner_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fweak_ptr%2Fowner_equal.html&labels=migrate-cppref-page) | `cpp/library/memory/weak_ptr/owner_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/weak_ptr/atomic2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fweak_ptr%2Fatomic2.html&labels=migrate-cppref-page) | `cpp/library/memory/weak_ptr/atomic2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/weak_ptr/lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fweak_ptr%2Flock.html&labels=migrate-cppref-page) | `cpp/library/memory/weak_ptr/lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/weak_ptr/owner_hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fweak_ptr%2Fowner_hash.html&labels=migrate-cppref-page) | `cpp/library/memory/weak_ptr/owner_hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/weak_ptr/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fweak_ptr%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/memory/weak_ptr/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/raw_storage_iterator/raw_storage_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fraw_storage_iterator%2Fraw_storage_iterator.html&labels=migrate-cppref-page) | `cpp/library/memory/raw_storage_iterator/raw_storage_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/raw_storage_iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fraw_storage_iterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/memory/raw_storage_iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/raw_storage_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fraw_storage_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/memory/raw_storage_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/raw_storage_iterator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fraw_storage_iterator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/memory/raw_storage_iterator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/raw_storage_iterator/base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fraw_storage_iterator%2Fbase.html&labels=migrate-cppref-page) | `cpp/library/memory/raw_storage_iterator/base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator/allocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator%2Fallocate.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator/allocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator/deallocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator%2Fdeallocate.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator/deallocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator/~allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator%2F~allocator.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator/~allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator/address.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator%2Faddress.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator/address` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator/allocate_at_least.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator%2Fallocate_at_least.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator/allocate_at_least` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator/construct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator%2Fconstruct.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator/construct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator/destroy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator%2Fdestroy.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator/destroy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator/allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator%2Fallocator.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator/allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/pointer_traits/pointer_to.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpointer_traits%2Fpointer_to.html&labels=migrate-cppref-page) | `cpp/library/memory/pointer_traits/pointer_to` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/pointer_traits/to_address.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fpointer_traits%2Fto_address.html&labels=migrate-cppref-page) | `cpp/library/memory/pointer_traits/to_address` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/out_ptr_t/out_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fout_ptr_t%2Fout_ptr.html&labels=migrate-cppref-page) | `cpp/library/memory/out_ptr_t/out_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/out_ptr_t/~out_ptr_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fout_ptr_t%2F~out_ptr_t.html&labels=migrate-cppref-page) | `cpp/library/memory/out_ptr_t/~out_ptr_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/out_ptr_t/out_ptr_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fout_ptr_t%2Fout_ptr_t.html&labels=migrate-cppref-page) | `cpp/library/memory/out_ptr_t/out_ptr_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/out_ptr_t/operator_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fout_ptr_t%2Foperator_ptr.html&labels=migrate-cppref-page) | `cpp/library/memory/out_ptr_t/operator_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/gc/get_pointer_safety.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fgc%2Fget_pointer_safety.html&labels=migrate-cppref-page) | `cpp/library/memory/gc/get_pointer_safety` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/gc/declare_no_pointers.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fgc%2Fdeclare_no_pointers.html&labels=migrate-cppref-page) | `cpp/library/memory/gc/declare_no_pointers` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/gc/undeclare_no_pointers.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fgc%2Fundeclare_no_pointers.html&labels=migrate-cppref-page) | `cpp/library/memory/gc/undeclare_no_pointers` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/gc/declare_reachable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fgc%2Fdeclare_reachable.html&labels=migrate-cppref-page) | `cpp/library/memory/gc/declare_reachable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/gc/pointer_safety.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fgc%2Fpointer_safety.html&labels=migrate-cppref-page) | `cpp/library/memory/gc/pointer_safety` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/gc/undeclare_reachable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fgc%2Fundeclare_reachable.html&labels=migrate-cppref-page) | `cpp/library/memory/gc/undeclare_reachable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator_traits/allocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator_traits%2Fallocate.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator_traits/allocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator_traits/deallocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator_traits%2Fdeallocate.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator_traits/deallocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator_traits/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator_traits%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator_traits/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator_traits/allocate_at_least.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator_traits%2Fallocate_at_least.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator_traits/allocate_at_least` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator_traits/select_on_container_copy_construction.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator_traits%2Fselect_on_container_copy_construction.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator_traits/select_on_container_copy_construction` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator_traits/construct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator_traits%2Fconstruct.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator_traits/construct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/allocator_traits/destroy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fallocator_traits%2Fdestroy.html&labels=migrate-cppref-page) | `cpp/library/memory/allocator_traits/destroy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/synchronized_pool_resource/do_is_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fsynchronized_pool_resource%2Fdo_is_equal.html&labels=migrate-cppref-page) | `cpp/library/memory/synchronized_pool_resource/do_is_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/synchronized_pool_resource/do_deallocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fsynchronized_pool_resource%2Fdo_deallocate.html&labels=migrate-cppref-page) | `cpp/library/memory/synchronized_pool_resource/do_deallocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/synchronized_pool_resource/do_allocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fsynchronized_pool_resource%2Fdo_allocate.html&labels=migrate-cppref-page) | `cpp/library/memory/synchronized_pool_resource/do_allocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/synchronized_pool_resource/options.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fsynchronized_pool_resource%2Foptions.html&labels=migrate-cppref-page) | `cpp/library/memory/synchronized_pool_resource/options` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/synchronized_pool_resource/release.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fsynchronized_pool_resource%2Frelease.html&labels=migrate-cppref-page) | `cpp/library/memory/synchronized_pool_resource/release` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/synchronized_pool_resource/~synchronized_pool_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fsynchronized_pool_resource%2F~synchronized_pool_resource.html&labels=migrate-cppref-page) | `cpp/library/memory/synchronized_pool_resource/~synchronized_pool_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/synchronized_pool_resource/synchronized_pool_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fsynchronized_pool_resource%2Fsynchronized_pool_resource.html&labels=migrate-cppref-page) | `cpp/library/memory/synchronized_pool_resource/synchronized_pool_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/memory/synchronized_pool_resource/upstream_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fmemory%2Fsynchronized_pool_resource%2Fupstream_resource.html&labels=migrate-cppref-page) | `cpp/library/memory/synchronized_pool_resource/upstream_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_is_lock_free.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_is_lock_free.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_is_lock_free` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_flag.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_flag.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_flag` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_load.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_load.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_load` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_flag_notify_one.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_flag_notify_one.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_flag_notify_one` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_signal_fence.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_signal_fence.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_signal_fence` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_store.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_store.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_store` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_fetch_sub.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_fetch_sub.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_fetch_sub` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_fetch_max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_fetch_max.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_fetch_max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_fetch_and.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_fetch_and.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_fetch_and` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/ATOMIC_FLAG_INIT.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2FATOMIC_FLAG_INIT.html&labels=migrate-cppref-page) | `cpp/library/atomic/ATOMIC_FLAG_INIT` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_flag_test.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_flag_test.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_flag_test` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/kill_dependency.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fkill_dependency.html&labels=migrate-cppref-page) | `cpp/library/atomic/kill_dependency` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_flag_clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_flag_clear.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_flag_clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_notify_one.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_notify_one.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_notify_one` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_notify_all.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_notify_all.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_notify_all` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_flag_notify_all.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_flag_notify_all.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_flag_notify_all` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_fetch_or.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_fetch_or.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_fetch_or` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/memory_order.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fmemory_order.html&labels=migrate-cppref-page) | `cpp/library/atomic/memory_order` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_wait.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_init.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_init.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_init` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_fetch_min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_fetch_min.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_fetch_min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_flag_wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_flag_wait.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_flag_wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_fetch_xor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_fetch_xor.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_fetch_xor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_exchange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_exchange.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_exchange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/ATOMIC_VAR_INIT.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2FATOMIC_VAR_INIT.html&labels=migrate-cppref-page) | `cpp/library/atomic/ATOMIC_VAR_INIT` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_flag_test_and_set.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_flag_test_and_set.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_flag_test_and_set` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_compare_exchange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_compare_exchange.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_compare_exchange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_thread_fence.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_thread_fence.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_thread_fence` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_fetch_add.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_fetch_add.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_fetch_add` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_flag/atomic_flag.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_flag%2Fatomic_flag.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_flag/atomic_flag` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_flag/notify_all.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_flag%2Fnotify_all.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_flag/notify_all` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_flag/test.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_flag%2Ftest.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_flag/test` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_flag/test_and_set.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_flag%2Ftest_and_set.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_flag/test_and_set` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_flag/notify_one.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_flag%2Fnotify_one.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_flag/notify_one` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_flag/wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_flag%2Fwait.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_flag/wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_flag/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_flag%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_flag/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_flag/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_flag%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_flag/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/atomic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Fatomic.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/atomic` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/exchange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Fexchange.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/exchange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/fetch_min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Ffetch_min.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/fetch_min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/fetch_xor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Ffetch_xor.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/fetch_xor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/notify_all.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Fnotify_all.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/notify_all` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/is_always_lock_free.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Fis_always_lock_free.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/is_always_lock_free` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/fetch_and.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Ffetch_and.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/fetch_and` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/compare_exchange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Fcompare_exchange.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/compare_exchange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/operator_arith3.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Foperator_arith3.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/operator_arith3` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/fetch_max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Ffetch_max.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/fetch_max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/notify_one.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Fnotify_one.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/notify_one` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/fetch_sub.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Ffetch_sub.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/fetch_sub` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Fwait.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/fetch_add.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Ffetch_add.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/fetch_add` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/is_lock_free.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Fis_lock_free.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/is_lock_free` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/fetch_or.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Ffetch_or.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/fetch_or` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/store.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Fstore.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/store` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/load.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Fload.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/load` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic/operator_T.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic%2Foperator_T.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic/operator_T` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/required_alignment.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Frequired_alignment.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/required_alignment` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/exchange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Fexchange.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/exchange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/fetch_min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Ffetch_min.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/fetch_min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/fetch_xor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Ffetch_xor.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/fetch_xor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/notify_all.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Fnotify_all.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/notify_all` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/address.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Faddress.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/address` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/atomic_ref.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Fatomic_ref.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/atomic_ref` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/is_always_lock_free.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Fis_always_lock_free.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/is_always_lock_free` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/fetch_and.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Ffetch_and.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/fetch_and` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/compare_exchange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Fcompare_exchange.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/compare_exchange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/operator_arith3.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Foperator_arith3.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/operator_arith3` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/fetch_max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Ffetch_max.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/fetch_max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/notify_one.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Fnotify_one.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/notify_one` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/fetch_sub.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Ffetch_sub.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/fetch_sub` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Fwait.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/fetch_add.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Ffetch_add.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/fetch_add` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/is_lock_free.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Fis_lock_free.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/is_lock_free` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/fetch_or.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Ffetch_or.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/fetch_or` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/store.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Fstore.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/store` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/load.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Fload.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/load` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/atomic/atomic_ref/operator_T.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fatomic%2Fatomic_ref%2Foperator_T.html&labels=migrate-cppref-page) | `cpp/library/atomic/atomic_ref/operator_T` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/to_chars.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fto_chars.html&labels=migrate-cppref-page) | `cpp/library/text/to_chars` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/as_const.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fas_const.html&labels=migrate-cppref-page) | `cpp/library/utility/as_const` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/initializer_list.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Finitializer_list.html&labels=migrate-cppref-page) | `cpp/library/utility/initializer_list` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/exchange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexchange.html&labels=migrate-cppref-page) | `cpp/library/utility/exchange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/declval.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fdeclval.html&labels=migrate-cppref-page) | `cpp/library/utility/declval` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/source_location.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fsource_location.html&labels=migrate-cppref-page) | `cpp/library/utility/source_location` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/utility/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/integer_sequence.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Finteger_sequence.html&labels=migrate-cppref-page) | `cpp/library/meta/integer_sequence` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fmove.html&labels=migrate-cppref-page) | `cpp/library/utility/move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/any.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fany.html&labels=migrate-cppref-page) | `cpp/library/utility/any` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/breakpoint_if_debugging.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbreakpoint_if_debugging.html&labels=migrate-cppref-page) | `cpp/library/error/breakpoint_if_debugging` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat.html&labels=migrate-cppref-page) | `cpp/library/text/format` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant.html&labels=migrate-cppref-page) | `cpp/library/utility/variant` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/from_chars.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffrom_chars.html&labels=migrate-cppref-page) | `cpp/library/text/from_chars` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/to_chars_result.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fto_chars_result.html&labels=migrate-cppref-page) | `cpp/library/text/to_chars_result` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variadic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariadic.html&labels=migrate-cppref-page) | `cpp/library/utility/variadic` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/launder.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Flaunder.html&labels=migrate-cppref-page) | `cpp/library/memory/new/launder` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/in_place.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fin_place.html&labels=migrate-cppref-page) | `cpp/library/utility/in_place` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/algorithm/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/make_from_tuple.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fmake_from_tuple.html&labels=migrate-cppref-page) | `cpp/library/utility/make_from_tuple` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/feature_test.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffeature_test.html&labels=migrate-cppref-page) | `cpp/library/utility/feature_test` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/from_chars_result.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffrom_chars_result.html&labels=migrate-cppref-page) | `cpp/library/text/from_chars_result` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple_size.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/stacktrace_entry.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fstacktrace_entry.html&labels=migrate-cppref-page) | `cpp/library/error/stacktrace_entry` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/forward.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fforward.html&labels=migrate-cppref-page) | `cpp/library/utility/forward` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbit.html&labels=migrate-cppref-page) | `cpp/library/utility/bit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/pair.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fpair.html&labels=migrate-cppref-page) | `cpp/library/utility/pair` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/apply.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fapply.html&labels=migrate-cppref-page) | `cpp/library/utility/apply` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/intcmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fintcmp.html&labels=migrate-cppref-page) | `cpp/library/utility/intcmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/forward_like.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fforward_like.html&labels=migrate-cppref-page) | `cpp/library/utility/forward_like` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected.html&labels=migrate-cppref-page) | `cpp/library/utility/expected` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/breakpoint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbreakpoint.html&labels=migrate-cppref-page) | `cpp/library/error/breakpoint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple_element.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple_element.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple_element` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/chars_format.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fchars_format.html&labels=migrate-cppref-page) | `cpp/library/text/chars_format` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional.html&labels=migrate-cppref-page) | `cpp/library/utility/optional` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional.html&labels=migrate-cppref-page) | `cpp/library/utility/functional` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/to_underlying.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fto_underlying.html&labels=migrate-cppref-page) | `cpp/library/utility/to_underlying` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/move_if_noexcept.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fmove_if_noexcept.html&labels=migrate-cppref-page) | `cpp/library/utility/move_if_noexcept` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/in_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fin_range.html&labels=migrate-cppref-page) | `cpp/library/utility/in_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/rtti.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Frtti.html&labels=migrate-cppref-page) | `cpp/library/utility/rtti` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram.html&labels=migrate-cppref-page) | `cpp/library/utility/program` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/is_debugger_present.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fis_debugger_present.html&labels=migrate-cppref-page) | `cpp/library/error/is_debugger_present` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/pair/make_pair.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fpair%2Fmake_pair.html&labels=migrate-cppref-page) | `cpp/library/utility/pair/make_pair` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/pair/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fpair%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/utility/pair/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/pair/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fpair%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/utility/pair/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/pair/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fpair%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/utility/pair/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/pair/tuple_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fpair%2Ftuple_size.html&labels=migrate-cppref-page) | `cpp/library/utility/pair/tuple_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/pair/common_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fpair%2Fcommon_type.html&labels=migrate-cppref-page) | `cpp/library/utility/pair/common_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/pair/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fpair%2Fget.html&labels=migrate-cppref-page) | `cpp/library/utility/pair/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/pair/pair.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fpair%2Fpair.html&labels=migrate-cppref-page) | `cpp/library/utility/pair/pair` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/pair/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fpair%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/utility/pair/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/pair/tuple_element.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fpair%2Ftuple_element.html&labels=migrate-cppref-page) | `cpp/library/utility/pair/tuple_element` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/pair/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fpair%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/utility/pair/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/pair/basic_common_reference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fpair%2Fbasic_common_reference.html&labels=migrate-cppref-page) | `cpp/library/utility/pair/basic_common_reference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variadic/va_list.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariadic%2Fva_list.html&labels=migrate-cppref-page) | `cpp/library/utility/variadic/va_list` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variadic/va_copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariadic%2Fva_copy.html&labels=migrate-cppref-page) | `cpp/library/utility/variadic/va_copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variadic/va_arg.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariadic%2Fva_arg.html&labels=migrate-cppref-page) | `cpp/library/utility/variadic/va_arg` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variadic/va_start.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariadic%2Fva_start.html&labels=migrate-cppref-page) | `cpp/library/utility/variadic/va_start` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variadic/va_end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariadic%2Fva_end.html&labels=migrate-cppref-page) | `cpp/library/utility/variadic/va_end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/any/~any.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fany%2F~any.html&labels=migrate-cppref-page) | `cpp/library/utility/any/~any` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/any/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fany%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/utility/any/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/any/make_any.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fany%2Fmake_any.html&labels=migrate-cppref-page) | `cpp/library/utility/any/make_any` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/any/any.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fany%2Fany.html&labels=migrate-cppref-page) | `cpp/library/utility/any/any` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/any/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fany%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/utility/any/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/any/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fany%2Freset.html&labels=migrate-cppref-page) | `cpp/library/utility/any/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/any/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fany%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/utility/any/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/any/any_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fany%2Fany_cast.html&labels=migrate-cppref-page) | `cpp/library/utility/any/any_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/any/type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fany%2Ftype.html&labels=migrate-cppref-page) | `cpp/library/utility/any/type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/any/bad_any_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fany%2Fbad_any_cast.html&labels=migrate-cppref-page) | `cpp/library/utility/any/bad_any_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/any/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fany%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/utility/any/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/any/has_value.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fany%2Fhas_value.html&labels=migrate-cppref-page) | `cpp/library/utility/any/has_value` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/compare/compare_three_way_result.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fcompare%2Fcompare_three_way_result.html&labels=migrate-cppref-page) | `cpp/library/utility/compare/compare_three_way_result` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/compare/compare_weak_order_fallback.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fcompare%2Fcompare_weak_order_fallback.html&labels=migrate-cppref-page) | `cpp/library/utility/compare/compare_weak_order_fallback` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/compare/compare_strong_order_fallback.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fcompare%2Fcompare_strong_order_fallback.html&labels=migrate-cppref-page) | `cpp/library/utility/compare/compare_strong_order_fallback` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/compare/named_comparison_functions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fcompare%2Fnamed_comparison_functions.html&labels=migrate-cppref-page) | `cpp/library/utility/compare/named_comparison_functions` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/compare/partial_order.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fcompare%2Fpartial_order.html&labels=migrate-cppref-page) | `cpp/library/utility/compare/partial_order` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/compare/strong_order.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fcompare%2Fstrong_order.html&labels=migrate-cppref-page) | `cpp/library/utility/compare/strong_order` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/compare/weak_order.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fcompare%2Fweak_order.html&labels=migrate-cppref-page) | `cpp/library/utility/compare/weak_order` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/compare/strong_ordering.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fcompare%2Fstrong_ordering.html&labels=migrate-cppref-page) | `cpp/library/utility/compare/strong_ordering` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/compare/three_way_comparable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fcompare%2Fthree_way_comparable.html&labels=migrate-cppref-page) | `cpp/library/utility/compare/three_way_comparable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/compare/compare_three_way.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fcompare%2Fcompare_three_way.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/compare_three_way` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/compare/compare_partial_order_fallback.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fcompare%2Fcompare_partial_order_fallback.html&labels=migrate-cppref-page) | `cpp/library/utility/compare/compare_partial_order_fallback` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/compare/weak_ordering.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fcompare%2Fweak_ordering.html&labels=migrate-cppref-page) | `cpp/library/utility/compare/weak_ordering` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/compare/partial_ordering.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fcompare%2Fpartial_ordering.html&labels=migrate-cppref-page) | `cpp/library/utility/compare/partial_ordering` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/compare/common_comparison_category.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fcompare%2Fcommon_comparison_category.html&labels=migrate-cppref-page) | `cpp/library/utility/compare/common_comparison_category` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/stacktrace_entry/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fstacktrace_entry%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/error/stacktrace_entry/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/stacktrace_entry/to_string.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fstacktrace_entry%2Fto_string.html&labels=migrate-cppref-page) | `cpp/library/error/stacktrace_entry/to_string` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/stacktrace_entry/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fstacktrace_entry%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/error/stacktrace_entry/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/stacktrace_entry/source_file.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fstacktrace_entry%2Fsource_file.html&labels=migrate-cppref-page) | `cpp/library/error/stacktrace_entry/source_file` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/stacktrace_entry/source_line.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fstacktrace_entry%2Fsource_line.html&labels=migrate-cppref-page) | `cpp/library/error/stacktrace_entry/source_line` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/stacktrace_entry/stacktrace_entry.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fstacktrace_entry%2Fstacktrace_entry.html&labels=migrate-cppref-page) | `cpp/library/error/stacktrace_entry/stacktrace_entry` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/stacktrace_entry/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fstacktrace_entry%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/error/stacktrace_entry/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/stacktrace_entry/operator_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fstacktrace_entry%2Foperator_bool.html&labels=migrate-cppref-page) | `cpp/library/error/stacktrace_entry/operator_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/stacktrace_entry/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fstacktrace_entry%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/error/stacktrace_entry/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/stacktrace_entry/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fstacktrace_entry%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/error/stacktrace_entry/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/stacktrace_entry/description.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fstacktrace_entry%2Fdescription.html&labels=migrate-cppref-page) | `cpp/library/error/stacktrace_entry/description` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/stacktrace_entry/native_handle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fstacktrace_entry%2Fnative_handle.html&labels=migrate-cppref-page) | `cpp/library/error/stacktrace_entry/native_handle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/ranges/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Franges%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/utility/ranges/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/source_location/file_name.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fsource_location%2Ffile_name.html&labels=migrate-cppref-page) | `cpp/library/utility/source_location/file_name` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/source_location/source_location.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fsource_location%2Fsource_location.html&labels=migrate-cppref-page) | `cpp/library/utility/source_location/source_location` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/source_location/line.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fsource_location%2Fline.html&labels=migrate-cppref-page) | `cpp/library/utility/source_location/line` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/source_location/current.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fsource_location%2Fcurrent.html&labels=migrate-cppref-page) | `cpp/library/utility/source_location/current` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/source_location/function_name.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fsource_location%2Ffunction_name.html&labels=migrate-cppref-page) | `cpp/library/utility/source_location/function_name` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/source_location/column.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fsource_location%2Fcolumn.html&labels=migrate-cppref-page) | `cpp/library/utility/source_location/column` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/to_ullong.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Fto_ullong.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/to_ullong` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/test.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Ftest.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/test` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/to_string.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Fto_string.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/to_string` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Freset.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/operator_logic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Foperator_logic.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/operator_logic` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/bitset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Fbitset.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/bitset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/to_ulong.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Fto_ulong.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/to_ulong` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Fcount.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/flip.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Fflip.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/flip` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/operator_ltltgtgt2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Foperator_ltltgtgt2.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/operator_ltltgtgt2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/all_any_none.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Fall_any_none.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/all_any_none` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/operator_logic2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Foperator_logic2.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/operator_logic2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/reference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Freference.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/reference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/bitset/set.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbitset%2Fset.html&labels=migrate-cppref-page) | `cpp/library/utility/bitset/set` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/rel_ops/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Frel_ops%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/utility/rel_ops/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/and_then.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2Fand_then.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/and_then` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/value_or.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2Fvalue_or.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/value_or` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/transform_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2Ftransform_error.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/transform_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/bad_expected_access.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2Fbad_expected_access.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/bad_expected_access` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/unexpect_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2Funexpect_t.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/unexpect_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/or_else.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2For_else.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/or_else` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2Ferror.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/error_or.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2Ferror_or.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/error_or` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/value.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2Fvalue.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/value` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/unexpected.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2Funexpected.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/unexpected` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/expected.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2Fexpected.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/expected` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/operator_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2Foperator_bool.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/operator_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/transform.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2Ftransform.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/transform` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/expected/~expected.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fexpected%2F~expected.html&labels=migrate-cppref-page) | `cpp/library/utility/expected/~expected` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple/make_tuple.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple%2Fmake_tuple.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple/make_tuple` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple/tie.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple%2Ftie.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple/tie` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple/tuple-like.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple%2Ftuple-like.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple/tuple-like` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple/tuple.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple%2Ftuple.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple/tuple` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple/forward_as_tuple.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple%2Fforward_as_tuple.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple/forward_as_tuple` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple/tuple_cat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple%2Ftuple_cat.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple/tuple_cat` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple/ignore.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple%2Fignore.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple/ignore` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple/tuple_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple%2Ftuple_size.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple/tuple_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple/common_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple%2Fcommon_type.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple/common_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple%2Fget.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple/tuple_element.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple%2Ftuple_element.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple/tuple_element` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple/basic_common_reference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple%2Fbasic_common_reference.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple/basic_common_reference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/tuple/uses_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ftuple%2Fuses_allocator.html&labels=migrate-cppref-page) | `cpp/library/utility/tuple/uses_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/hash/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fhash%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/utility/hash/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/hash/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fhash%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/utility/hash/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/multiplies.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fmultiplies.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/multiplies` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/greater_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fgreater_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/greater_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/less_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fless_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/less_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/plus.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fplus.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/plus` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/logical_or_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Flogical_or_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/logical_or_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/not_equal_to_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fnot_equal_to_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/not_equal_to_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/not1.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fnot1.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/not1` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/bit_not.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fbit_not.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/bit_not` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/logical_and.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Flogical_and.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/logical_and` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/invoke.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Finvoke.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/invoke` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/not_equal_to.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fnot_equal_to.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/not_equal_to` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/bind.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fbind.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/bind` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/boyer_moore_searcher.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fboyer_moore_searcher.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/boyer_moore_searcher` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/binary_negate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fbinary_negate.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/binary_negate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/unary_function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Funary_function.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/unary_function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/equal_to.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fequal_to.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/equal_to` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/bit_and.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fbit_and.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/bit_and` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/minus_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fminus_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/minus_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/placeholders.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fplaceholders.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/placeholders` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/divides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fdivides.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/divides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/not_fn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fnot_fn.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/not_fn` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/less.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fless.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/less` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/default_searcher.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fdefault_searcher.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/default_searcher` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/mem_fn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fmem_fn.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/mem_fn` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/mem_fun_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fmem_fun_t.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/mem_fun_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/ref.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fref.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/ref` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/ptr_fun.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fptr_fun.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/ptr_fun` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/mem_fun.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fmem_fun.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/mem_fun` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/binary_function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fbinary_function.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/binary_function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/bind12.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fbind12.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/bind12` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/logical_not.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Flogical_not.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/logical_not` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/identity.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fidentity.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/identity` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/logical_or.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Flogical_or.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/logical_or` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/logical_and_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Flogical_and_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/logical_and_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/boyer_moore_horspool_searcher.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fboyer_moore_horspool_searcher.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/boyer_moore_horspool_searcher` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/modulus.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fmodulus.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/modulus` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/logical_not_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Flogical_not_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/logical_not_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/divides_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fdivides_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/divides_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/plus_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fplus_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/plus_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/bit_not_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fbit_not_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/bit_not_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/mem_fun_ref.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fmem_fun_ref.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/mem_fun_ref` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/modulus_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fmodulus_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/modulus_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/negate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fnegate.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/negate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/minus.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fminus.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/minus` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/reference_wrapper.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Freference_wrapper.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/reference_wrapper` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/multiplies_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fmultiplies_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/multiplies_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/greater_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fgreater_equal.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/greater_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/greater_equal_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fgreater_equal_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/greater_equal_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/is_placeholder.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fis_placeholder.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/is_placeholder` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/bit_or_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fbit_or_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/bit_or_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/pointer_to_unary_function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fpointer_to_unary_function.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/pointer_to_unary_function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/unwrap_reference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Funwrap_reference.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/unwrap_reference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/not2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fnot2.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/not2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/binder12.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fbinder12.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/binder12` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/move_only_function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fmove_only_function.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/move_only_function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/unary_negate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Funary_negate.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/unary_negate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/bit_and_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fbit_and_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/bit_and_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/pointer_to_binary_function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fpointer_to_binary_function.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/pointer_to_binary_function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/negate_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fnegate_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/negate_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/mem_fun_ref_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fmem_fun_ref_t.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/mem_fun_ref_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function_ref.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction_ref.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function_ref` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/is_bind_expression.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fis_bind_expression.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/is_bind_expression` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/bind_front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fbind_front.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/bind_front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/bit_or.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fbit_or.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/bit_or` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/equal_to_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fequal_to_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/equal_to_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/bad_function_call.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fbad_function_call.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/bad_function_call` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/less_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fless_equal.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/less_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/greater.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fgreater.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/greater` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/less_equal_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fless_equal_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/less_equal_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/bit_xor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fbit_xor.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/bit_xor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/copyable_function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fcopyable_function.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/copyable_function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/bit_xor_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fbit_xor_void.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/bit_xor_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/move_only_function/operator==.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fmove_only_function%2Foperator%3D%3D.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/move_only_function/operator==` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/move_only_function/~move_only_function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fmove_only_function%2F~move_only_function.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/move_only_function/~move_only_function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/move_only_function/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fmove_only_function%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/move_only_function/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/move_only_function/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fmove_only_function%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/move_only_function/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/move_only_function/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fmove_only_function%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/utility/functional/move_only_function/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/move_only_function/move_only_function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fmove_only_function%2Fmove_only_function.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/move_only_function/move_only_function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/move_only_function/operator_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fmove_only_function%2Foperator_bool.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/move_only_function/operator_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/move_only_function/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fmove_only_function%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/move_only_function/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/copyable_function/operator==.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fcopyable_function%2Foperator%3D%3D.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/copyable_function/operator==` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/copyable_function/~copyable_function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fcopyable_function%2F~copyable_function.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/copyable_function/~copyable_function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/copyable_function/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fcopyable_function%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/copyable_function/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/copyable_function/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fcopyable_function%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/copyable_function/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/copyable_function/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fcopyable_function%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/utility/functional/copyable_function/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/copyable_function/operator_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fcopyable_function%2Foperator_bool.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/copyable_function/operator_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/copyable_function/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fcopyable_function%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/copyable_function/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/copyable_function/copyable_function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Fcopyable_function%2Fcopyable_function.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/copyable_function/copyable_function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function_ref/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction_ref%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function_ref/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function_ref/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction_ref%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function_ref/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function_ref/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction_ref%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function_ref/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function_ref/function_ref.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction_ref%2Ffunction_ref.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function_ref/function_ref` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/ranges/not_equal_to.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Franges%2Fnot_equal_to.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/ranges/not_equal_to` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/ranges/equal_to.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Franges%2Fequal_to.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/ranges/equal_to` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/ranges/less.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Franges%2Fless.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/ranges/less` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/ranges/greater_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Franges%2Fgreater_equal.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/ranges/greater_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/ranges/less_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Franges%2Fless_equal.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/ranges/less_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/ranges/greater.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Franges%2Fgreater.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/ranges/greater` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function/assign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction%2Fassign.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function/assign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function/~function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction%2F~function.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function/~function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function/target.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction%2Ftarget.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function/target` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function/function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction%2Ffunction.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function/function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function/operator_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction%2Foperator_bool.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function/operator_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function/target_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction%2Ftarget_type.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function/target_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/function/uses_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Ffunction%2Fuses_allocator.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/function/uses_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/reference_wrapper/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Freference_wrapper%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/reference_wrapper/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/reference_wrapper/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Freference_wrapper%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/utility/functional/reference_wrapper/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/reference_wrapper/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Freference_wrapper%2Fget.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/reference_wrapper/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/reference_wrapper/reference_wrapper.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Freference_wrapper%2Freference_wrapper.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/reference_wrapper/reference_wrapper` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/reference_wrapper/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Freference_wrapper%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/reference_wrapper/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/reference_wrapper/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Freference_wrapper%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/reference_wrapper/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/functional/reference_wrapper/basic_common_reference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Ffunctional%2Freference_wrapper%2Fbasic_common_reference.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/reference_wrapper/basic_common_reference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/enable_nonlocking_formatter_optimization.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fenable_nonlocking_formatter_optimization.html&labels=migrate-cppref-page) | `cpp/library/text/format/enable_nonlocking_formatter_optimization` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/spec.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fspec.html&labels=migrate-cppref-page) | `cpp/library/text/format/spec` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/basic_format_string.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fbasic_format_string.html&labels=migrate-cppref-page) | `cpp/library/text/format/basic_format_string` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/vformat_to.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fvformat_to.html&labels=migrate-cppref-page) | `cpp/library/text/format/vformat_to` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/formatted_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fformatted_size.html&labels=migrate-cppref-page) | `cpp/library/text/format/formatted_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/basic_format_args.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fbasic_format_args.html&labels=migrate-cppref-page) | `cpp/library/text/format/basic_format_args` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/visit_format_arg.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fvisit_format_arg.html&labels=migrate-cppref-page) | `cpp/library/text/format/visit_format_arg` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/format_kind.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fformat_kind.html&labels=migrate-cppref-page) | `cpp/library/text/format/format_kind` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/format_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fformat_error.html&labels=migrate-cppref-page) | `cpp/library/text/format/format_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/formattable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fformattable.html&labels=migrate-cppref-page) | `cpp/library/text/format/formattable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/range_format.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Frange_format.html&labels=migrate-cppref-page) | `cpp/library/text/format/range_format` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/basic_format_context.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fbasic_format_context.html&labels=migrate-cppref-page) | `cpp/library/text/format/basic_format_context` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/text/format/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/format.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fformat.html&labels=migrate-cppref-page) | `cpp/library/text/format/format` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/basic_format_arg.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fbasic_format_arg.html&labels=migrate-cppref-page) | `cpp/library/text/format/basic_format_arg` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/format_to.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fformat_to.html&labels=migrate-cppref-page) | `cpp/library/text/format/format_to` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/vformat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fvformat.html&labels=migrate-cppref-page) | `cpp/library/text/format/vformat` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/tuple_formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Ftuple_formatter.html&labels=migrate-cppref-page) | `cpp/library/text/format/tuple_formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/make_format_args.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fmake_format_args.html&labels=migrate-cppref-page) | `cpp/library/text/format/make_format_args` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/basic_format_parse_context.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fbasic_format_parse_context.html&labels=migrate-cppref-page) | `cpp/library/text/format/basic_format_parse_context` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/ranges_formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Franges_formatter.html&labels=migrate-cppref-page) | `cpp/library/text/format/ranges_formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/format_to_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fformat_to_n.html&labels=migrate-cppref-page) | `cpp/library/text/format/format_to_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/range_formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Frange_formatter.html&labels=migrate-cppref-page) | `cpp/library/text/format/range_formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/runtime_format.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fruntime_format.html&labels=migrate-cppref-page) | `cpp/library/text/format/runtime_format` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/ranges_formatter/range_default_formatter_string.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Franges_formatter%2Frange_default_formatter_string.html&labels=migrate-cppref-page) | `cpp/library/text/format/ranges_formatter/range_default_formatter_string` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/ranges_formatter/range_default_formatter_map.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Franges_formatter%2Frange_default_formatter_map.html&labels=migrate-cppref-page) | `cpp/library/text/format/ranges_formatter/range_default_formatter_map` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/ranges_formatter/range_default_formatter_set.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Franges_formatter%2Frange_default_formatter_set.html&labels=migrate-cppref-page) | `cpp/library/text/format/ranges_formatter/range_default_formatter_set` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/ranges_formatter/range_default_formatter_sequence.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Franges_formatter%2Frange_default_formatter_sequence.html&labels=migrate-cppref-page) | `cpp/library/text/format/ranges_formatter/range_default_formatter_sequence` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/format/basic_format_arg/handle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fformat%2Fbasic_format_arg%2Fhandle.html&labels=migrate-cppref-page) | `cpp/library/text/format/basic_format_arg/handle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/make_optional.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Fmake_optional.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/make_optional` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/and_then.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Fand_then.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/and_then` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/nullopt_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Fnullopt_t.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/nullopt_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/value_or.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Fvalue_or.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/value_or` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/nullopt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Fnullopt.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/nullopt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Fend.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/or_else.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2For_else.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/or_else` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Freset.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/bad_optional_access.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Fbad_optional_access.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/bad_optional_access` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/~optional.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2F~optional.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/~optional` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/value.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Fvalue.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/value` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/operator_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Foperator_bool.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/operator_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/optional.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Foptional.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/optional` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/optional/transform.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Foptional%2Ftransform.html&labels=migrate-cppref-page) | `cpp/library/utility/optional/transform` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/initializer_list/end2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Finitializer_list%2Fend2.html&labels=migrate-cppref-page) | `cpp/library/utility/initializer_list/end2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/initializer_list/initializer_list.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Finitializer_list%2Finitializer_list.html&labels=migrate-cppref-page) | `cpp/library/utility/initializer_list/initializer_list` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/initializer_list/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Finitializer_list%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/utility/initializer_list/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/initializer_list/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Finitializer_list%2Fend.html&labels=migrate-cppref-page) | `cpp/library/utility/initializer_list/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/initializer_list/begin2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Finitializer_list%2Fbegin2.html&labels=migrate-cppref-page) | `cpp/library/utility/initializer_list/begin2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/initializer_list/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Finitializer_list%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/utility/initializer_list/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program/at_quick_exit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram%2Fat_quick_exit.html&labels=migrate-cppref-page) | `cpp/library/utility/program/at_quick_exit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program/raise.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram%2Fraise.html&labels=migrate-cppref-page) | `cpp/library/utility/program/raise` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program/EXIT_status.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram%2FEXIT_status.html&labels=migrate-cppref-page) | `cpp/library/utility/program/EXIT_status` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program/longjmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram%2Flongjmp.html&labels=migrate-cppref-page) | `cpp/library/utility/program/longjmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program/jmp_buf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram%2Fjmp_buf.html&labels=migrate-cppref-page) | `cpp/library/utility/program/jmp_buf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program/quick_exit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram%2Fquick_exit.html&labels=migrate-cppref-page) | `cpp/library/utility/program/quick_exit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program/atexit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram%2Fatexit.html&labels=migrate-cppref-page) | `cpp/library/utility/program/atexit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program/signal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram%2Fsignal.html&labels=migrate-cppref-page) | `cpp/library/utility/program/signal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program/sig_atomic_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram%2Fsig_atomic_t.html&labels=migrate-cppref-page) | `cpp/library/utility/program/sig_atomic_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program/SIG_types.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram%2FSIG_types.html&labels=migrate-cppref-page) | `cpp/library/utility/program/SIG_types` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program/abort.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram%2Fabort.html&labels=migrate-cppref-page) | `cpp/library/utility/program/abort` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program/system.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram%2Fsystem.html&labels=migrate-cppref-page) | `cpp/library/utility/program/system` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program/exit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram%2Fexit.html&labels=migrate-cppref-page) | `cpp/library/utility/program/exit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program/setjmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram%2Fsetjmp.html&labels=migrate-cppref-page) | `cpp/library/utility/program/setjmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program/_Exit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram%2F_Exit.html&labels=migrate-cppref-page) | `cpp/library/utility/program/_Exit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program/getenv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram%2Fgetenv.html&labels=migrate-cppref-page) | `cpp/library/utility/program/getenv` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program/SIG_strategies.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram%2FSIG_strategies.html&labels=migrate-cppref-page) | `cpp/library/utility/program/SIG_strategies` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/program/SIG_ERR.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fprogram%2FSIG_ERR.html&labels=migrate-cppref-page) | `cpp/library/utility/program/SIG_ERR` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Fat.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/to_string.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Fto_string.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/to_string` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/basic_stacktrace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Fbasic_stacktrace.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/basic_stacktrace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Fend.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Frend.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/current.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Fcurrent.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/current` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/~basic_stacktrace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2F~basic_stacktrace.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/~basic_stacktrace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/get_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Fget_allocator.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/get_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/basic_stacktrace/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fbasic_stacktrace%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/error/basic_stacktrace/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/monostate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Fmonostate.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/monostate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/index.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Findex.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/index` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/valueless_by_exception.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Fvalueless_by_exception.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/valueless_by_exception` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/variant_alternative.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Fvariant_alternative.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/variant_alternative` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/variant.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Fvariant.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/variant` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/visit2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Fvisit2.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/visit2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Fget.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/visit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Fvisit.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/visit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/variant_npos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Fvariant_npos.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/variant_npos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/get_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Fget_if.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/get_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/holds_alternative.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Fholds_alternative.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/holds_alternative` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/variant_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Fvariant_size.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/variant_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/bad_variant_access.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Fbad_variant_access.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/bad_variant_access` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/variant/~variant.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fvariant%2F~variant.html&labels=migrate-cppref-page) | `cpp/library/utility/variant/~variant` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/promise.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpromise.html&labels=migrate-cppref-page) | `cpp/library/atomic/promise` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/scoped_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fscoped_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/scoped_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/latch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Flatch.html&labels=migrate-cppref-page) | `cpp/library/atomic/latch` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture.html&labels=migrate-cppref-page) | `cpp/library/atomic/future` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fmutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/jthread.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fjthread.html&labels=migrate-cppref-page) | `cpp/library/atomic/jthread` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/thread.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthread.html&labels=migrate-cppref-page) | `cpp/library/atomic/thread` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/async.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fasync.html&labels=migrate-cppref-page) | `cpp/library/atomic/async` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/packaged_task.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpackaged_task.html&labels=migrate-cppref-page) | `cpp/library/atomic/packaged_task` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/condition_variable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcondition_variable.html&labels=migrate-cppref-page) | `cpp/library/atomic/condition_variable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future_category.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture_category.html&labels=migrate-cppref-page) | `cpp/library/atomic/future_category` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/lock_tag_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Flock_tag_t.html&labels=migrate-cppref-page) | `cpp/library/atomic/lock_tag_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/get_id.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fget_id.html&labels=migrate-cppref-page) | `cpp/library/atomic/get_id` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/barrier.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fbarrier.html&labels=migrate-cppref-page) | `cpp/library/atomic/barrier` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_callback_for_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_callback_for_t.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_callback_for_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/timed_mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ftimed_mutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/timed_mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_timed_mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_timed_mutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_timed_mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_future.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_future.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_future` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future_status.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture_status.html&labels=migrate-cppref-page) | `cpp/library/atomic/future_status` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture_error.html&labels=migrate-cppref-page) | `cpp/library/atomic/future_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/hardware_destructive_interference_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fhardware_destructive_interference_size.html&labels=migrate-cppref-page) | `cpp/library/atomic/hardware_destructive_interference_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future_errc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture_errc.html&labels=migrate-cppref-page) | `cpp/library/atomic/future_errc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/sleep_for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fsleep_for.html&labels=migrate-cppref-page) | `cpp/library/atomic/sleep_for` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/call_once.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcall_once.html&labels=migrate-cppref-page) | `cpp/library/atomic/call_once` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/cv_status.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcv_status.html&labels=migrate-cppref-page) | `cpp/library/atomic/cv_status` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/lock_tag.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Flock_tag.html&labels=migrate-cppref-page) | `cpp/library/atomic/lock_tag` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/recursive_timed_mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Frecursive_timed_mutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/recursive_timed_mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/recursive_mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Frecursive_mutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/recursive_mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Flock.html&labels=migrate-cppref-page) | `cpp/library/atomic/lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_callback.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_callback.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_callback` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_token.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_token.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_token` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/notify_all_at_thread_exit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fnotify_all_at_thread_exit.html&labels=migrate-cppref-page) | `cpp/library/atomic/notify_all_at_thread_exit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/lock_guard.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Flock_guard.html&labels=migrate-cppref-page) | `cpp/library/atomic/lock_guard` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/counting_semaphore.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcounting_semaphore.html&labels=migrate-cppref-page) | `cpp/library/atomic/counting_semaphore` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/unstoppable_token.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Funstoppable_token.html&labels=migrate-cppref-page) | `cpp/library/atomic/unstoppable_token` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/yield.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fyield.html&labels=migrate-cppref-page) | `cpp/library/atomic/yield` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/try_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ftry_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/try_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/once_flag.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fonce_flag.html&labels=migrate-cppref-page) | `cpp/library/atomic/once_flag` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/unique_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Funique_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/unique_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_source.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_source.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_source` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/condition_variable_any.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcondition_variable_any.html&labels=migrate-cppref-page) | `cpp/library/atomic/condition_variable_any` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_mutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/sleep_until.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fsleep_until.html&labels=migrate-cppref-page) | `cpp/library/atomic/sleep_until` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stoppable_token.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstoppable_token.html&labels=migrate-cppref-page) | `cpp/library/atomic/stoppable_token` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/launch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Flaunch.html&labels=migrate-cppref-page) | `cpp/library/atomic/launch` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/never_stop_token.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fnever_stop_token.html&labels=migrate-cppref-page) | `cpp/library/atomic/never_stop_token` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/mutex/~mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fmutex%2F~mutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/mutex/~mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/mutex/mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fmutex%2Fmutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/mutex/mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/mutex/lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fmutex%2Flock.html&labels=migrate-cppref-page) | `cpp/library/atomic/mutex/lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/mutex/try_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fmutex%2Ftry_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/mutex/try_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/mutex/native_handle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fmutex%2Fnative_handle.html&labels=migrate-cppref-page) | `cpp/library/atomic/mutex/native_handle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/mutex/unlock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fmutex%2Funlock.html&labels=migrate-cppref-page) | `cpp/library/atomic/mutex/unlock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/barrier/barrier.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fbarrier%2Fbarrier.html&labels=migrate-cppref-page) | `cpp/library/atomic/barrier/barrier` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/barrier/arrive.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fbarrier%2Farrive.html&labels=migrate-cppref-page) | `cpp/library/atomic/barrier/arrive` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/barrier/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fbarrier%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/atomic/barrier/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/barrier/arrive_and_wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fbarrier%2Farrive_and_wait.html&labels=migrate-cppref-page) | `cpp/library/atomic/barrier/arrive_and_wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/barrier/wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fbarrier%2Fwait.html&labels=migrate-cppref-page) | `cpp/library/atomic/barrier/wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/barrier/~barrier.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fbarrier%2F~barrier.html&labels=migrate-cppref-page) | `cpp/library/atomic/barrier/~barrier` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/barrier/arrive_and_drop.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fbarrier%2Farrive_and_drop.html&labels=migrate-cppref-page) | `cpp/library/atomic/barrier/arrive_and_drop` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_future/wait_for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_future%2Fwait_for.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_future/wait_for` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_future/shared_future.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_future%2Fshared_future.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_future/shared_future` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_future/valid.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_future%2Fvalid.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_future/valid` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_future/wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_future%2Fwait.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_future/wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_future/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_future%2Fget.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_future/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_future/~shared_future.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_future%2F~shared_future.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_future/~shared_future` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_future/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_future%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_future/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_future/wait_until.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_future%2Fwait_until.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_future/wait_until` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/latch/~latch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Flatch%2F~latch.html&labels=migrate-cppref-page) | `cpp/library/atomic/latch/~latch` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/latch/latch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Flatch%2Flatch.html&labels=migrate-cppref-page) | `cpp/library/atomic/latch/latch` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/latch/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Flatch%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/atomic/latch/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/latch/arrive_and_wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Flatch%2Farrive_and_wait.html&labels=migrate-cppref-page) | `cpp/library/atomic/latch/arrive_and_wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/latch/wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Flatch%2Fwait.html&labels=migrate-cppref-page) | `cpp/library/atomic/latch/wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/latch/count_down.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Flatch%2Fcount_down.html&labels=migrate-cppref-page) | `cpp/library/atomic/latch/count_down` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/latch/try_wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Flatch%2Ftry_wait.html&labels=migrate-cppref-page) | `cpp/library/atomic/latch/try_wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_lock/shared_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_lock%2Fshared_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_lock/shared_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_lock/mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_lock%2Fmutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_lock/mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_lock/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_lock%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_lock/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_lock/try_lock_for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_lock%2Ftry_lock_for.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_lock/try_lock_for` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_lock/owns_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_lock%2Fowns_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_lock/owns_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_lock/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_lock%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_lock/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_lock/~shared_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_lock%2F~shared_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_lock/~shared_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_lock/lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_lock%2Flock.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_lock/lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_lock/release.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_lock%2Frelease.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_lock/release` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_lock/try_lock_until.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_lock%2Ftry_lock_until.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_lock/try_lock_until` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_lock/try_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_lock%2Ftry_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_lock/try_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_lock/operator_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_lock%2Foperator_bool.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_lock/operator_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_lock/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_lock%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_lock/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_lock/unlock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_lock%2Funlock.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_lock/unlock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/promise/promise.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpromise%2Fpromise.html&labels=migrate-cppref-page) | `cpp/library/atomic/promise/promise` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/promise/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpromise%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/atomic/promise/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/promise/get_future.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpromise%2Fget_future.html&labels=migrate-cppref-page) | `cpp/library/atomic/promise/get_future` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/promise/set_exception_at_thread_exit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpromise%2Fset_exception_at_thread_exit.html&labels=migrate-cppref-page) | `cpp/library/atomic/promise/set_exception_at_thread_exit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/promise/~promise.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpromise%2F~promise.html&labels=migrate-cppref-page) | `cpp/library/atomic/promise/~promise` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/promise/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpromise%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/atomic/promise/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/promise/set_value_at_thread_exit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpromise%2Fset_value_at_thread_exit.html&labels=migrate-cppref-page) | `cpp/library/atomic/promise/set_value_at_thread_exit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/promise/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpromise%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/atomic/promise/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/promise/set_exception.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpromise%2Fset_exception.html&labels=migrate-cppref-page) | `cpp/library/atomic/promise/set_exception` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/promise/set_value.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpromise%2Fset_value.html&labels=migrate-cppref-page) | `cpp/library/atomic/promise/set_value` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/promise/uses_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpromise%2Fuses_allocator.html&labels=migrate-cppref-page) | `cpp/library/atomic/promise/uses_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/recursive_timed_mutex/~recursive_timed_mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Frecursive_timed_mutex%2F~recursive_timed_mutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/recursive_timed_mutex/~recursive_timed_mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/recursive_timed_mutex/try_lock_for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Frecursive_timed_mutex%2Ftry_lock_for.html&labels=migrate-cppref-page) | `cpp/library/atomic/recursive_timed_mutex/try_lock_for` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/recursive_timed_mutex/recursive_timed_mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Frecursive_timed_mutex%2Frecursive_timed_mutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/recursive_timed_mutex/recursive_timed_mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/recursive_timed_mutex/lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Frecursive_timed_mutex%2Flock.html&labels=migrate-cppref-page) | `cpp/library/atomic/recursive_timed_mutex/lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/recursive_timed_mutex/try_lock_until.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Frecursive_timed_mutex%2Ftry_lock_until.html&labels=migrate-cppref-page) | `cpp/library/atomic/recursive_timed_mutex/try_lock_until` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/recursive_timed_mutex/try_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Frecursive_timed_mutex%2Ftry_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/recursive_timed_mutex/try_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/recursive_timed_mutex/native_handle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Frecursive_timed_mutex%2Fnative_handle.html&labels=migrate-cppref-page) | `cpp/library/atomic/recursive_timed_mutex/native_handle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/recursive_timed_mutex/unlock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Frecursive_timed_mutex%2Funlock.html&labels=migrate-cppref-page) | `cpp/library/atomic/recursive_timed_mutex/unlock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/timed_mutex/try_lock_for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ftimed_mutex%2Ftry_lock_for.html&labels=migrate-cppref-page) | `cpp/library/atomic/timed_mutex/try_lock_for` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/timed_mutex/timed_mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ftimed_mutex%2Ftimed_mutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/timed_mutex/timed_mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/timed_mutex/lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ftimed_mutex%2Flock.html&labels=migrate-cppref-page) | `cpp/library/atomic/timed_mutex/lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/timed_mutex/try_lock_until.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ftimed_mutex%2Ftry_lock_until.html&labels=migrate-cppref-page) | `cpp/library/atomic/timed_mutex/try_lock_until` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/timed_mutex/try_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ftimed_mutex%2Ftry_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/timed_mutex/try_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/timed_mutex/native_handle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ftimed_mutex%2Fnative_handle.html&labels=migrate-cppref-page) | `cpp/library/atomic/timed_mutex/native_handle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/timed_mutex/~timed_mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ftimed_mutex%2F~timed_mutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/timed_mutex/~timed_mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/timed_mutex/unlock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ftimed_mutex%2Funlock.html&labels=migrate-cppref-page) | `cpp/library/atomic/timed_mutex/unlock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/packaged_task/packaged_task.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpackaged_task%2Fpackaged_task.html&labels=migrate-cppref-page) | `cpp/library/atomic/packaged_task/packaged_task` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/packaged_task/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpackaged_task%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/atomic/packaged_task/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/packaged_task/make_ready_at_thread_exit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpackaged_task%2Fmake_ready_at_thread_exit.html&labels=migrate-cppref-page) | `cpp/library/atomic/packaged_task/make_ready_at_thread_exit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/packaged_task/get_future.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpackaged_task%2Fget_future.html&labels=migrate-cppref-page) | `cpp/library/atomic/packaged_task/get_future` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/packaged_task/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpackaged_task%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/atomic/packaged_task/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/packaged_task/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpackaged_task%2Freset.html&labels=migrate-cppref-page) | `cpp/library/atomic/packaged_task/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/packaged_task/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpackaged_task%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/atomic/packaged_task/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/packaged_task/valid.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpackaged_task%2Fvalid.html&labels=migrate-cppref-page) | `cpp/library/atomic/packaged_task/valid` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/packaged_task/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpackaged_task%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/atomic/packaged_task/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/packaged_task/~packaged_task.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpackaged_task%2F~packaged_task.html&labels=migrate-cppref-page) | `cpp/library/atomic/packaged_task/~packaged_task` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/packaged_task/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpackaged_task%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/atomic/packaged_task/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/packaged_task/uses_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fpackaged_task%2Fuses_allocator.html&labels=migrate-cppref-page) | `cpp/library/atomic/packaged_task/uses_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future/future.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture%2Ffuture.html&labels=migrate-cppref-page) | `cpp/library/atomic/future/future` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future/~future.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture%2F~future.html&labels=migrate-cppref-page) | `cpp/library/atomic/future/~future` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future/share.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture%2Fshare.html&labels=migrate-cppref-page) | `cpp/library/atomic/future/share` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future/wait_for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture%2Fwait_for.html&labels=migrate-cppref-page) | `cpp/library/atomic/future/wait_for` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future/valid.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture%2Fvalid.html&labels=migrate-cppref-page) | `cpp/library/atomic/future/valid` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future/wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture%2Fwait.html&labels=migrate-cppref-page) | `cpp/library/atomic/future/wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture%2Fget.html&labels=migrate-cppref-page) | `cpp/library/atomic/future/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/atomic/future/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future/wait_until.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture%2Fwait_until.html&labels=migrate-cppref-page) | `cpp/library/atomic/future/wait_until` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/scoped_lock/scoped_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fscoped_lock%2Fscoped_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/scoped_lock/scoped_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/scoped_lock/~scoped_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fscoped_lock%2F~scoped_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/scoped_lock/~scoped_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/condition_variable/notify_all.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcondition_variable%2Fnotify_all.html&labels=migrate-cppref-page) | `cpp/library/atomic/condition_variable/notify_all` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/condition_variable/condition_variable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcondition_variable%2Fcondition_variable.html&labels=migrate-cppref-page) | `cpp/library/atomic/condition_variable/condition_variable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/condition_variable/wait_for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcondition_variable%2Fwait_for.html&labels=migrate-cppref-page) | `cpp/library/atomic/condition_variable/wait_for` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/condition_variable/~condition_variable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcondition_variable%2F~condition_variable.html&labels=migrate-cppref-page) | `cpp/library/atomic/condition_variable/~condition_variable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/condition_variable/notify_one.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcondition_variable%2Fnotify_one.html&labels=migrate-cppref-page) | `cpp/library/atomic/condition_variable/notify_one` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/condition_variable/wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcondition_variable%2Fwait.html&labels=migrate-cppref-page) | `cpp/library/atomic/condition_variable/wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/condition_variable/wait_until.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcondition_variable%2Fwait_until.html&labels=migrate-cppref-page) | `cpp/library/atomic/condition_variable/wait_until` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/condition_variable/native_handle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcondition_variable%2Fnative_handle.html&labels=migrate-cppref-page) | `cpp/library/atomic/condition_variable/native_handle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/lock_guard/~lock_guard.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Flock_guard%2F~lock_guard.html&labels=migrate-cppref-page) | `cpp/library/atomic/lock_guard/~lock_guard` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/lock_guard/lock_guard.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Flock_guard%2Flock_guard.html&labels=migrate-cppref-page) | `cpp/library/atomic/lock_guard/lock_guard` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_callback/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_callback%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_callback/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_callback/stop_callback.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_callback%2Fstop_callback.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_callback/stop_callback` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_callback/~stop_callback.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_callback%2F~stop_callback.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_callback/~stop_callback` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_token/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_token%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_token/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_token/stop_requested.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_token%2Fstop_requested.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_token/stop_requested` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_token/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_token%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_token/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_token/stop_possible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_token%2Fstop_possible.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_token/stop_possible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_token/stop_token.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_token%2Fstop_token.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_token/stop_token` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_token/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_token%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_token/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_token/~stop_token.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_token%2F~stop_token.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_token/~stop_token` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_token/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_token%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_token/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/jthread/~jthread.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fjthread%2F~jthread.html&labels=migrate-cppref-page) | `cpp/library/atomic/jthread/~jthread` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/jthread/request_stop.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fjthread%2Frequest_stop.html&labels=migrate-cppref-page) | `cpp/library/atomic/jthread/request_stop` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/jthread/join.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fjthread%2Fjoin.html&labels=migrate-cppref-page) | `cpp/library/atomic/jthread/join` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/jthread/get_stop_source.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fjthread%2Fget_stop_source.html&labels=migrate-cppref-page) | `cpp/library/atomic/jthread/get_stop_source` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/jthread/jthread.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fjthread%2Fjthread.html&labels=migrate-cppref-page) | `cpp/library/atomic/jthread/jthread` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/jthread/get_id.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fjthread%2Fget_id.html&labels=migrate-cppref-page) | `cpp/library/atomic/jthread/get_id` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/jthread/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fjthread%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/atomic/jthread/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/jthread/get_stop_token.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fjthread%2Fget_stop_token.html&labels=migrate-cppref-page) | `cpp/library/atomic/jthread/get_stop_token` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/jthread/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fjthread%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/atomic/jthread/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/jthread/joinable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fjthread%2Fjoinable.html&labels=migrate-cppref-page) | `cpp/library/atomic/jthread/joinable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/jthread/detach.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fjthread%2Fdetach.html&labels=migrate-cppref-page) | `cpp/library/atomic/jthread/detach` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/jthread/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fjthread%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/atomic/jthread/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/jthread/hardware_concurrency.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fjthread%2Fhardware_concurrency.html&labels=migrate-cppref-page) | `cpp/library/atomic/jthread/hardware_concurrency` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/jthread/native_handle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fjthread%2Fnative_handle.html&labels=migrate-cppref-page) | `cpp/library/atomic/jthread/native_handle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/unique_lock/mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Funique_lock%2Fmutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/unique_lock/mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/unique_lock/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Funique_lock%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/atomic/unique_lock/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/unique_lock/try_lock_for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Funique_lock%2Ftry_lock_for.html&labels=migrate-cppref-page) | `cpp/library/atomic/unique_lock/try_lock_for` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/unique_lock/owns_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Funique_lock%2Fowns_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/unique_lock/owns_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/unique_lock/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Funique_lock%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/atomic/unique_lock/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/unique_lock/lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Funique_lock%2Flock.html&labels=migrate-cppref-page) | `cpp/library/atomic/unique_lock/lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/unique_lock/release.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Funique_lock%2Frelease.html&labels=migrate-cppref-page) | `cpp/library/atomic/unique_lock/release` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/unique_lock/~unique_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Funique_lock%2F~unique_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/unique_lock/~unique_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/unique_lock/try_lock_until.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Funique_lock%2Ftry_lock_until.html&labels=migrate-cppref-page) | `cpp/library/atomic/unique_lock/try_lock_until` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/unique_lock/try_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Funique_lock%2Ftry_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/unique_lock/try_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/unique_lock/operator_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Funique_lock%2Foperator_bool.html&labels=migrate-cppref-page) | `cpp/library/atomic/unique_lock/operator_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/unique_lock/unique_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Funique_lock%2Funique_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/unique_lock/unique_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/unique_lock/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Funique_lock%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/atomic/unique_lock/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/unique_lock/unlock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Funique_lock%2Funlock.html&labels=migrate-cppref-page) | `cpp/library/atomic/unique_lock/unlock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/counting_semaphore/~counting_semaphore.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcounting_semaphore%2F~counting_semaphore.html&labels=migrate-cppref-page) | `cpp/library/atomic/counting_semaphore/~counting_semaphore` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/counting_semaphore/try_acquire.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcounting_semaphore%2Ftry_acquire.html&labels=migrate-cppref-page) | `cpp/library/atomic/counting_semaphore/try_acquire` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/counting_semaphore/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcounting_semaphore%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/atomic/counting_semaphore/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/counting_semaphore/try_acquire_for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcounting_semaphore%2Ftry_acquire_for.html&labels=migrate-cppref-page) | `cpp/library/atomic/counting_semaphore/try_acquire_for` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/counting_semaphore/release.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcounting_semaphore%2Frelease.html&labels=migrate-cppref-page) | `cpp/library/atomic/counting_semaphore/release` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/counting_semaphore/counting_semaphore.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcounting_semaphore%2Fcounting_semaphore.html&labels=migrate-cppref-page) | `cpp/library/atomic/counting_semaphore/counting_semaphore` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/counting_semaphore/acquire.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcounting_semaphore%2Facquire.html&labels=migrate-cppref-page) | `cpp/library/atomic/counting_semaphore/acquire` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/counting_semaphore/try_acquire_until.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcounting_semaphore%2Ftry_acquire_until.html&labels=migrate-cppref-page) | `cpp/library/atomic/counting_semaphore/try_acquire_until` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/thread/join.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthread%2Fjoin.html&labels=migrate-cppref-page) | `cpp/library/atomic/thread/join` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/thread/~thread.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthread%2F~thread.html&labels=migrate-cppref-page) | `cpp/library/atomic/thread/~thread` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/thread/thread.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthread%2Fthread.html&labels=migrate-cppref-page) | `cpp/library/atomic/thread/thread` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/thread/get_id.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthread%2Fget_id.html&labels=migrate-cppref-page) | `cpp/library/atomic/thread/get_id` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/thread/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthread%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/atomic/thread/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/thread/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthread%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/atomic/thread/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/thread/id.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthread%2Fid.html&labels=migrate-cppref-page) | `cpp/library/atomic/thread/id` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/thread/joinable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthread%2Fjoinable.html&labels=migrate-cppref-page) | `cpp/library/atomic/thread/joinable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/thread/detach.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthread%2Fdetach.html&labels=migrate-cppref-page) | `cpp/library/atomic/thread/detach` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/thread/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthread%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/atomic/thread/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/thread/hardware_concurrency.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthread%2Fhardware_concurrency.html&labels=migrate-cppref-page) | `cpp/library/atomic/thread/hardware_concurrency` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/thread/native_handle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthread%2Fnative_handle.html&labels=migrate-cppref-page) | `cpp/library/atomic/thread/native_handle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/thread/id/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthread%2Fid%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/atomic/thread/id/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/thread/id/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthread%2Fid%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/atomic/thread/id/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/thread/id/id.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthread%2Fid%2Fid.html&labels=migrate-cppref-page) | `cpp/library/atomic/thread/id/id` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/thread/id/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthread%2Fid%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/atomic/thread/id/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/thread/id/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthread%2Fid%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/atomic/thread/id/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_mutex/unlock_shared.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_mutex%2Funlock_shared.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_mutex/unlock_shared` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_mutex/lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_mutex%2Flock.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_mutex/lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_mutex/~shared_mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_mutex%2F~shared_mutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_mutex/~shared_mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_mutex/try_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_mutex%2Ftry_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_mutex/try_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_mutex/shared_mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_mutex%2Fshared_mutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_mutex/shared_mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_mutex/native_handle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_mutex%2Fnative_handle.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_mutex/native_handle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_mutex/lock_shared.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_mutex%2Flock_shared.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_mutex/lock_shared` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_mutex/try_lock_shared.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_mutex%2Ftry_lock_shared.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_mutex/try_lock_shared` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_mutex/unlock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_mutex%2Funlock.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_mutex/unlock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_source/request_stop.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_source%2Frequest_stop.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_source/request_stop` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_source/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_source%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_source/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_source/stop_requested.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_source%2Fstop_requested.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_source/stop_requested` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_source/nostopstate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_source%2Fnostopstate.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_source/nostopstate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_source/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_source%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_source/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_source/get_token.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_source%2Fget_token.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_source/get_token` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_source/stop_possible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_source%2Fstop_possible.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_source/stop_possible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_source/nostopstate_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_source%2Fnostopstate_t.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_source/nostopstate_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_source/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_source%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_source/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_source/~stop_source.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_source%2F~stop_source.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_source/~stop_source` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_source/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_source%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_source/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/stop_source/stop_source.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fstop_source%2Fstop_source.html&labels=migrate-cppref-page) | `cpp/library/atomic/stop_source/stop_source` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_timed_mutex/unlock_shared.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_timed_mutex%2Funlock_shared.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_timed_mutex/unlock_shared` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_timed_mutex/try_lock_for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_timed_mutex%2Ftry_lock_for.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_timed_mutex/try_lock_for` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_timed_mutex/try_lock_shared_for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_timed_mutex%2Ftry_lock_shared_for.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_timed_mutex/try_lock_shared_for` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_timed_mutex/shared_timed_mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_timed_mutex%2Fshared_timed_mutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_timed_mutex/shared_timed_mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_timed_mutex/try_lock_shared_until.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_timed_mutex%2Ftry_lock_shared_until.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_timed_mutex/try_lock_shared_until` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_timed_mutex/lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_timed_mutex%2Flock.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_timed_mutex/lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_timed_mutex/~shared_timed_mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_timed_mutex%2F~shared_timed_mutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_timed_mutex/~shared_timed_mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_timed_mutex/try_lock_until.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_timed_mutex%2Ftry_lock_until.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_timed_mutex/try_lock_until` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_timed_mutex/try_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_timed_mutex%2Ftry_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_timed_mutex/try_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_timed_mutex/lock_shared.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_timed_mutex%2Flock_shared.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_timed_mutex/lock_shared` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_timed_mutex/try_lock_shared.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_timed_mutex%2Ftry_lock_shared.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_timed_mutex/try_lock_shared` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/shared_timed_mutex/unlock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fshared_timed_mutex%2Funlock.html&labels=migrate-cppref-page) | `cpp/library/atomic/shared_timed_mutex/unlock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/recursive_mutex/recursive_mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Frecursive_mutex%2Frecursive_mutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/recursive_mutex/recursive_mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/recursive_mutex/lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Frecursive_mutex%2Flock.html&labels=migrate-cppref-page) | `cpp/library/atomic/recursive_mutex/lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/recursive_mutex/~recursive_mutex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Frecursive_mutex%2F~recursive_mutex.html&labels=migrate-cppref-page) | `cpp/library/atomic/recursive_mutex/~recursive_mutex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/recursive_mutex/try_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Frecursive_mutex%2Ftry_lock.html&labels=migrate-cppref-page) | `cpp/library/atomic/recursive_mutex/try_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/recursive_mutex/native_handle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Frecursive_mutex%2Fnative_handle.html&labels=migrate-cppref-page) | `cpp/library/atomic/recursive_mutex/native_handle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/recursive_mutex/unlock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Frecursive_mutex%2Funlock.html&labels=migrate-cppref-page) | `cpp/library/atomic/recursive_mutex/unlock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future_error/future_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture_error%2Ffuture_error.html&labels=migrate-cppref-page) | `cpp/library/atomic/future_error/future_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future_error/what.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture_error%2Fwhat.html&labels=migrate-cppref-page) | `cpp/library/atomic/future_error/what` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future_error/code.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture_error%2Fcode.html&labels=migrate-cppref-page) | `cpp/library/atomic/future_error/code` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future_error/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture_error%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/atomic/future_error/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future_errc/make_error_code.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture_errc%2Fmake_error_code.html&labels=migrate-cppref-page) | `cpp/library/atomic/future_errc/make_error_code` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future_errc/make_error_condition.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture_errc%2Fmake_error_condition.html&labels=migrate-cppref-page) | `cpp/library/atomic/future_errc/make_error_condition` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/future_errc/is_error_code_enum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Ffuture_errc%2Fis_error_code_enum.html&labels=migrate-cppref-page) | `cpp/library/atomic/future_errc/is_error_code_enum` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/condition_variable_any/notify_all.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcondition_variable_any%2Fnotify_all.html&labels=migrate-cppref-page) | `cpp/library/atomic/condition_variable_any/notify_all` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/condition_variable_any/wait_for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcondition_variable_any%2Fwait_for.html&labels=migrate-cppref-page) | `cpp/library/atomic/condition_variable_any/wait_for` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/condition_variable_any/notify_one.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcondition_variable_any%2Fnotify_one.html&labels=migrate-cppref-page) | `cpp/library/atomic/condition_variable_any/notify_one` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/condition_variable_any/wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcondition_variable_any%2Fwait.html&labels=migrate-cppref-page) | `cpp/library/atomic/condition_variable_any/wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/condition_variable_any/~condition_variable_any.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcondition_variable_any%2F~condition_variable_any.html&labels=migrate-cppref-page) | `cpp/library/atomic/condition_variable_any/~condition_variable_any` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/condition_variable_any/condition_variable_any.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcondition_variable_any%2Fcondition_variable_any.html&labels=migrate-cppref-page) | `cpp/library/atomic/condition_variable_any/condition_variable_any` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/condition_variable_any/wait_until.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fcondition_variable_any%2Fwait_until.html&labels=migrate-cppref-page) | `cpp/library/atomic/condition_variable_any/wait_until` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/rel_ops.html) | N/A | `cpp/symbol_index/rel_ops(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/this_thread.html) | N/A | `cpp/symbol_index/this_thread(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/ranges.html) | N/A | `cpp/symbol_index/ranges(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/placeholders.html) | N/A | `cpp/symbol_index/placeholders(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/literals.html) | N/A | `cpp/symbol_index/literals(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/filesystem.html) | N/A | `cpp/symbol_index/filesystem(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/linalg.html) | N/A | `cpp/symbol_index/linalg(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/views.html) | N/A | `cpp/symbol_index/views(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/complex_literals.html) | N/A | `cpp/symbol_index/complex_literals(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/macro.html) | N/A | `cpp/symbol_index/macro(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/string_literals.html) | N/A | `cpp/symbol_index/string_literals(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/chrono.html) | N/A | `cpp/symbol_index/chrono(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/zombie_names.html) | N/A | `cpp/symbol_index/zombie_names(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/execution.html) | N/A | `cpp/symbol_index/execution(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/pmr.html) | N/A | `cpp/symbol_index/pmr(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/regex_constants.html) | N/A | `cpp/symbol_index/regex_constants(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/chrono_literals.html) | N/A | `cpp/symbol_index/chrono_literals(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/expos.html) | N/A | `cpp/symbol_index/expos(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/numbers.html) | N/A | `cpp/symbol_index/numbers(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ifstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ifstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ifstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/streamsize.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstreamsize.html&labels=migrate-cppref-page) | `cpp/library/io/streamsize` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstreambuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstreambuf.html&labels=migrate-cppref-page) | `cpp/library/io/strstreambuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ofstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ofstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ofstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostringstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostringstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostringstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/istrstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fistrstream.html&labels=migrate-cppref-page) | `cpp/library/io/istrstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ispanstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ispanstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ispanstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_iostream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_iostream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_iostream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/io_errc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fio_errc.html&labels=migrate-cppref-page) | `cpp/library/io/io_errc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/iostream_category.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fiostream_category.html&labels=migrate-cppref-page) | `cpp/library/io/iostream_category` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ospanstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ospanstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ospanstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/println.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fprintln.html&labels=migrate-cppref-page) | `cpp/library/io/println` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ostrstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fostrstream.html&labels=migrate-cppref-page) | `cpp/library/io/ostrstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip.html&labels=migrate-cppref-page) | `cpp/library/io/manip` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/vprint_nonunicode.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fvprint_nonunicode.html&labels=migrate-cppref-page) | `cpp/library/io/vprint_nonunicode` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_fstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_fstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_fstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/cin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fcin.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/cin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_spanbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_spanbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_spanbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc.html&labels=migrate-cppref-page) | `cpp/library/io/c` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstream.html&labels=migrate-cppref-page) | `cpp/library/io/strstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_syncbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_syncbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_syncbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/print.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fprint.html&labels=migrate-cppref-page) | `cpp/library/io/print` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/streamoff.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstreamoff.html&labels=migrate-cppref-page) | `cpp/library/io/streamoff` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/vprint_unicode.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fvprint_unicode.html&labels=migrate-cppref-page) | `cpp/library/io/vprint_unicode` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/fpos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Ffpos.html&labels=migrate-cppref-page) | `cpp/library/io/fpos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istringstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istringstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istringstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_osyncstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_osyncstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_osyncstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_spanstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_spanstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_spanstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringstream/view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringstream%2Fview.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringstream/view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringstream/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringstream%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringstream/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringstream/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringstream%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringstream/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringstream/str.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringstream%2Fstr.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringstream/str` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringstream/basic_stringstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringstream%2Fbasic_stringstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringstream/basic_stringstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringstream/rdbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringstream%2Frdbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringstream/rdbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringstream/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringstream%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringstream/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ostrstream/ostrstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fostrstream%2Fostrstream.html&labels=migrate-cppref-page) | `cpp/library/io/ostrstream/ostrstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ostrstream/pcount.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fostrstream%2Fpcount.html&labels=migrate-cppref-page) | `cpp/library/io/ostrstream/pcount` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ostrstream/str.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fostrstream%2Fstr.html&labels=migrate-cppref-page) | `cpp/library/io/ostrstream/str` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ostrstream/freeze.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fostrstream%2Ffreeze.html&labels=migrate-cppref-page) | `cpp/library/io/ostrstream/freeze` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ostrstream/~ostrstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fostrstream%2F~ostrstream.html&labels=migrate-cppref-page) | `cpp/library/io/ostrstream/~ostrstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ostrstream/rdbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fostrstream%2Frdbuf.html&labels=migrate-cppref-page) | `cpp/library/io/ostrstream/rdbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringbuf/seekpos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringbuf%2Fseekpos.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringbuf/seekpos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringbuf/view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringbuf%2Fview.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringbuf/view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringbuf/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringbuf%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringbuf/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringbuf/underflow.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringbuf%2Funderflow.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringbuf/underflow` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringbuf/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringbuf%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringbuf/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringbuf/init_buf_ptrs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringbuf%2Finit_buf_ptrs.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringbuf/init_buf_ptrs` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringbuf/str.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringbuf%2Fstr.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringbuf/str` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringbuf/pbackfail.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringbuf%2Fpbackfail.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringbuf/pbackfail` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringbuf/overflow.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringbuf%2Foverflow.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringbuf/overflow` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringbuf/setbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringbuf%2Fsetbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringbuf/setbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringbuf/basic_stringbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringbuf%2Fbasic_stringbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringbuf/basic_stringbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringbuf/get_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringbuf%2Fget_allocator.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringbuf/get_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringbuf/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringbuf%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringbuf/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_stringbuf/seekoff.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_stringbuf%2Fseekoff.html&labels=migrate-cppref-page) | `cpp/library/io/basic_stringbuf/seekoff` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/seekpos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2Fseekpos.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/seekpos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/basic_filebuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2Fbasic_filebuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/basic_filebuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/underflow.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2Funderflow.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/underflow` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/showmanyc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2Fshowmanyc.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/showmanyc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/pbackfail.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2Fpbackfail.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/pbackfail` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/is_open.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2Fis_open.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/is_open` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/overflow.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2Foverflow.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/overflow` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/close.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2Fclose.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/close` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/setbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2Fsetbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/setbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/uflow.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2Fuflow.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/uflow` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/open.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2Fopen.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/open` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/native_handle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2Fnative_handle.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/native_handle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/~basic_filebuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2F~basic_filebuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/~basic_filebuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/seekoff.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2Fseekoff.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/seekoff` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/imbue.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2Fimbue.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/imbue` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_filebuf/sync.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_filebuf%2Fsync.html&labels=migrate-cppref-page) | `cpp/library/io/basic_filebuf/sync` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/io_errc/make_error_code.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fio_errc%2Fmake_error_code.html&labels=migrate-cppref-page) | `cpp/library/io/io_errc/make_error_code` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/io_errc/make_error_condition.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fio_errc%2Fmake_error_condition.html&labels=migrate-cppref-page) | `cpp/library/io/io_errc/make_error_condition` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/io_errc/is_error_code_enum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fio_errc%2Fis_error_code_enum.html&labels=migrate-cppref-page) | `cpp/library/io/io_errc/is_error_code_enum` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_syncbuf/emit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_syncbuf%2Femit.html&labels=migrate-cppref-page) | `cpp/library/io/basic_syncbuf/emit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_syncbuf/get_wrapped.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_syncbuf%2Fget_wrapped.html&labels=migrate-cppref-page) | `cpp/library/io/basic_syncbuf/get_wrapped` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_syncbuf/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_syncbuf%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/io/basic_syncbuf/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_syncbuf/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_syncbuf%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/io/basic_syncbuf/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_syncbuf/~basic_syncbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_syncbuf%2F~basic_syncbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_syncbuf/~basic_syncbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_syncbuf/basic_syncbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_syncbuf%2Fbasic_syncbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_syncbuf/basic_syncbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_syncbuf/get_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_syncbuf%2Fget_allocator.html&labels=migrate-cppref-page) | `cpp/library/io/basic_syncbuf/get_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_syncbuf/set_emit_on_sync.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_syncbuf%2Fset_emit_on_sync.html&labels=migrate-cppref-page) | `cpp/library/io/basic_syncbuf/set_emit_on_sync` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_syncbuf/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_syncbuf%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/basic_syncbuf/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_syncbuf/sync.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_syncbuf%2Fsync.html&labels=migrate-cppref-page) | `cpp/library/io/basic_syncbuf/sync` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/fpos/state.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Ffpos%2Fstate.html&labels=migrate-cppref-page) | `cpp/library/io/fpos/state` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstream/pcount.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstream%2Fpcount.html&labels=migrate-cppref-page) | `cpp/library/io/strstream/pcount` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstream/str.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstream%2Fstr.html&labels=migrate-cppref-page) | `cpp/library/io/strstream/str` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstream/freeze.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstream%2Ffreeze.html&labels=migrate-cppref-page) | `cpp/library/io/strstream/freeze` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstream/strstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstream%2Fstrstream.html&labels=migrate-cppref-page) | `cpp/library/io/strstream/strstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstream/rdbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstream%2Frdbuf.html&labels=migrate-cppref-page) | `cpp/library/io/strstream/rdbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstream/~strstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstream%2F~strstream.html&labels=migrate-cppref-page) | `cpp/library/io/strstream/~strstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/pptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fpptr.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/pptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/pubseekoff.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fpubseekoff.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/pubseekoff` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/sgetn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fsgetn.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/sgetn` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/pubseekpos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fpubseekpos.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/pubseekpos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/getloc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fgetloc.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/getloc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fsputbackc.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/sputbackc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/~basic_streambuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2F~basic_streambuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/~basic_streambuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/gptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fgptr.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/gptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fsungetc.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/sungetc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/setp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fsetp.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/setp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/setg.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fsetg.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/setg` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/underflow.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Funderflow.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/underflow` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/pubimbue.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fpubimbue.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/pubimbue` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/showmanyc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fshowmanyc.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/showmanyc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fsputn.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/sputn` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/pbump.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fpbump.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/pbump` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fsnextc.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/snextc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/sgetc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fsgetc.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/sgetc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/pbackfail.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fpbackfail.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/pbackfail` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fsputc.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/sputc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/overflow.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Foverflow.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/overflow` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/in_avail.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fin_avail.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/in_avail` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/sbumpc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fsbumpc.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/sbumpc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/gbump.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fgbump.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/gbump` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/basic_streambuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fbasic_streambuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/basic_streambuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsetbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fpubsetbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/pubsetbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/uflow.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fuflow.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/uflow` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_streambuf%2Fpubsync.html&labels=migrate-cppref-page) | `cpp/library/io/basic_streambuf/pubsync` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/istrstream/istrstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fistrstream%2Fistrstream.html&labels=migrate-cppref-page) | `cpp/library/io/istrstream/istrstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/istrstream/~istrstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fistrstream%2F~istrstream.html&labels=migrate-cppref-page) | `cpp/library/io/istrstream/~istrstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/istrstream/str.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fistrstream%2Fstr.html&labels=migrate-cppref-page) | `cpp/library/io/istrstream/str` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/istrstream/rdbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fistrstream%2Frdbuf.html&labels=migrate-cppref-page) | `cpp/library/io/istrstream/rdbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ispanstream/span.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ispanstream%2Fspan.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ispanstream/span` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ispanstream/basic_ispanstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ispanstream%2Fbasic_ispanstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ispanstream/basic_ispanstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ispanstream/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ispanstream%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ispanstream/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ispanstream/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ispanstream%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ispanstream/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ispanstream/rdbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ispanstream%2Frdbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ispanstream/rdbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ispanstream/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ispanstream%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ispanstream/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ofstream/basic_ofstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ofstream%2Fbasic_ofstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ofstream/basic_ofstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ofstream/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ofstream%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ofstream/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ofstream/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ofstream%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ofstream/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ofstream/is_open.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ofstream%2Fis_open.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ofstream/is_open` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ofstream/close.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ofstream%2Fclose.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ofstream/close` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ofstream/rdbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ofstream%2Frdbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ofstream/rdbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ofstream/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ofstream%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ofstream/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ofstream/open.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ofstream%2Fopen.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ofstream/open` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ofstream/native_handle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ofstream%2Fnative_handle.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ofstream/native_handle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fputwc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffputwc.html&labels=migrate-cppref-page) | `cpp/library/io/c/fputwc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fread.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffread.html&labels=migrate-cppref-page) | `cpp/library/io/c/fread` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fflush.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffflush.html&labels=migrate-cppref-page) | `cpp/library/io/c/fflush` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/remove.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fremove.html&labels=migrate-cppref-page) | `cpp/library/io/c/remove` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fsetpos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffsetpos.html&labels=migrate-cppref-page) | `cpp/library/io/c/fsetpos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fscanf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffscanf.html&labels=migrate-cppref-page) | `cpp/library/io/c/fscanf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/ungetc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fungetc.html&labels=migrate-cppref-page) | `cpp/library/io/c/ungetc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fopen.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffopen.html&labels=migrate-cppref-page) | `cpp/library/io/c/fopen` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/getwchar.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fgetwchar.html&labels=migrate-cppref-page) | `cpp/library/io/c/getwchar` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fwscanf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffwscanf.html&labels=migrate-cppref-page) | `cpp/library/io/c/fwscanf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fputs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffputs.html&labels=migrate-cppref-page) | `cpp/library/io/c/fputs` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/gets.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fgets.html&labels=migrate-cppref-page) | `cpp/library/io/c/gets` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/snprintf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fsnprintf.html&labels=migrate-cppref-page) | `cpp/library/io/c/snprintf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/clearerr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fclearerr.html&labels=migrate-cppref-page) | `cpp/library/io/c/clearerr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fwide.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffwide.html&labels=migrate-cppref-page) | `cpp/library/io/c/fwide` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fputws.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffputws.html&labels=migrate-cppref-page) | `cpp/library/io/c/fputws` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/ferror.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fferror.html&labels=migrate-cppref-page) | `cpp/library/io/c/ferror` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fgets.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffgets.html&labels=migrate-cppref-page) | `cpp/library/io/c/fgets` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fgetpos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffgetpos.html&labels=migrate-cppref-page) | `cpp/library/io/c/fgetpos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/tmpnam.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ftmpnam.html&labels=migrate-cppref-page) | `cpp/library/io/c/tmpnam` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/perror.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fperror.html&labels=migrate-cppref-page) | `cpp/library/io/c/perror` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/vfwscanf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fvfwscanf.html&labels=migrate-cppref-page) | `cpp/library/io/c/vfwscanf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fclose.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffclose.html&labels=migrate-cppref-page) | `cpp/library/io/c/fclose` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fprintf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffprintf.html&labels=migrate-cppref-page) | `cpp/library/io/c/fprintf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/tmpfile.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ftmpfile.html&labels=migrate-cppref-page) | `cpp/library/io/c/tmpfile` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/rename.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Frename.html&labels=migrate-cppref-page) | `cpp/library/io/c/rename` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fgetc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffgetc.html&labels=migrate-cppref-page) | `cpp/library/io/c/fgetc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/freopen.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffreopen.html&labels=migrate-cppref-page) | `cpp/library/io/c/freopen` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/std_streams.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fstd_streams.html&labels=migrate-cppref-page) | `cpp/library/io/c/std_streams` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fgetws.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffgetws.html&labels=migrate-cppref-page) | `cpp/library/io/c/fgetws` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fseek.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffseek.html&labels=migrate-cppref-page) | `cpp/library/io/c/fseek` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/FILE.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2FFILE.html&labels=migrate-cppref-page) | `cpp/library/io/c/FILE` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/getchar.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fgetchar.html&labels=migrate-cppref-page) | `cpp/library/io/c/getchar` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fgetwc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffgetwc.html&labels=migrate-cppref-page) | `cpp/library/io/c/fgetwc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/ftell.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fftell.html&labels=migrate-cppref-page) | `cpp/library/io/c/ftell` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/vfwprintf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fvfwprintf.html&labels=migrate-cppref-page) | `cpp/library/io/c/vfwprintf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/putwchar.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fputwchar.html&labels=migrate-cppref-page) | `cpp/library/io/c/putwchar` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fputc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffputc.html&labels=migrate-cppref-page) | `cpp/library/io/c/fputc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/setbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fsetbuf.html&labels=migrate-cppref-page) | `cpp/library/io/c/setbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/puts.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fputs.html&labels=migrate-cppref-page) | `cpp/library/io/c/puts` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/printf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fprintf.html&labels=migrate-cppref-page) | `cpp/library/io/c/printf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fwprintf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffwprintf.html&labels=migrate-cppref-page) | `cpp/library/io/c/fwprintf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/rewind.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Frewind.html&labels=migrate-cppref-page) | `cpp/library/io/c/rewind` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/vfprintf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fvfprintf.html&labels=migrate-cppref-page) | `cpp/library/io/c/vfprintf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fpos_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffpos_t.html&labels=migrate-cppref-page) | `cpp/library/io/c/fpos_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/putchar.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fputchar.html&labels=migrate-cppref-page) | `cpp/library/io/c/putchar` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/ungetwc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fungetwc.html&labels=migrate-cppref-page) | `cpp/library/io/c/ungetwc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/feof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffeof.html&labels=migrate-cppref-page) | `cpp/library/io/c/feof` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/fwrite.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Ffwrite.html&labels=migrate-cppref-page) | `cpp/library/io/c/fwrite` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/setvbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fsetvbuf.html&labels=migrate-cppref-page) | `cpp/library/io/c/setvbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/scanf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fscanf.html&labels=migrate-cppref-page) | `cpp/library/io/c/scanf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/c/vfscanf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fc%2Fvfscanf.html&labels=migrate-cppref-page) | `cpp/library/io/c/vfscanf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_spanbuf/seekpos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_spanbuf%2Fseekpos.html&labels=migrate-cppref-page) | `cpp/library/io/basic_spanbuf/seekpos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_spanbuf/span.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_spanbuf%2Fspan.html&labels=migrate-cppref-page) | `cpp/library/io/basic_spanbuf/span` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_spanbuf/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_spanbuf%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/io/basic_spanbuf/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_spanbuf/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_spanbuf%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/io/basic_spanbuf/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_spanbuf/basic_spanbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_spanbuf%2Fbasic_spanbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_spanbuf/basic_spanbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_spanbuf/setbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_spanbuf%2Fsetbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_spanbuf/setbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_spanbuf/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_spanbuf%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/basic_spanbuf/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_spanbuf/seekoff.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_spanbuf%2Fseekoff.html&labels=migrate-cppref-page) | `cpp/library/io/basic_spanbuf/seekoff` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/tie.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Ftie.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/tie` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/move.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Fmove.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/move` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/~basic_ios.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2F~basic_ios.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/~basic_ios` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/eof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Feof.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/eof` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/basic_ios.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Fbasic_ios.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/basic_ios` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/exceptions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Fexceptions.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/exceptions` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/set_rdbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Fset_rdbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/set_rdbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/bad.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Fbad.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/bad` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/narrow.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Fnarrow.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/narrow` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/copyfmt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Fcopyfmt.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/copyfmt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/good.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Fgood.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/good` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/operator!.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Foperator!.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/operator!` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/fill.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Ffill.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/fill` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/setstate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Fsetstate.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/setstate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/rdstate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Frdstate.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/rdstate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/rdbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Frdbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/rdbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/widen.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Fwiden.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/widen` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/operator_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Foperator_bool.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/operator_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/fail.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Ffail.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/fail` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/imbue.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Fimbue.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/imbue` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/init.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Finit.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/init` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ios/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ios%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ios/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostringstream/basic_ostringstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostringstream%2Fbasic_ostringstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostringstream/basic_ostringstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostringstream/view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostringstream%2Fview.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostringstream/view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostringstream/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostringstream%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostringstream/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostringstream/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostringstream%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostringstream/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostringstream/str.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostringstream%2Fstr.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostringstream/str` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostringstream/rdbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostringstream%2Frdbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostringstream/rdbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostringstream/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostringstream%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostringstream/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_iostream/basic_iostream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_iostream%2Fbasic_iostream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_iostream/basic_iostream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_iostream/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_iostream%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/io/basic_iostream/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_iostream/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_iostream%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/basic_iostream/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_iostream/~basic_iostream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_iostream%2F~basic_iostream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_iostream/~basic_iostream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/seekdir.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Fseekdir.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/seekdir` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/register_callback.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Fregister_callback.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/register_callback` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/width.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Fwidth.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/width` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/iword.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Fiword.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/iword` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/event_callback.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Fevent_callback.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/event_callback` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/iostate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Fiostate.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/iostate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/getloc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Fgetloc.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/getloc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/ios_base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Fios_base.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/ios_base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/setf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Fsetf.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/setf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/fmtflags.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Ffmtflags.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/fmtflags` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/flags.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Fflags.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/flags` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/~ios_base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2F~ios_base.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/~ios_base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/event.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Fevent.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/event` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/Init.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2FInit.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/Init` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/precision.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Fprecision.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/precision` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/unsetf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Funsetf.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/unsetf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/xalloc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Fxalloc.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/xalloc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/openmode.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Fopenmode.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/openmode` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/pword.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Fpword.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/pword` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/imbue.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Fimbue.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/imbue` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Fsync_with_stdio.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/sync_with_stdio` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/ios_base/failure.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fios_base%2Ffailure.html&labels=migrate-cppref-page) | `cpp/library/io/ios_base/failure` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ospanstream/span.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ospanstream%2Fspan.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ospanstream/span` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ospanstream/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ospanstream%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ospanstream/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ospanstream/basic_ospanstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ospanstream%2Fbasic_ospanstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ospanstream/basic_ospanstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ospanstream/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ospanstream%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ospanstream/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ospanstream/rdbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ospanstream%2Frdbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ospanstream/rdbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ospanstream/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ospanstream%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ospanstream/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_osyncstream/emit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_osyncstream%2Femit.html&labels=migrate-cppref-page) | `cpp/library/io/basic_osyncstream/emit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_osyncstream/get_wrapped.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_osyncstream%2Fget_wrapped.html&labels=migrate-cppref-page) | `cpp/library/io/basic_osyncstream/get_wrapped` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_osyncstream/~basic_osyncstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_osyncstream%2F~basic_osyncstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_osyncstream/~basic_osyncstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_osyncstream/rdbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_osyncstream%2Frdbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_osyncstream/rdbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_osyncstream/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_osyncstream%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/basic_osyncstream/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_osyncstream/basic_osyncstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_osyncstream%2Fbasic_osyncstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_osyncstream/basic_osyncstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstreambuf/seekpos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstreambuf%2Fseekpos.html&labels=migrate-cppref-page) | `cpp/library/io/strstreambuf/seekpos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstreambuf/strstreambuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstreambuf%2Fstrstreambuf.html&labels=migrate-cppref-page) | `cpp/library/io/strstreambuf/strstreambuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstreambuf/underflow.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstreambuf%2Funderflow.html&labels=migrate-cppref-page) | `cpp/library/io/strstreambuf/underflow` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstreambuf/pcount.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstreambuf%2Fpcount.html&labels=migrate-cppref-page) | `cpp/library/io/strstreambuf/pcount` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstreambuf/str.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstreambuf%2Fstr.html&labels=migrate-cppref-page) | `cpp/library/io/strstreambuf/str` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstreambuf/freeze.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstreambuf%2Ffreeze.html&labels=migrate-cppref-page) | `cpp/library/io/strstreambuf/freeze` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstreambuf/pbackfail.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstreambuf%2Fpbackfail.html&labels=migrate-cppref-page) | `cpp/library/io/strstreambuf/pbackfail` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstreambuf/overflow.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstreambuf%2Foverflow.html&labels=migrate-cppref-page) | `cpp/library/io/strstreambuf/overflow` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstreambuf/setbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstreambuf%2Fsetbuf.html&labels=migrate-cppref-page) | `cpp/library/io/strstreambuf/setbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstreambuf/~strstreambuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstreambuf%2F~strstreambuf.html&labels=migrate-cppref-page) | `cpp/library/io/strstreambuf/~strstreambuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/strstreambuf/seekoff.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fstrstreambuf%2Fseekoff.html&labels=migrate-cppref-page) | `cpp/library/io/strstreambuf/seekoff` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostream/seekp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostream%2Fseekp.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/seekp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostream/operator_ltlt2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostream%2Foperator_ltlt2.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/operator_ltlt2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostream/println.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostream%2Fprintln.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/println` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostream/tellp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostream%2Ftellp.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/tellp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostream/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostream%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostream/put.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostream%2Fput.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/put` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostream/sentry.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostream%2Fsentry.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/sentry` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostream/vprint_nonunicode.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostream%2Fvprint_nonunicode.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/vprint_nonunicode` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostream/~basic_ostream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostream%2F~basic_ostream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/~basic_ostream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostream/print.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostream%2Fprint.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/print` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostream/basic_ostream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostream%2Fbasic_ostream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/basic_ostream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostream/flush.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostream%2Fflush.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/flush` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostream/vprint_unicode.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostream%2Fvprint_unicode.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/vprint_unicode` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostream/write.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostream%2Fwrite.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/write` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostream/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostream%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ostream/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ostream%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/unget.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2Funget.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/unget` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/basic_istream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2Fbasic_istream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/basic_istream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/putback.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2Fputback.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/putback` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/tellg.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2Ftellg.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/tellg` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/ignore.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2Fignore.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/ignore` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/getline.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2Fgetline.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/getline` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/sentry.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2Fsentry.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/sentry` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/readsome.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2Freadsome.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/readsome` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/seekg.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2Fseekg.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/seekg` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/operator_gtgt2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2Foperator_gtgt2.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/operator_gtgt2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/gcount.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2Fgcount.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/gcount` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2Fget.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/peek.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2Fpeek.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/peek` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/~basic_istream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2F~basic_istream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/~basic_istream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/operator_gtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2Foperator_gtgt.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/operator_gtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/sync.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2Fsync.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/sync` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istream/read.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istream%2Fread.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istream/read` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/get_time.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fget_time.html&labels=migrate-cppref-page) | `cpp/library/io/manip/get_time` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/left.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fleft.html&labels=migrate-cppref-page) | `cpp/library/io/manip/left` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/flush_emit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fflush_emit.html&labels=migrate-cppref-page) | `cpp/library/io/manip/flush_emit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/showbase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fshowbase.html&labels=migrate-cppref-page) | `cpp/library/io/manip/showbase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/resetiosflags.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fresetiosflags.html&labels=migrate-cppref-page) | `cpp/library/io/manip/resetiosflags` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/ws.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fws.html&labels=migrate-cppref-page) | `cpp/library/io/manip/ws` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/ends.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fends.html&labels=migrate-cppref-page) | `cpp/library/io/manip/ends` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/skipws.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fskipws.html&labels=migrate-cppref-page) | `cpp/library/io/manip/skipws` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/put_money.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fput_money.html&labels=migrate-cppref-page) | `cpp/library/io/manip/put_money` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/showpoint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fshowpoint.html&labels=migrate-cppref-page) | `cpp/library/io/manip/showpoint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/setiosflags.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fsetiosflags.html&labels=migrate-cppref-page) | `cpp/library/io/manip/setiosflags` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/uppercase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fuppercase.html&labels=migrate-cppref-page) | `cpp/library/io/manip/uppercase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/fixed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Ffixed.html&labels=migrate-cppref-page) | `cpp/library/io/manip/fixed` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/put_time.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fput_time.html&labels=migrate-cppref-page) | `cpp/library/io/manip/put_time` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/setbase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fsetbase.html&labels=migrate-cppref-page) | `cpp/library/io/manip/setbase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/quoted.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fquoted.html&labels=migrate-cppref-page) | `cpp/library/io/manip/quoted` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/setw.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fsetw.html&labels=migrate-cppref-page) | `cpp/library/io/manip/setw` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/boolalpha.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fboolalpha.html&labels=migrate-cppref-page) | `cpp/library/io/manip/boolalpha` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/unitbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Funitbuf.html&labels=migrate-cppref-page) | `cpp/library/io/manip/unitbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/flush.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fflush.html&labels=migrate-cppref-page) | `cpp/library/io/manip/flush` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/showpos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fshowpos.html&labels=migrate-cppref-page) | `cpp/library/io/manip/showpos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/setprecision.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fsetprecision.html&labels=migrate-cppref-page) | `cpp/library/io/manip/setprecision` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/endl.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fendl.html&labels=migrate-cppref-page) | `cpp/library/io/manip/endl` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/setfill.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fsetfill.html&labels=migrate-cppref-page) | `cpp/library/io/manip/setfill` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/get_money.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fget_money.html&labels=migrate-cppref-page) | `cpp/library/io/manip/get_money` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/hex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Fhex.html&labels=migrate-cppref-page) | `cpp/library/io/manip/hex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/manip/emit_on_flush.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fmanip%2Femit_on_flush.html&labels=migrate-cppref-page) | `cpp/library/io/manip/emit_on_flush` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_fstream/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_fstream%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/io/basic_fstream/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_fstream/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_fstream%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/io/basic_fstream/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_fstream/basic_fstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_fstream%2Fbasic_fstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_fstream/basic_fstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_fstream/is_open.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_fstream%2Fis_open.html&labels=migrate-cppref-page) | `cpp/library/io/basic_fstream/is_open` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_fstream/close.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_fstream%2Fclose.html&labels=migrate-cppref-page) | `cpp/library/io/basic_fstream/close` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_fstream/rdbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_fstream%2Frdbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_fstream/rdbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_fstream/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_fstream%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/basic_fstream/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_fstream/open.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_fstream%2Fopen.html&labels=migrate-cppref-page) | `cpp/library/io/basic_fstream/open` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_fstream/native_handle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_fstream%2Fnative_handle.html&labels=migrate-cppref-page) | `cpp/library/io/basic_fstream/native_handle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_spanstream/span.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_spanstream%2Fspan.html&labels=migrate-cppref-page) | `cpp/library/io/basic_spanstream/span` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_spanstream/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_spanstream%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/io/basic_spanstream/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_spanstream/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_spanstream%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/io/basic_spanstream/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_spanstream/rdbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_spanstream%2Frdbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_spanstream/rdbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_spanstream/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_spanstream%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/basic_spanstream/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_spanstream/basic_spanstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_spanstream%2Fbasic_spanstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_spanstream/basic_spanstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istringstream/view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istringstream%2Fview.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istringstream/view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istringstream/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istringstream%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istringstream/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istringstream/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istringstream%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istringstream/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istringstream/str.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istringstream%2Fstr.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istringstream/str` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istringstream/rdbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istringstream%2Frdbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istringstream/rdbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istringstream/basic_istringstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istringstream%2Fbasic_istringstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istringstream/basic_istringstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_istringstream/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_istringstream%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/basic_istringstream/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ifstream/basic_ifstream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ifstream%2Fbasic_ifstream.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ifstream/basic_ifstream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ifstream/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ifstream%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ifstream/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ifstream/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ifstream%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ifstream/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ifstream/is_open.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ifstream%2Fis_open.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ifstream/is_open` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ifstream/close.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ifstream%2Fclose.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ifstream/close` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ifstream/rdbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ifstream%2Frdbuf.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ifstream/rdbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ifstream/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ifstream%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ifstream/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ifstream/open.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ifstream%2Fopen.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ifstream/open` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/basic_ifstream/native_handle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fbasic_ifstream%2Fnative_handle.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ifstream/native_handle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/promise.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpromise.html&labels=migrate-cppref-page) | `cpp/library/experimental/promise` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/lib_extensions_2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flib_extensions_2.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/lib_extensions_3.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flib_extensions_3.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/special_functions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fspecial_functions.html&labels=migrate-cppref-page) | `cpp/library/experimental/special_functions` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/void_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fvoid_t.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/void_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/lib_extensions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flib_extensions.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/not_fn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fnot_fn.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/not_fn` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/source_location.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsource_location.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/source_location` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/scope_exit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fscope_exit.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/scope_exit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/scope_success.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fscope_success.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/scope_success` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/lcm.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flcm.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/lcm` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/observer_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fobserver_ptr.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/observer_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/packaged_task.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpackaged_task.html&labels=migrate-cppref-page) | `cpp/library/experimental/packaged_task` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/parallelism.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fparallelism.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/nonesuch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fnonesuch.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/nonesuch` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reseed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freseed.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/reseed` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/to_array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fto_array.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/to_array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/networking.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fnetworking.html&labels=migrate-cppref-page) | `cpp/library/experimental/networking` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/execution_policy_tag.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fexecution_policy_tag.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism/execution_policy_tag` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/concurrency.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fconcurrency.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/make_array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmake_array.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/make_array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/negation.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fnegation.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/negation` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/constraints.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fconstraints.html&labels=migrate-cppref-page) | `cpp/library/experimental/constraints` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/execution_policy_tag_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fexecution_policy_tag_t.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism/execution_policy_tag_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/special_math.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fspecial_math.html&labels=migrate-cppref-page) | `cpp/library/experimental/special_math` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/memory.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmemory.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/atomic_shared_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fatomic_shared_ptr.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/atomic_shared_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/is_execution_policy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fis_execution_policy.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism/is_execution_policy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reduce.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freduce.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism/reduce` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffunction.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/shuffle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fshuffle.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/shuffle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/is_detected.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fis_detected.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/is_detected` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/atomic_weak_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fatomic_weak_ptr.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/atomic_weak_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/parallelism_2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fparallelism_2.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/randint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Frandint.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/randint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/apply.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fapply.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/apply` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/conjunction.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fconjunction.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/conjunction` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/gcd.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fgcd.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/gcd` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/execution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fexecution.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/propagate_const.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpropagate_const.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/propagate_const` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/scope_fail.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fscope_fail.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/scope_fail` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/invocation_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Finvocation_type.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/invocation_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/flex_barrier.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fflex_barrier.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/flex_barrier` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/make_ready_future.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmake_ready_future.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/make_ready_future` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/disjunction.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fdisjunction.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/disjunction` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/erased_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ferased_type.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/erased_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unique_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funique_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/unique_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/when_any.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fwhen_any.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/when_any` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/synchronized_pool_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsynchronized_pool_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/synchronized_pool_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/when_all.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fwhen_all.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/when_all` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/null_memory_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fnull_memory_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/null_memory_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/memory_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmemory_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/../memory_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/lib_extensions/promise.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flib_extensions%2Fpromise.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/promise` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/lib_extensions/packaged_task.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flib_extensions%2Fpackaged_task.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/packaged_task` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/lib_extensions/pmr_container.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flib_extensions%2Fpmr_container.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/pmr_container` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/lib_extensions/promise/promise.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flib_extensions%2Fpromise%2Fpromise.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/promise` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/lib_extensions/promise/get_memory_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flib_extensions%2Fpromise%2Fget_memory_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/get_memory_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/lib_extensions/promise/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flib_extensions%2Fpromise%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/lib_extensions/promise/uses_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flib_extensions%2Fpromise%2Fuses_allocator.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/uses_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/lib_extensions/packaged_task/get_memory_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flib_extensions%2Fpackaged_task%2Fget_memory_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/get_memory_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/lib_extensions/packaged_task/packaged_task.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flib_extensions%2Fpackaged_task%2Fpackaged_task.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/packaged_task` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/lib_extensions/packaged_task/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flib_extensions%2Fpackaged_task%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/lib_extensions/packaged_task/uses_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flib_extensions%2Fpackaged_task%2Fuses_allocator.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/uses_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unordered_map/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funordered_map%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/scope_fail/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fscope_fail%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/scope_fail/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/scope_fail/release.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fscope_fail%2Frelease.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/scope_fail/release` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/scope_fail/scope_fail.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fscope_fail%2Fscope_fail.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/scope_fail/scope_fail` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/scope_fail/~scope_fail.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fscope_fail%2F~scope_fail.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/scope_fail/~scope_fail` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Expression.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FExpression.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Expression` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Scope.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FScope.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Scope` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/FunctionalTypeConversion.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FFunctionalTypeConversion.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/FunctionalTypeConversion` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Object.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FObject.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Object` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Lambda.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FLambda.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Lambda` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/FunctionParameter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FFunctionParameter.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/FunctionParameter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/get_source_line.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2Fget_source_line.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/get_source_line` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/ParenthesizedExpression.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FParenthesizedExpression.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/ParenthesizedExpression` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/LambdaCapture.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FLambdaCapture.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/LambdaCapture` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Enumerator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FEnumerator.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Enumerator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Enum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FEnum.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Enum` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Destructor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FDestructor.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Destructor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Variable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FVariable.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Variable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Named.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FNamed.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Named` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/get_source_column.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2Fget_source_column.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/get_source_column` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/RecordMember.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FRecordMember.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/RecordMember` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Callable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FCallable.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Callable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Constant.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FConstant.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Constant` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Typed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FTyped.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Typed` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/SpecialMemberFunction.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FSpecialMemberFunction.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/SpecialMemberFunction` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/ScopeMember.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FScopeMember.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/ScopeMember` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FType.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FFunction.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Class.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FClass.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Class` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Constructor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FConstructor.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Constructor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/MemberFunction.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FMemberFunction.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/MemberFunction` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/FunctionCallExpression.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FFunctionCallExpression.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/FunctionCallExpression` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Base.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FBase.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Base` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/ObjectSequence.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FObjectSequence.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/ObjectSequence` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Namespace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FNamespace.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Namespace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Record.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FRecord.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Record` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/GlobalScope.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FGlobalScope.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/GlobalScope` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Alias.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FAlias.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Alias` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/Operator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FOperator.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/Operator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/reflect/ConversionOperator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Freflect%2FConversionOperator.html&labels=migrate-cppref-page) | `cpp/library/experimental/reflect/ConversionOperator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/copy_file.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fcopy_file.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/copy_file` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/create_symlink.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fcreate_symlink.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/create_symlink` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/copy_options.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fcopy_options.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/copy_options` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/read_symlink.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fread_symlink.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/read_symlink` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/remove.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fremove.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/remove` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/file_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Ffile_type.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/file_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/is_directory.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fis_directory.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/is_directory` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/current_path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fcurrent_path.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/current_path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/directory_options.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fdirectory_options.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/directory_options` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/permissions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpermissions.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/permissions` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/resize_file.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fresize_file.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/resize_file` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/directory_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fdirectory_iterator.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/directory_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fcopy.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/is_character_file.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fis_character_file.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/is_character_file` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/canonical.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fcanonical.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/canonical` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/create_directory.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fcreate_directory.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/create_directory` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/is_socket.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fis_socket.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/is_socket` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/rename.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Frename.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/rename` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/status.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fstatus.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/status` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/copy_symlink.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fcopy_symlink.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/copy_symlink` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/temp_directory_path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Ftemp_directory_path.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/temp_directory_path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/file_status.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Ffile_status.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/file_status` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/create_hard_link.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fcreate_hard_link.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/create_hard_link` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/space.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fspace.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/space` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/file_time_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Ffile_time_type.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/file_time_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/last_write_time.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Flast_write_time.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/last_write_time` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/hard_link_count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fhard_link_count.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/hard_link_count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/is_regular_file.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fis_regular_file.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/is_regular_file` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/absolute.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fabsolute.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/absolute` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/perms.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fperms.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/perms` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/is_other.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fis_other.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/is_other` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/is_empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fis_empty.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/is_empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/space_info.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fspace_info.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/space_info` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/file_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Ffile_size.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/file_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/is_symlink.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fis_symlink.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/is_symlink` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/status_known.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fstatus_known.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/status_known` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/is_block_file.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fis_block_file.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/is_block_file` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Frecursive_directory_iterator.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/recursive_directory_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/is_fifo.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fis_fifo.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/is_fifo` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/equivalent.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fequivalent.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/equivalent` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/directory_entry.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fdirectory_entry.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/directory_entry` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/exists.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fexists.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/exists` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/filesystem_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Ffilesystem_error.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/filesystem_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/directory_entry/assign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fdirectory_entry%2Fassign.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/directory_entry/assign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/directory_entry/replace_filename.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fdirectory_entry%2Freplace_filename.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/directory_entry/replace_filename` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/directory_entry/status.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fdirectory_entry%2Fstatus.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/directory_entry/status` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/directory_entry/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fdirectory_entry%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/directory_entry/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/directory_entry/path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fdirectory_entry%2Fpath.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/directory_entry/path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/directory_entry/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fdirectory_entry%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/directory_entry/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/directory_entry/directory_entry.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fdirectory_entry%2Fdirectory_entry.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/directory_entry/directory_entry` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/directory_iterator/directory_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fdirectory_iterator%2Fdirectory_iterator.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/directory_iterator/directory_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/directory_iterator/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fdirectory_iterator%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/directory_iterator/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/directory_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fdirectory_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/directory_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/directory_iterator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fdirectory_iterator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/directory_iterator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/directory_iterator/increment.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fdirectory_iterator%2Fincrement.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/directory_iterator/increment` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/file_status/permissions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Ffile_status%2Fpermissions.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/file_status/permissions` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/file_status/file_status.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Ffile_status%2Ffile_status.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/file_status/file_status` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/file_status/type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Ffile_status%2Ftype.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/file_status/type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/file_status/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Ffile_status%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/file_status/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/stem.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fstem.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/stem` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/assign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fassign.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/assign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/remove_filename.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fremove_filename.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/remove_filename` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/root_path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Froot_path.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/root_path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/replace_filename.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Freplace_filename.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/replace_filename` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/has_path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fhas_path.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/has_path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/operator_slash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Foperator_slash.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/operator_slash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/relative_path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Frelative_path.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/relative_path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/root_directory.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Froot_directory.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/root_directory` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/native.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fnative.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/native` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/root_name.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Froot_name.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/root_name` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/extension.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fextension.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/extension` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/string.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fstring.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/string` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/generic_string.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fgeneric_string.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/generic_string` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/filename.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Ffilename.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/filename` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/compare.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fcompare.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/compare` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/append.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fappend.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/append` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fpath.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/replace_extension.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Freplace_extension.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/replace_extension` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/~path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2F~path.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/~path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/concat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fconcat.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/concat` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/is_absrel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fis_absrel.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/is_absrel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/parent_path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fparent_path.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/parent_path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/make_preferred.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fmake_preferred.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/make_preferred` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/u8path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fu8path.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/u8path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/path/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Fpath%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/path/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/filesystem_error/what.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Ffilesystem_error%2Fwhat.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/filesystem_error/what` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/filesystem_error/path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Ffilesystem_error%2Fpath.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/filesystem_error/path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/filesystem_error/filesystem_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Ffilesystem_error%2Ffilesystem_error.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/filesystem_error/filesystem_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/recursion_pending.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Frecursive_directory_iterator%2Frecursion_pending.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/recursive_directory_iterator/recursion_pending` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Frecursive_directory_iterator%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/recursive_directory_iterator/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/depth.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Frecursive_directory_iterator%2Fdepth.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/recursive_directory_iterator/depth` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Frecursive_directory_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/recursive_directory_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/options.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Frecursive_directory_iterator%2Foptions.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/recursive_directory_iterator/options` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/disable_recursion_pending.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Frecursive_directory_iterator%2Fdisable_recursion_pending.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/recursive_directory_iterator/disable_recursion_pending` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Frecursive_directory_iterator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/recursive_directory_iterator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/pop.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Frecursive_directory_iterator%2Fpop.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/recursive_directory_iterator/pop` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/recursive_directory_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Frecursive_directory_iterator%2Frecursive_directory_iterator.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/recursive_directory_iterator/recursive_directory_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/increment.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffs%2Frecursive_directory_iterator%2Fincrement.html&labels=migrate-cppref-page) | `cpp/library/experimental/fs/recursive_directory_iterator/increment` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unordered_set/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funordered_set%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/memory_resource/do_is_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmemory_resource%2Fdo_is_equal.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/../memory_resource/do_is_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/memory_resource/operator_eq.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmemory_resource%2Foperator_eq.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/../memory_resource/operator_eq` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/memory_resource/allocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmemory_resource%2Fallocate.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/../memory_resource/allocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/memory_resource/deallocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmemory_resource%2Fdeallocate.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/../memory_resource/deallocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/memory_resource/do_deallocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmemory_resource%2Fdo_deallocate.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/../memory_resource/do_deallocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/memory_resource/do_allocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmemory_resource%2Fdo_allocate.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/../memory_resource/do_allocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/memory_resource/is_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmemory_resource%2Fis_equal.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/../memory_resource/is_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/memory_resource/memory_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmemory_resource%2Fmemory_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/../memory_resource/memory_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/flex_barrier/arrive_and_wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fflex_barrier%2Farrive_and_wait.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/flex_barrier/arrive_and_wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/flex_barrier/~flex_barrier.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fflex_barrier%2F~flex_barrier.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/flex_barrier/~flex_barrier` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/flex_barrier/arrive_and_drop.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fflex_barrier%2Farrive_and_drop.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/flex_barrier/arrive_and_drop` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/flex_barrier/flex_barrier.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fflex_barrier%2Fflex_barrier.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/flex_barrier/flex_barrier` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unordered_multimap/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funordered_multimap%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/scope_exit/scope_exit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fscope_exit%2Fscope_exit.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/scope_exit/scope_exit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/scope_exit/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fscope_exit%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/scope_exit/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/scope_exit/~scope_exit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fscope_exit%2F~scope_exit.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/scope_exit/~scope_exit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/scope_exit/release.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fscope_exit%2Frelease.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/scope_exit/release` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/set/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fset%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/parallelism/existing.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fparallelism%2Fexisting.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism/existing` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/forward_list/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fforward_list%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/forward_list/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fforward_list%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/map/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmap%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/Semiregular.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FSemiregular.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/Semiregular` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/StrictWeakOrder.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FStrictWeakOrder.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/StrictWeakOrder` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/WeaklyEqualityComparableWith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FWeaklyEqualityComparableWith.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/WeaklyEqualityComparableWith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/Boolean.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FBoolean.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/Boolean` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/CopyConstructible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FCopyConstructible.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/CopyConstructible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/ConvertibleTo.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FConvertibleTo.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/ConvertibleTo` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/CommonReference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FCommonReference.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/CommonReference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/EqualityComparable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FEqualityComparable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/EqualityComparable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/Destructible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FDestructible.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/Destructible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/UniformRandomNumberGenerator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FUniformRandomNumberGenerator.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/UniformRandomNumberGenerator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/Predicate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FPredicate.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/Predicate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/Same.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FSame.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/Same` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/Integral.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FIntegral.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/Integral` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/Invocable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FInvocable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/Invocable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/Movable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FMovable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/Movable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/Assignable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FAssignable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/Assignable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/DerivedFrom.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FDerivedFrom.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/DerivedFrom` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/Copyable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FCopyable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/Copyable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/Regular.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FRegular.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/Regular` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/Swappable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FSwappable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/Swappable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/MoveConstructible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FMoveConstructible.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/MoveConstructible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/Constructible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FConstructible.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/Constructible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/DefaultConstructible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FDefaultConstructible.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/DefaultConstructible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/UnsignedIntegral.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FUnsignedIntegral.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/UnsignedIntegral` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/Common.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FCommon.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/Common` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/SignedIntegral.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FSignedIntegral.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/SignedIntegral` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/StrictTotallyOrdered.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FStrictTotallyOrdered.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/StrictTotallyOrdered` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/concepts/Relation.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fconcepts%2FRelation.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/concepts/Relation` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/type_traits/is_swappable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Ftype_traits%2Fis_swappable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/type_traits/is_swappable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/type_traits/common_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Ftype_traits%2Fcommon_type.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/type_traits/common_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/type_traits/common_reference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Ftype_traits%2Fcommon_reference.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/type_traits/common_reference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/algorithm/adjacent_find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Falgorithm%2Fadjacent_find.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/algorithm/adjacent_find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/algorithm/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Falgorithm%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/algorithm/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/algorithm/search.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Falgorithm%2Fsearch.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/algorithm/search` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/algorithm/all_any_none_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Falgorithm%2Fall_any_none_of.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/algorithm/all_any_none_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/algorithm/copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Falgorithm%2Fcopy.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/algorithm/copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/algorithm/for_each.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Falgorithm%2Ffor_each.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/algorithm/for_each` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/algorithm/find_end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Falgorithm%2Ffind_end.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/algorithm/find_end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/algorithm/tags.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Falgorithm%2Ftags.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/algorithm/tags` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/algorithm/search_n.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Falgorithm%2Fsearch_n.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/algorithm/search_n` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/algorithm/mismatch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Falgorithm%2Fmismatch.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/algorithm/mismatch` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/algorithm/count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Falgorithm%2Fcount.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/algorithm/count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/algorithm/equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Falgorithm%2Fequal.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/algorithm/equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/algorithm/sort.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Falgorithm%2Fsort.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/algorithm/sort` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/algorithm/find_first_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Falgorithm%2Ffind_first_of.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/algorithm/find_first_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/algorithm/lexicographical_compare.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Falgorithm%2Flexicographical_compare.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/algorithm/lexicographical_compare` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/algorithm/is_permutation.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Falgorithm%2Fis_permutation.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/algorithm/is_permutation` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/range/BidirectionalRange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Frange%2FBidirectionalRange.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/range/BidirectionalRange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/range/BoundedRange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Frange%2FBoundedRange.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/range/BoundedRange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/range/Range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Frange%2FRange.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/range/Range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/range/ForwardRange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Frange%2FForwardRange.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/range/ForwardRange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/range/RandomAccessRange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Frange%2FRandomAccessRange.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/range/RandomAccessRange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/range/iterator_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Frange%2Fiterator_t.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/range/iterator_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/range/SizedRange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Frange%2FSizedRange.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/range/SizedRange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/range/InputRange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Frange%2FInputRange.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/range/InputRange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/range/View.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Frange%2FView.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/range/View` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/range/OutputRange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Frange%2FOutputRange.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/range/OutputRange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/Permutable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FPermutable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/Permutable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/value_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2Fvalue_type.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/value_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/BidirectionalIterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FBidirectionalIterator.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/BidirectionalIterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/ForwardIterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FForwardIterator.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/ForwardIterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/indirect_result_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2Findirect_result_of.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/indirect_result_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/prev.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2Fprev.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/prev` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/next.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2Fnext.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/next` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/reference_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2Freference_t.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/reference_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/projected.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2Fprojected.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/projected` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/Sentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FSentinel.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/Sentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/IndirectlyCopyable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FIndirectlyCopyable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/IndirectlyCopyable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/Incrementable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FIncrementable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/Incrementable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/IndirectlyMovableStorable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FIndirectlyMovableStorable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/IndirectlyMovableStorable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/IndirectStrictWeakOrder.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FIndirectStrictWeakOrder.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/IndirectStrictWeakOrder` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/Sortable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FSortable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/Sortable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/IndirectlySwappable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FIndirectlySwappable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/IndirectlySwappable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/RandomAccessIterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FRandomAccessIterator.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/RandomAccessIterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/Mergeable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FMergeable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/Mergeable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/IndirectUnaryPredicate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FIndirectUnaryPredicate.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/IndirectUnaryPredicate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/IndirectRelation.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FIndirectRelation.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/IndirectRelation` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/IndirectlyCopyableStorable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FIndirectlyCopyableStorable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/IndirectlyCopyableStorable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/Readable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FReadable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/Readable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/iterator_tags.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2Fiterator_tags.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/iterator_tags` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/SizedSentinel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FSizedSentinel.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/SizedSentinel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/IndirectlyComparable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FIndirectlyComparable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/IndirectlyComparable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/WeaklyIncrementable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FWeaklyIncrementable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/WeaklyIncrementable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/IndirectlyMovable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FIndirectlyMovable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/IndirectlyMovable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/Writable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FWritable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/Writable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/distance.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2Fdistance.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/distance` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/InputIterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FInputIterator.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/InputIterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/difference_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2Fdifference_type.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/difference_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/Iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FIterator.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/Iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/OutputIterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FOutputIterator.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/OutputIterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/dangling.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2Fdangling.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/dangling` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/IndirectUnaryInvocable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2FIndirectUnaryInvocable.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/IndirectUnaryInvocable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/advance.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2Fadvance.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/advance` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/iterator/iterator_category.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Fiterator%2Fiterator_category.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/iterator/iterator_category` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/utility/tagged_pair.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Futility%2Ftagged_pair.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/utility/tagged_pair` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/utility/exchange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Futility%2Fexchange.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/utility/exchange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/utility/make_tagged_tuple.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Futility%2Fmake_tagged_tuple.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/utility/make_tagged_tuple` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/utility/tagged.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Futility%2Ftagged.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/utility/tagged` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/utility/TagSpecifier.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Futility%2FTagSpecifier.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/utility/TagSpecifier` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/utility/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Futility%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/utility/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/utility/tagged_tuple.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Futility%2Ftagged_tuple.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/utility/tagged_tuple` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/utility/make_tagged_pair.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Futility%2Fmake_tagged_pair.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/utility/make_tagged_pair` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/utility/TaggedType.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Futility%2FTaggedType.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/utility/TaggedType` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/utility/tagged/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Futility%2Ftagged%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/utility/tagged/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/utility/tagged/tagged.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Futility%2Ftagged%2Ftagged.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/utility/tagged/tagged` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/utility/tagged/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Futility%2Ftagged%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/utility/tagged/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/utility/tagged/tuple_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Futility%2Ftagged%2Ftuple_size.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/utility/tagged/tuple_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/utility/tagged/tuple_element.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Futility%2Ftagged%2Ftuple_element.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/utility/tagged/tuple_element` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/utility/tagged/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Futility%2Ftagged%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/utility/tagged/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/functional/invoke.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Ffunctional%2Finvoke.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/functional/invoke` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/functional/not_equal_to.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Ffunctional%2Fnot_equal_to.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/functional/not_equal_to` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/functional/equal_to.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Ffunctional%2Fequal_to.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/functional/equal_to` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/functional/less.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Ffunctional%2Fless.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/functional/less` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/functional/identity.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Ffunctional%2Fidentity.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/functional/identity` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/functional/greater_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Ffunctional%2Fgreater_equal.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/functional/greater_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/functional/less_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Ffunctional%2Fless_equal.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/functional/less_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ranges/functional/greater.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Franges%2Ffunctional%2Fgreater.html&labels=migrate-cppref-page) | `cpp/library/experimental/ranges/functional/greater` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/source_location/file_name.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsource_location%2Ffile_name.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/source_location/file_name` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/source_location/source_location.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsource_location%2Fsource_location.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/source_location/source_location` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/source_location/line.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsource_location%2Fline.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/source_location/line` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/source_location/current.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsource_location%2Fcurrent.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/source_location/current` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/source_location/function_name.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsource_location%2Ffunction_name.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/source_location/function_name` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/source_location/column.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsource_location%2Fcolumn.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/source_location/column` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/multiset/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmultiset%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/special_functions/hermite.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fspecial_functions%2Fhermite.html&labels=migrate-cppref-page) | `cpp/library/experimental/special_math/hermite` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/special_functions/comp_ellint_2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fspecial_functions%2Fcomp_ellint_2.html&labels=migrate-cppref-page) | `cpp/library/experimental/special_math/comp_ellint_2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/special_functions/assoc_legendre.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fspecial_functions%2Fassoc_legendre.html&labels=migrate-cppref-page) | `cpp/library/experimental/special_math/assoc_legendre` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/special_functions/beta.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fspecial_functions%2Fbeta.html&labels=migrate-cppref-page) | `cpp/library/experimental/special_math/beta` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/special_functions/assoc_laguerre.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fspecial_functions%2Fassoc_laguerre.html&labels=migrate-cppref-page) | `cpp/library/experimental/special_math/assoc_laguerre` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/special_functions/riemann_zeta.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fspecial_functions%2Friemann_zeta.html&labels=migrate-cppref-page) | `cpp/library/experimental/special_math/riemann_zeta` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/special_functions/comp_ellint_1.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fspecial_functions%2Fcomp_ellint_1.html&labels=migrate-cppref-page) | `cpp/library/experimental/special_math/comp_ellint_1` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/special_functions/legendre.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fspecial_functions%2Flegendre.html&labels=migrate-cppref-page) | `cpp/library/experimental/special_math/legendre` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/special_functions/laguerre.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fspecial_functions%2Flaguerre.html&labels=migrate-cppref-page) | `cpp/library/experimental/special_math/laguerre` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/special_functions/comp_ellint_3.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fspecial_functions%2Fcomp_ellint_3.html&labels=migrate-cppref-page) | `cpp/library/experimental/special_math/comp_ellint_3` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/special_functions/expint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fspecial_functions%2Fexpint.html&labels=migrate-cppref-page) | `cpp/library/experimental/special_math/expint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/atomic_weak_ptr/exchange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fatomic_weak_ptr%2Fexchange.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/atomic_weak_ptr/exchange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/atomic_weak_ptr/operator_weak_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fatomic_weak_ptr%2Foperator_weak_ptr.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/atomic_weak_ptr/operator_weak_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/atomic_weak_ptr/compare_exchange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fatomic_weak_ptr%2Fcompare_exchange.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/atomic_weak_ptr/compare_exchange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/atomic_weak_ptr/is_lock_free.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fatomic_weak_ptr%2Fis_lock_free.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/atomic_weak_ptr/is_lock_free` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/atomic_weak_ptr/atomic_weak_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fatomic_weak_ptr%2Fatomic_weak_ptr.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/atomic_weak_ptr/atomic_weak_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/atomic_weak_ptr/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fatomic_weak_ptr%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/atomic_weak_ptr/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/atomic_weak_ptr/store.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fatomic_weak_ptr%2Fstore.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/atomic_weak_ptr/store` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/atomic_weak_ptr/load.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fatomic_weak_ptr%2Fload.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/atomic_weak_ptr/load` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unique_resource/get_deleter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funique_resource%2Fget_deleter.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/unique_resource/get_deleter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unique_resource/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funique_resource%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/unique_resource/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unique_resource/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funique_resource%2Freset.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/unique_resource/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unique_resource/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funique_resource%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/unique_resource/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unique_resource/release.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funique_resource%2Frelease.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/unique_resource/release` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unique_resource/~unique_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funique_resource%2F~unique_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/unique_resource/~unique_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unique_resource/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funique_resource%2Fget.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/unique_resource/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unique_resource/make_unique_resource_checked.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funique_resource%2Fmake_unique_resource_checked.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/unique_resource/make_unique_resource_checked` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unique_resource/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funique_resource%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/unique_resource/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unique_resource/unique_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funique_resource%2Funique_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/unique_resource/unique_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/function/get_memory_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffunction%2Fget_memory_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/get_memory_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/function/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffunction%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/function/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffunction%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/function/function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffunction%2Ffunction.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/function/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffunction%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/function/get_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffunction%2Fget_allocator.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/get_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/function/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffunction%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/function/uses_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffunction%2Fuses_allocator.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/uses_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/concurrency/promise.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fconcurrency%2Fpromise.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/promise` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/concurrency/packaged_task.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fconcurrency%2Fpackaged_task.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/packaged_task` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/deque/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fdeque%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/deque/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fdeque%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/scope_success/scope_success.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fscope_success%2Fscope_success.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/scope_success/scope_success` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/scope_success/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fscope_success%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/scope_success/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/scope_success/release.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fscope_success%2Frelease.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/scope_success/release` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/scope_success/~scope_success.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fscope_success%2F~scope_success.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_3/scope_success/~scope_success` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/list/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flist%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/list/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flist%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/vector/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fvector%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/vector/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fvector%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/multimap/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmultimap%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional/make_optional.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional%2Fmake_optional.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional/make_optional` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional/nullopt_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional%2Fnullopt_t.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional/nullopt_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional/value_or.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional%2Fvalue_or.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional/value_or` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional/nullopt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional%2Fnullopt.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional/nullopt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional/bad_optional_access.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional%2Fbad_optional_access.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional/bad_optional_access` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional/in_place.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional%2Fin_place.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional/in_place` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional/~optional.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional%2F~optional.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional/~optional` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional/value.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional%2Fvalue.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional/value` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional/in_place_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional%2Fin_place_t.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional/in_place_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional/operator_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional%2Foperator_bool.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional/operator_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/optional/optional.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Foptional%2Foptional.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/optional/optional` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/atomic_shared_ptr/exchange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fatomic_shared_ptr%2Fexchange.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/atomic_shared_ptr/exchange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/atomic_shared_ptr/compare_exchange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fatomic_shared_ptr%2Fcompare_exchange.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/atomic_shared_ptr/compare_exchange` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/atomic_shared_ptr/atomic_shared_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fatomic_shared_ptr%2Fatomic_shared_ptr.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/atomic_shared_ptr/atomic_shared_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/atomic_shared_ptr/is_lock_free.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fatomic_shared_ptr%2Fis_lock_free.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/atomic_shared_ptr/is_lock_free` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/atomic_shared_ptr/operator_shared_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fatomic_shared_ptr%2Foperator_shared_ptr.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/atomic_shared_ptr/operator_shared_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/atomic_shared_ptr/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fatomic_shared_ptr%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/atomic_shared_ptr/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/atomic_shared_ptr/store.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fatomic_shared_ptr%2Fstore.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/atomic_shared_ptr/store` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/atomic_shared_ptr/load.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fatomic_shared_ptr%2Fload.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/atomic_shared_ptr/load` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/synchronized_pool_resource/do_is_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsynchronized_pool_resource%2Fdo_is_equal.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/synchronized_pool_resource/do_is_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/synchronized_pool_resource/do_deallocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsynchronized_pool_resource%2Fdo_deallocate.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/synchronized_pool_resource/do_deallocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/synchronized_pool_resource/do_allocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsynchronized_pool_resource%2Fdo_allocate.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/synchronized_pool_resource/do_allocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/synchronized_pool_resource/options.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsynchronized_pool_resource%2Foptions.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/synchronized_pool_resource/options` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/synchronized_pool_resource/release.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsynchronized_pool_resource%2Frelease.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/synchronized_pool_resource/release` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/synchronized_pool_resource/~synchronized_pool_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsynchronized_pool_resource%2F~synchronized_pool_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/synchronized_pool_resource/~synchronized_pool_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/synchronized_pool_resource/synchronized_pool_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsynchronized_pool_resource%2Fsynchronized_pool_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/synchronized_pool_resource/synchronized_pool_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/synchronized_pool_resource/upstream_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsynchronized_pool_resource%2Fupstream_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/synchronized_pool_resource/upstream_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/propagate_const/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpropagate_const%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/propagate_const/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/propagate_const/cmp_func.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpropagate_const%2Fcmp_func.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/propagate_const/cmp_func` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/propagate_const/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpropagate_const%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/propagate_const/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/propagate_const/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpropagate_const%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/propagate_const/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/propagate_const/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpropagate_const%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/propagate_const/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/propagate_const/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpropagate_const%2Fget.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/propagate_const/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/propagate_const/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpropagate_const%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/propagate_const/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/propagate_const/propagate_const.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpropagate_const%2Fpropagate_const.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/propagate_const/propagate_const` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/propagate_const/operator_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpropagate_const%2Foperator_bool.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/propagate_const/operator_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/propagate_const/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpropagate_const%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/propagate_const/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/propagate_const/get_underlying.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpropagate_const%2Fget_underlying.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/propagate_const/get_underlying` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/propagate_const/operator_element_type_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpropagate_const%2Foperator_element_type_star_.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/propagate_const/operator_element_type_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/remove_prefix.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Fremove_prefix.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/remove_prefix` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Fat.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Fback.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/npos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Fnpos.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/npos` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Fcopy.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/find_first_not_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Ffind_first_not_of.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/find_first_not_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/to_string.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Fto_string.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/to_string` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Fend.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Frend.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/substr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Fsubstr.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/substr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/find_last_not_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Ffind_last_not_of.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/find_last_not_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Ffront.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/rfind.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Frfind.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/rfind` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/compare.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Fcompare.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/compare` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/basic_string_view.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Fbasic_string_view.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/basic_string_view` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/find_last_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Ffind_last_of.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/find_last_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/find_first_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Ffind_first_of.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/find_first_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/data.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Fdata.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/data` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/basic_string_view/remove_suffix.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbasic_string_view%2Fremove_suffix.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/basic_string_view/remove_suffix` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/observer_ptr/make_observer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fobserver_ptr%2Fmake_observer.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/observer_ptr/make_observer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/observer_ptr/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fobserver_ptr%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/observer_ptr/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/observer_ptr/operator_pointer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fobserver_ptr%2Foperator_pointer.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/observer_ptr/operator_pointer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/observer_ptr/observer_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fobserver_ptr%2Fobserver_ptr.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/observer_ptr/observer_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/observer_ptr/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fobserver_ptr%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/observer_ptr/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/observer_ptr/reset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fobserver_ptr%2Freset.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/observer_ptr/reset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/observer_ptr/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fobserver_ptr%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/observer_ptr/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/observer_ptr/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fobserver_ptr%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/observer_ptr/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/observer_ptr/release.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fobserver_ptr%2Frelease.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/observer_ptr/release` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/observer_ptr/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fobserver_ptr%2Fget.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/observer_ptr/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/observer_ptr/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fobserver_ptr%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/observer_ptr/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/observer_ptr/operator_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fobserver_ptr%2Foperator_bool.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/observer_ptr/operator_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unordered_multiset/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funordered_multiset%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/get_unexpected.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fget_unexpected.html&labels=migrate-cppref-page) | `cpp/library/error/get_unexpected` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/make_exception_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fmake_exception_ptr.html&labels=migrate-cppref-page) | `cpp/library/error/make_exception_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/nested_exception.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fnested_exception.html&labels=migrate-cppref-page) | `cpp/library/error/nested_exception` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/length_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Flength_error.html&labels=migrate-cppref-page) | `cpp/library/error/length_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/set_unexpected.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fset_unexpected.html&labels=migrate-cppref-page) | `cpp/library/error/set_unexpected` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/get_terminate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fget_terminate.html&labels=migrate-cppref-page) | `cpp/library/error/get_terminate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/system_category.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fsystem_category.html&labels=migrate-cppref-page) | `cpp/library/error/system_category` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/tx_exception.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ftx_exception.html&labels=migrate-cppref-page) | `cpp/library/error/tx_exception` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/assert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fassert.html&labels=migrate-cppref-page) | `cpp/library/error/assert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/range_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Frange_error.html&labels=migrate-cppref-page) | `cpp/library/error/range_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/invalid_argument.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Finvalid_argument.html&labels=migrate-cppref-page) | `cpp/library/error/invalid_argument` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/throw_with_nested.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fthrow_with_nested.html&labels=migrate-cppref-page) | `cpp/library/error/throw_with_nested` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_condition.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_condition.html&labels=migrate-cppref-page) | `cpp/library/error/error_condition` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_code.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_code.html&labels=migrate-cppref-page) | `cpp/library/error/error_code` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/errno_macros.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferrno_macros.html&labels=migrate-cppref-page) | `cpp/library/error/errno_macros` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/exception_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fexception_ptr.html&labels=migrate-cppref-page) | `cpp/library/error/exception_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/domain_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fdomain_error.html&labels=migrate-cppref-page) | `cpp/library/error/domain_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/bad_exception.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fbad_exception.html&labels=migrate-cppref-page) | `cpp/library/error/bad_exception` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/terminate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fterminate.html&labels=migrate-cppref-page) | `cpp/library/error/terminate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/underflow_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Funderflow_error.html&labels=migrate-cppref-page) | `cpp/library/error/underflow_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/unexpected.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Funexpected.html&labels=migrate-cppref-page) | `cpp/library/error/unexpected` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/errno.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferrno.html&labels=migrate-cppref-page) | `cpp/library/error/errno` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/rethrow_exception.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Frethrow_exception.html&labels=migrate-cppref-page) | `cpp/library/error/rethrow_exception` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/logic_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Flogic_error.html&labels=migrate-cppref-page) | `cpp/library/error/logic_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/current_exception.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fcurrent_exception.html&labels=migrate-cppref-page) | `cpp/library/error/current_exception` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/exception.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fexception.html&labels=migrate-cppref-page) | `cpp/library/error/exception` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/runtime_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fruntime_error.html&labels=migrate-cppref-page) | `cpp/library/error/runtime_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/set_terminate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fset_terminate.html&labels=migrate-cppref-page) | `cpp/library/error/set_terminate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/uncaught_exception.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Funcaught_exception.html&labels=migrate-cppref-page) | `cpp/library/error/uncaught_exception` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/system_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fsystem_error.html&labels=migrate-cppref-page) | `cpp/library/error/system_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/generic_category.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fgeneric_category.html&labels=migrate-cppref-page) | `cpp/library/error/generic_category` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/out_of_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fout_of_range.html&labels=migrate-cppref-page) | `cpp/library/error/out_of_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/errc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferrc.html&labels=migrate-cppref-page) | `cpp/library/error/errc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/rethrow_if_nested.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Frethrow_if_nested.html&labels=migrate-cppref-page) | `cpp/library/error/rethrow_if_nested` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_category.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_category.html&labels=migrate-cppref-page) | `cpp/library/error/error_category` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/overflow_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Foverflow_error.html&labels=migrate-cppref-page) | `cpp/library/error/overflow_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/unexpected_handler.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Funexpected_handler.html&labels=migrate-cppref-page) | `cpp/library/error/unexpected_handler` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/terminate_handler.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fterminate_handler.html&labels=migrate-cppref-page) | `cpp/library/error/terminate_handler` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/bad_exception/bad_exception.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fbad_exception%2Fbad_exception.html&labels=migrate-cppref-page) | `cpp/library/error/bad_exception/bad_exception` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/bad_exception/what.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fbad_exception%2Fwhat.html&labels=migrate-cppref-page) | `cpp/library/error/bad_exception/what` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/bad_exception/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fbad_exception%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/error/bad_exception/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/system_error/what.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fsystem_error%2Fwhat.html&labels=migrate-cppref-page) | `cpp/library/error/system_error/what` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/system_error/code.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fsystem_error%2Fcode.html&labels=migrate-cppref-page) | `cpp/library/error/system_error/code` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/system_error/system_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fsystem_error%2Fsystem_error.html&labels=migrate-cppref-page) | `cpp/library/error/system_error/system_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/system_error/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fsystem_error%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/error/system_error/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/exception/get_unexpected.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fexception%2Fget_unexpected.html&labels=migrate-cppref-page) | `cpp/library/error/exception/get_unexpected` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/exception/set_unexpected.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fexception%2Fset_unexpected.html&labels=migrate-cppref-page) | `cpp/library/error/exception/set_unexpected` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/exception/~exception.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fexception%2F~exception.html&labels=migrate-cppref-page) | `cpp/library/error/exception/~exception` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/exception/what.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fexception%2Fwhat.html&labels=migrate-cppref-page) | `cpp/library/error/exception/what` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/exception/exception.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fexception%2Fexception.html&labels=migrate-cppref-page) | `cpp/library/error/exception/exception` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/exception/uncaught_exception.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fexception%2Funcaught_exception.html&labels=migrate-cppref-page) | `cpp/library/error/exception/uncaught_exception` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/exception/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fexception%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/error/exception/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/exception/unexpected_handler.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fexception%2Funexpected_handler.html&labels=migrate-cppref-page) | `cpp/library/error/exception/unexpected_handler` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/errc/is_error_condition_enum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferrc%2Fis_error_condition_enum.html&labels=migrate-cppref-page) | `cpp/library/error/errc/is_error_condition_enum` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/errc/make_error_code.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferrc%2Fmake_error_code.html&labels=migrate-cppref-page) | `cpp/library/error/errc/make_error_code` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/errc/make_error_condition.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferrc%2Fmake_error_condition.html&labels=migrate-cppref-page) | `cpp/library/error/errc/make_error_condition` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_category/~error_category.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_category%2F~error_category.html&labels=migrate-cppref-page) | `cpp/library/error/error_category/~error_category` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_category/default_error_condition.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_category%2Fdefault_error_condition.html&labels=migrate-cppref-page) | `cpp/library/error/error_category/default_error_condition` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_category/name.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_category%2Fname.html&labels=migrate-cppref-page) | `cpp/library/error/error_category/name` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_category/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_category%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/error/error_category/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_category/message.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_category%2Fmessage.html&labels=migrate-cppref-page) | `cpp/library/error/error_category/message` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_category/equivalent.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_category%2Fequivalent.html&labels=migrate-cppref-page) | `cpp/library/error/error_category/equivalent` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_category/error_category.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_category%2Ferror_category.html&labels=migrate-cppref-page) | `cpp/library/error/error_category/error_category` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_condition/assign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_condition%2Fassign.html&labels=migrate-cppref-page) | `cpp/library/error/error_condition/assign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_condition/category.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_condition%2Fcategory.html&labels=migrate-cppref-page) | `cpp/library/error/error_condition/category` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_condition/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_condition%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/error/error_condition/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_condition/is_error_condition_enum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_condition%2Fis_error_condition_enum.html&labels=migrate-cppref-page) | `cpp/library/error/error_condition/is_error_condition_enum` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_condition/error_condition.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_condition%2Ferror_condition.html&labels=migrate-cppref-page) | `cpp/library/error/error_condition/error_condition` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_condition/value.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_condition%2Fvalue.html&labels=migrate-cppref-page) | `cpp/library/error/error_condition/value` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_condition/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_condition%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/error/error_condition/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_condition/message.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_condition%2Fmessage.html&labels=migrate-cppref-page) | `cpp/library/error/error_condition/message` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_condition/operator_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_condition%2Foperator_bool.html&labels=migrate-cppref-page) | `cpp/library/error/error_condition/operator_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_condition/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_condition%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/error/error_condition/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_condition/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_condition%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/error/error_condition/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/nested_exception/nested_exception.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fnested_exception%2Fnested_exception.html&labels=migrate-cppref-page) | `cpp/library/error/nested_exception/nested_exception` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/nested_exception/~nested_exception.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fnested_exception%2F~nested_exception.html&labels=migrate-cppref-page) | `cpp/library/error/nested_exception/~nested_exception` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/nested_exception/nested_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fnested_exception%2Fnested_ptr.html&labels=migrate-cppref-page) | `cpp/library/error/nested_exception/nested_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/nested_exception/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fnested_exception%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/error/nested_exception/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/nested_exception/rethrow_nested.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Fnested_exception%2Frethrow_nested.html&labels=migrate-cppref-page) | `cpp/library/error/nested_exception/rethrow_nested` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_code/assign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_code%2Fassign.html&labels=migrate-cppref-page) | `cpp/library/error/error_code/assign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_code/category.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_code%2Fcategory.html&labels=migrate-cppref-page) | `cpp/library/error/error_code/category` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_code/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_code%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/error/error_code/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_code/default_error_condition.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_code%2Fdefault_error_condition.html&labels=migrate-cppref-page) | `cpp/library/error/error_code/default_error_condition` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_code/error_code.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_code%2Ferror_code.html&labels=migrate-cppref-page) | `cpp/library/error/error_code/error_code` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_code/value.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_code%2Fvalue.html&labels=migrate-cppref-page) | `cpp/library/error/error_code/value` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_code/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_code%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/error/error_code/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_code/message.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_code%2Fmessage.html&labels=migrate-cppref-page) | `cpp/library/error/error_code/message` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_code/operator_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_code%2Foperator_bool.html&labels=migrate-cppref-page) | `cpp/library/error/error_code/operator_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_code/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_code%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/error/error_code/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_code/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_code%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/error/error_code/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_code/is_error_code_enum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_code%2Fis_error_code_enum.html&labels=migrate-cppref-page) | `cpp/library/error/error_code/is_error_code_enum` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/error/error_code/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ferror%2Ferror_code%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/error/error_code/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_trivially_copyable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_trivially_copyable.html&labels=migrate-cppref-page) | `cpp/library/meta/is_trivially_copyable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/alignment_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Falignment_of.html&labels=migrate-cppref-page) | `cpp/library/meta/alignment_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/extent.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fextent.html&labels=migrate-cppref-page) | `cpp/library/meta/extent` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_member_function_pointer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_member_function_pointer.html&labels=migrate-cppref-page) | `cpp/library/meta/is_member_function_pointer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/reference_converts_from_temporary.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Freference_converts_from_temporary.html&labels=migrate-cppref-page) | `cpp/library/meta/reference_converts_from_temporary` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/decay.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fdecay.html&labels=migrate-cppref-page) | `cpp/library/meta/decay` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/remove_pointer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fremove_pointer.html&labels=migrate-cppref-page) | `cpp/library/meta/remove_pointer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_final.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_final.html&labels=migrate-cppref-page) | `cpp/library/meta/is_final` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_standard_layout.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_standard_layout.html&labels=migrate-cppref-page) | `cpp/library/meta/is_standard_layout` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_lvalue_reference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_lvalue_reference.html&labels=migrate-cppref-page) | `cpp/library/meta/is_lvalue_reference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/void_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fvoid_t.html&labels=migrate-cppref-page) | `cpp/library/meta/void_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_object.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_object.html&labels=migrate-cppref-page) | `cpp/library/meta/is_object` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/conditional.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fconditional.html&labels=migrate-cppref-page) | `cpp/library/meta/conditional` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_trivial.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_trivial.html&labels=migrate-cppref-page) | `cpp/library/meta/is_trivial` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/make_unsigned.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fmake_unsigned.html&labels=migrate-cppref-page) | `cpp/library/meta/make_unsigned` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_move_constructible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_move_constructible.html&labels=migrate-cppref-page) | `cpp/library/meta/is_move_constructible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/enable_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fenable_if.html&labels=migrate-cppref-page) | `cpp/library/meta/enable_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_rvalue_reference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_rvalue_reference.html&labels=migrate-cppref-page) | `cpp/library/meta/is_rvalue_reference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_pointer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_pointer.html&labels=migrate-cppref-page) | `cpp/library/meta/is_pointer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_assignable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_assignable.html&labels=migrate-cppref-page) | `cpp/library/meta/is_assignable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_const.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_const.html&labels=migrate-cppref-page) | `cpp/library/meta/is_const` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/add_cv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fadd_cv.html&labels=migrate-cppref-page) | `cpp/library/meta/add_cv` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_pointer_interconvertible_with_class.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_pointer_interconvertible_with_class.html&labels=migrate-cppref-page) | `cpp/library/meta/is_pointer_interconvertible_with_class` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/type_identity.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Ftype_identity.html&labels=migrate-cppref-page) | `cpp/library/meta/type_identity` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_polymorphic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_polymorphic.html&labels=migrate-cppref-page) | `cpp/library/meta/is_polymorphic` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/remove_all_extents.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fremove_all_extents.html&labels=migrate-cppref-page) | `cpp/library/meta/remove_all_extents` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_copy_assignable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_copy_assignable.html&labels=migrate-cppref-page) | `cpp/library/meta/is_copy_assignable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_signed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_signed.html&labels=migrate-cppref-page) | `cpp/library/meta/is_signed` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_default_constructible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_default_constructible.html&labels=migrate-cppref-page) | `cpp/library/meta/is_default_constructible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/add_reference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fadd_reference.html&labels=migrate-cppref-page) | `cpp/library/meta/add_reference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_convertible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_convertible.html&labels=migrate-cppref-page) | `cpp/library/meta/is_convertible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_fundamental.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_fundamental.html&labels=migrate-cppref-page) | `cpp/library/meta/is_fundamental` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/result_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fresult_of.html&labels=migrate-cppref-page) | `cpp/library/meta/result_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_floating_point.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_floating_point.html&labels=migrate-cppref-page) | `cpp/library/meta/is_floating_point` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/negation.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnegation.html&labels=migrate-cppref-page) | `cpp/library/meta/negation` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_reference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_reference.html&labels=migrate-cppref-page) | `cpp/library/meta/is_reference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_move_assignable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_move_assignable.html&labels=migrate-cppref-page) | `cpp/library/meta/is_move_assignable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_pointer_interconvertible_base_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_pointer_interconvertible_base_of.html&labels=migrate-cppref-page) | `cpp/library/meta/is_pointer_interconvertible_base_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/has_virtual_destructor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fhas_virtual_destructor.html&labels=migrate-cppref-page) | `cpp/library/meta/has_virtual_destructor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_aggregate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_aggregate.html&labels=migrate-cppref-page) | `cpp/library/meta/is_aggregate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_abstract.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_abstract.html&labels=migrate-cppref-page) | `cpp/library/meta/is_abstract` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_base_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_base_of.html&labels=migrate-cppref-page) | `cpp/library/meta/is_base_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_member_pointer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_member_pointer.html&labels=migrate-cppref-page) | `cpp/library/meta/is_member_pointer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/has_unique_object_representations.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fhas_unique_object_representations.html&labels=migrate-cppref-page) | `cpp/library/meta/has_unique_object_representations` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_within_lifetime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_within_lifetime.html&labels=migrate-cppref-page) | `cpp/library/utility/is_within_lifetime` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_scoped_enum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_scoped_enum.html&labels=migrate-cppref-page) | `cpp/library/meta/is_scoped_enum` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_null_pointer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_null_pointer.html&labels=migrate-cppref-page) | `cpp/library/meta/is_null_pointer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/remove_cvref.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fremove_cvref.html&labels=migrate-cppref-page) | `cpp/library/meta/remove_cvref` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_compound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_compound.html&labels=migrate-cppref-page) | `cpp/library/meta/is_compound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_enum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_enum.html&labels=migrate-cppref-page) | `cpp/library/meta/is_enum` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/underlying_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Funderlying_type.html&labels=migrate-cppref-page) | `cpp/library/meta/underlying_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_swappable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_swappable.html&labels=migrate-cppref-page) | `cpp/library/meta/is_swappable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_unsigned.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_unsigned.html&labels=migrate-cppref-page) | `cpp/library/meta/is_unsigned` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_member_object_pointer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_member_object_pointer.html&labels=migrate-cppref-page) | `cpp/library/meta/is_member_object_pointer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/common_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fcommon_type.html&labels=migrate-cppref-page) | `cpp/library/meta/common_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/make_signed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fmake_signed.html&labels=migrate-cppref-page) | `cpp/library/meta/make_signed` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_layout_compatible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_layout_compatible.html&labels=migrate-cppref-page) | `cpp/library/meta/is_layout_compatible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_same.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_same.html&labels=migrate-cppref-page) | `cpp/library/meta/is_same` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_copy_constructible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_copy_constructible.html&labels=migrate-cppref-page) | `cpp/library/meta/is_copy_constructible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/remove_reference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fremove_reference.html&labels=migrate-cppref-page) | `cpp/library/meta/remove_reference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_class.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_class.html&labels=migrate-cppref-page) | `cpp/library/meta/is_class` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_unbounded_array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_unbounded_array.html&labels=migrate-cppref-page) | `cpp/library/meta/is_unbounded_array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_scalar.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_scalar.html&labels=migrate-cppref-page) | `cpp/library/meta/is_scalar` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/endian.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fendian.html&labels=migrate-cppref-page) | `cpp/library/utility/bit/endian` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/conjunction.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fconjunction.html&labels=migrate-cppref-page) | `cpp/library/meta/conjunction` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_empty.html&labels=migrate-cppref-page) | `cpp/library/meta/is_empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_union.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_union.html&labels=migrate-cppref-page) | `cpp/library/meta/is_union` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_bounded_array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_bounded_array.html&labels=migrate-cppref-page) | `cpp/library/meta/is_bounded_array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_destructible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_destructible.html&labels=migrate-cppref-page) | `cpp/library/meta/is_destructible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_function.html&labels=migrate-cppref-page) | `cpp/library/meta/is_function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/integral_constant.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fintegral_constant.html&labels=migrate-cppref-page) | `cpp/library/meta/integral_constant` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_void.html&labels=migrate-cppref-page) | `cpp/library/meta/is_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/remove_extent.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fremove_extent.html&labels=migrate-cppref-page) | `cpp/library/meta/remove_extent` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_implicit_lifetime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_implicit_lifetime.html&labels=migrate-cppref-page) | `cpp/library/meta/is_implicit_lifetime` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_constant_evaluated.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_constant_evaluated.html&labels=migrate-cppref-page) | `cpp/library/utility/is_constant_evaluated` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_arithmetic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_arithmetic.html&labels=migrate-cppref-page) | `cpp/library/meta/is_arithmetic` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_literal_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_literal_type.html&labels=migrate-cppref-page) | `cpp/library/meta/is_literal_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_integral.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_integral.html&labels=migrate-cppref-page) | `cpp/library/meta/is_integral` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_array.html&labels=migrate-cppref-page) | `cpp/library/meta/is_array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/remove_cv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fremove_cv.html&labels=migrate-cppref-page) | `cpp/library/meta/remove_cv` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/common_reference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fcommon_reference.html&labels=migrate-cppref-page) | `cpp/library/meta/common_reference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/add_pointer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fadd_pointer.html&labels=migrate-cppref-page) | `cpp/library/meta/add_pointer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_volatile.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_volatile.html&labels=migrate-cppref-page) | `cpp/library/meta/is_volatile` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_pod.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_pod.html&labels=migrate-cppref-page) | `cpp/library/meta/is_pod` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_virtual_base_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_virtual_base_of.html&labels=migrate-cppref-page) | `cpp/library/meta/is_virtual_base_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/disjunction.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fdisjunction.html&labels=migrate-cppref-page) | `cpp/library/meta/disjunction` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/rank.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Frank.html&labels=migrate-cppref-page) | `cpp/library/meta/rank` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_constructible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_constructible.html&labels=migrate-cppref-page) | `cpp/library/meta/is_constructible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/aligned_storage.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Faligned_storage.html&labels=migrate-cppref-page) | `cpp/library/meta/aligned_storage` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_corresponding_member.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_corresponding_member.html&labels=migrate-cppref-page) | `cpp/library/meta/is_corresponding_member` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/reference_constructs_from_temporary.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Freference_constructs_from_temporary.html&labels=migrate-cppref-page) | `cpp/library/meta/reference_constructs_from_temporary` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/aligned_union.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Faligned_union.html&labels=migrate-cppref-page) | `cpp/library/meta/aligned_union` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/is_invocable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fis_invocable.html&labels=migrate-cppref-page) | `cpp/library/meta/is_invocable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/compiler_support/vendors.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcompiler_support%2Fvendors.html&labels=migrate-cppref-page) | `cpp/library/compiler_support/vendors` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/compiler_support/11.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcompiler_support%2F11.html&labels=migrate-cppref-page) | `cpp/library/compiler_support/11` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/compiler_support/17.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcompiler_support%2F17.html&labels=migrate-cppref-page) | `cpp/library/compiler_support/17` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/compiler_support/26.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcompiler_support%2F26.html&labels=migrate-cppref-page) | `cpp/library/compiler_support/26` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/compiler_support/20.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcompiler_support%2F20.html&labels=migrate-cppref-page) | `cpp/library/compiler_support/20` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/compiler_support/23.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcompiler_support%2F23.html&labels=migrate-cppref-page) | `cpp/library/compiler_support/23` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/compiler_support/14.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcompiler_support%2F14.html&labels=migrate-cppref-page) | `cpp/library/compiler_support/14` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/generator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fgenerator.html&labels=migrate-cppref-page) | `cpp/library/ranges/generator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/generator/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fgenerator%2Fend.html&labels=migrate-cppref-page) | `cpp/library/ranges/generator/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/generator/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fgenerator%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/ranges/generator/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/generator/generator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fgenerator%2Fgenerator.html&labels=migrate-cppref-page) | `cpp/library/ranges/generator/generator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/generator/promise_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fgenerator%2Fpromise_type.html&labels=migrate-cppref-page) | `cpp/library/ranges/generator/promise_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/generator/iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fgenerator%2Fiterator.html&labels=migrate-cppref-page) | `cpp/library/ranges/generator/iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/generator/~generator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fgenerator%2F~generator.html&labels=migrate-cppref-page) | `cpp/library/ranges/generator/~generator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/generator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fgenerator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/ranges/generator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/generator/promise_type/operator_new.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fgenerator%2Fpromise_type%2Foperator_new.html&labels=migrate-cppref-page) | `cpp/library/ranges/generator/promise_type/operator_new` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/generator/promise_type/yield_value.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fgenerator%2Fpromise_type%2Fyield_value.html&labels=migrate-cppref-page) | `cpp/library/ranges/generator/promise_type/yield_value` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/generator/promise_type/unhandled_exception.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fgenerator%2Fpromise_type%2Funhandled_exception.html&labels=migrate-cppref-page) | `cpp/library/ranges/generator/promise_type/unhandled_exception` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/generator/promise_type/get_return_object.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fgenerator%2Fpromise_type%2Fget_return_object.html&labels=migrate-cppref-page) | `cpp/library/ranges/generator/promise_type/get_return_object` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/generator/promise_type/final_suspend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fgenerator%2Fpromise_type%2Ffinal_suspend.html&labels=migrate-cppref-page) | `cpp/library/ranges/generator/promise_type/final_suspend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/generator/promise_type/initial_suspend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fgenerator%2Fpromise_type%2Finitial_suspend.html&labels=migrate-cppref-page) | `cpp/library/ranges/generator/promise_type/initial_suspend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/generator/promise_type/return_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fgenerator%2Fpromise_type%2Freturn_void.html&labels=migrate-cppref-page) | `cpp/library/ranges/generator/promise_type/return_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/generator/promise_type/operator_delete.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fgenerator%2Fpromise_type%2Foperator_delete.html&labels=migrate-cppref-page) | `cpp/library/ranges/generator/promise_type/operator_delete` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/stack.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fstack.html&labels=migrate-cppref-page) | `cpp/library/container/stack` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan.html&labels=migrate-cppref-page) | `cpp/library/container/span` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector_bool.html&labels=migrate-cppref-page) | `cpp/library/container/vector_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/priority_queue.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fpriority_queue.html&labels=migrate-cppref-page) | `cpp/library/container/priority_queue` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/sorted_equivalent.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fsorted_equivalent.html&labels=migrate-cppref-page) | `cpp/library/container/sorted_equivalent` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist.html&labels=migrate-cppref-page) | `cpp/library/container/list` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset.html&labels=migrate-cppref-page) | `cpp/library/container/multiset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/sorted_unique.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fsorted_unique.html&labels=migrate-cppref-page) | `cpp/library/container/sorted_unique` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/queue.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fqueue.html&labels=migrate-cppref-page) | `cpp/library/container/queue` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray.html&labels=migrate-cppref-page) | `cpp/library/container/array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque.html&labels=migrate-cppref-page) | `cpp/library/container/deque` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap.html&labels=migrate-cppref-page) | `cpp/library/container/map` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap.html&labels=migrate-cppref-page) | `cpp/library/container/multimap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/node_handle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fnode_handle.html&labels=migrate-cppref-page) | `cpp/library/container/node_handle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset.html&labels=migrate-cppref-page) | `cpp/library/container/set` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector.html&labels=migrate-cppref-page) | `cpp/library/container/vector` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/bucket_count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fbucket_count.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/bucket_count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/end2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fend2.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/end2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fat.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/try_emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Ftry_emplace.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/try_emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/unordered_map.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Funordered_map.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/unordered_map` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/extract.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fextract.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/extract` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/insert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Finsert.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/insert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/equal_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fequal_range.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/equal_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/~unordered_map.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2F~unordered_map.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/~unordered_map` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/load_factor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fload_factor.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/load_factor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/rehash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Frehash.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/rehash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/begin2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fbegin2.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/begin2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/max_bucket_count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fmax_bucket_count.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/max_bucket_count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/reserve.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Freserve.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/reserve` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fcount.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/get_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fget_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/get_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/contains.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fcontains.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/contains` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/merge.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fmerge.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/merge` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/insert_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Finsert_range.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/insert_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/key_eq.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fkey_eq.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/key_eq` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/bucket.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fbucket.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/bucket` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/emplace_hint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Femplace_hint.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/emplace_hint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/hash_function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fhash_function.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/hash_function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/insert_or_assign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Finsert_or_assign.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/insert_or_assign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/max_load_factor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fmax_load_factor.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/max_load_factor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/bucket_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fbucket_size.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/bucket_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_map/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_map%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_map/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/bucket_count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fbucket_count.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/bucket_count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/end2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fend2.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/end2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/unordered_set.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Funordered_set.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/unordered_set` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/extract.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fextract.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/extract` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/insert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Finsert.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/insert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/~unordered_set.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2F~unordered_set.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/~unordered_set` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/equal_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fequal_range.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/equal_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/load_factor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fload_factor.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/load_factor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/rehash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Frehash.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/rehash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/begin2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fbegin2.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/begin2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/max_bucket_count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fmax_bucket_count.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/max_bucket_count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/reserve.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Freserve.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/reserve` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fcount.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/get_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fget_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/get_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/contains.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fcontains.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/contains` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/merge.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fmerge.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/merge` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/insert_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Finsert_range.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/insert_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/key_eq.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fkey_eq.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/key_eq` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/bucket.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fbucket.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/bucket` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/emplace_hint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Femplace_hint.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/emplace_hint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/hash_function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fhash_function.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/hash_function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/max_load_factor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fmax_load_factor.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/max_load_factor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/bucket_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fbucket_size.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/bucket_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_set/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_set%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_set/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/replace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Freplace.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/replace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/extract.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fextract.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/extract` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/insert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Finsert.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/insert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/equal_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fequal_range.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/equal_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/value_compare.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fvalue_compare.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/value_compare` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Frend.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/value_comp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fvalue_comp.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/value_comp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/flat_multimap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fflat_multimap.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/flat_multimap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/upper_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fupper_bound.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/upper_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/lower_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Flower_bound.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/lower_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fcount.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/contains.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fcontains.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/contains` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/insert_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Finsert_range.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/insert_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/values.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fvalues.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/values` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/emplace_hint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Femplace_hint.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/emplace_hint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/key_comp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fkey_comp.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/key_comp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/keys.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fkeys.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/keys` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multimap/uses_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multimap%2Fuses_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multimap/uses_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/bucket_count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fbucket_count.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/bucket_count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/end2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fend2.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/end2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/extract.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fextract.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/extract` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/insert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Finsert.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/insert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/equal_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fequal_range.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/equal_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/unordered_multimap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Funordered_multimap.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/unordered_multimap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/load_factor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fload_factor.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/load_factor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/~unordered_multimap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2F~unordered_multimap.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/~unordered_multimap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/rehash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Frehash.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/rehash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/begin2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fbegin2.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/begin2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/max_bucket_count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fmax_bucket_count.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/max_bucket_count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/reserve.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Freserve.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/reserve` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fcount.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/get_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fget_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/get_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/contains.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fcontains.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/contains` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/merge.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fmerge.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/merge` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/insert_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Finsert_range.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/insert_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/key_eq.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fkey_eq.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/key_eq` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/bucket.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fbucket.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/bucket` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/emplace_hint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Femplace_hint.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/emplace_hint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/hash_function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fhash_function.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/hash_function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/max_load_factor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fmax_load_factor.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/max_load_factor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/bucket_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fbucket_size.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/bucket_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multimap/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multimap%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multimap/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/replace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Freplace.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/replace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fat.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/try_emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Ftry_emplace.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/try_emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/extract.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fextract.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/extract` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/insert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Finsert.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/insert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/equal_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fequal_range.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/equal_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/value_compare.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fvalue_compare.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/value_compare` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Frend.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/value_comp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fvalue_comp.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/value_comp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/upper_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fupper_bound.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/upper_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/lower_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Flower_bound.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/lower_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fcount.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/contains.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fcontains.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/contains` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/insert_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Finsert_range.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/insert_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/values.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fvalues.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/values` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/emplace_hint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Femplace_hint.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/emplace_hint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/insert_or_assign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Finsert_or_assign.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/insert_or_assign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/key_comp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fkey_comp.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/key_comp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/keys.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fkeys.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/keys` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/flat_map.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fflat_map.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/flat_map` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_map/uses_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_map%2Fuses_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/flat_map/uses_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/extent.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fextent.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/extent` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/mapping.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fmapping.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/mapping` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/mdspan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fmdspan.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/mdspan` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/extents_mfun.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fextents_mfun.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/extents_mfun` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/default_accessor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fdefault_accessor.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/default_accessor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/full_extent.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Ffull_extent.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/full_extent` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/stride.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fstride.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/stride` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_stride.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_stride.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_stride` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/submdspan_mapping_result.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fsubmdspan_mapping_result.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/submdspan_mapping_result` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/accessor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Faccessor.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/accessor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_right_padded.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_right_padded.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_right_padded` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/extents.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fextents.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/extents` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_left.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_left.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_left` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/data_handle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fdata_handle.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/data_handle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/rank_dynamic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Frank_dynamic.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/rank_dynamic` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_left_padded.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_left_padded.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_left_padded` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/static_extent.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fstatic_extent.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/static_extent` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/mapping_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fmapping_traits.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/mapping_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_right.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_right.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_right` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/rank.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Frank.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/rank` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/strided_slice.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fstrided_slice.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/strided_slice` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_right/mapping.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_right%2Fmapping.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_right/mapping` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_right/mapping/operator==.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_right%2Fmapping%2Foperator%3D%3D.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_right/mapping/operator==` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_right/mapping/stride.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_right%2Fmapping%2Fstride.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_right/mapping/stride` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_right/mapping/extents.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_right%2Fmapping%2Fextents.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_right/mapping/extents` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_right/mapping/required_span_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_right%2Fmapping%2Frequired_span_size.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_right/mapping/required_span_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_right/mapping/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_right%2Fmapping%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_right/mapping/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_right/mapping/mapping_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_right%2Fmapping%2Fmapping_traits.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_right/mapping/mapping_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_stride/mapping.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_stride%2Fmapping.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_stride/mapping` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_stride/mapping/operator==.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_stride%2Fmapping%2Foperator%3D%3D.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_stride/mapping/operator==` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_stride/mapping/stride.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_stride%2Fmapping%2Fstride.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_stride/mapping/stride` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_stride/mapping/extents.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_stride%2Fmapping%2Fextents.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_stride/mapping/extents` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_stride/mapping/required_span_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_stride%2Fmapping%2Frequired_span_size.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_stride/mapping/required_span_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_stride/mapping/strides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_stride%2Fmapping%2Fstrides.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_stride/mapping/strides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_stride/mapping/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_stride%2Fmapping%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_stride/mapping/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_stride/mapping/mapping_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_stride%2Fmapping%2Fmapping_traits.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_stride/mapping/mapping_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/extents/extent.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fextents%2Fextent.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/extents/extent` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/extents/operator==.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fextents%2Foperator%3D%3D.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/extents/operator==` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/extents/dynamic-index.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fextents%2Fdynamic-index.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/extents/dynamic-index` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/extents/index-cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fextents%2Findex-cast.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/extents/index-cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/extents/extents.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fextents%2Fextents.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/extents/extents` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/extents/rev-prod-of-extents.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fextents%2Frev-prod-of-extents.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/extents/rev-prod-of-extents` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/extents/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fextents%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/extents/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/extents/fwd-prod-of-extents.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fextents%2Ffwd-prod-of-extents.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/extents/fwd-prod-of-extents` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/extents/rank_dynamic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fextents%2Frank_dynamic.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/extents/rank_dynamic` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/extents/static_extent.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fextents%2Fstatic_extent.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/extents/static_extent` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/extents/dynamic-index-inv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fextents%2Fdynamic-index-inv.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/extents/dynamic-index-inv` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/extents/rank.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Fextents%2Frank.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/extents/rank` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_left/mapping.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_left%2Fmapping.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_left/mapping` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_left/mapping/operator==.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_left%2Fmapping%2Foperator%3D%3D.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_left/mapping/operator==` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_left/mapping/stride.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_left%2Fmapping%2Fstride.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_left/mapping/stride` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_left/mapping/extents.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_left%2Fmapping%2Fextents.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_left/mapping/extents` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_left/mapping/required_span_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_left%2Fmapping%2Frequired_span_size.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_left/mapping/required_span_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_left/mapping/operator().html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_left%2Fmapping%2Foperator().html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_left/mapping/operator()` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/mdspan/layout_left/mapping/mapping_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmdspan%2Flayout_left%2Fmapping%2Fmapping_traits.html&labels=migrate-cppref-page) | `cpp/library/container/mdspan/layout_left/mapping/mapping_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/extract.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fextract.html&labels=migrate-cppref-page) | `cpp/library/container/set/extract` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/insert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Finsert.html&labels=migrate-cppref-page) | `cpp/library/container/set/insert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/set/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/set/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/container/set/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/equal_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fequal_range.html&labels=migrate-cppref-page) | `cpp/library/container/set/equal_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/container/set/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/set/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/set/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/set/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Frend.html&labels=migrate-cppref-page) | `cpp/library/container/set/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/~set.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2F~set.html&labels=migrate-cppref-page) | `cpp/library/container/set/~set` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/set/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/set/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/value_comp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fvalue_comp.html&labels=migrate-cppref-page) | `cpp/library/container/set/value_comp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/set/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/upper_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fupper_bound.html&labels=migrate-cppref-page) | `cpp/library/container/set/upper_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/container/set/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/lower_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Flower_bound.html&labels=migrate-cppref-page) | `cpp/library/container/set/lower_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fcount.html&labels=migrate-cppref-page) | `cpp/library/container/set/count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/container/set/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/set/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/get_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fget_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/set/get_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/contains.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fcontains.html&labels=migrate-cppref-page) | `cpp/library/container/set/contains` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/merge.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fmerge.html&labels=migrate-cppref-page) | `cpp/library/container/set/merge` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/container/set/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/insert_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Finsert_range.html&labels=migrate-cppref-page) | `cpp/library/container/set/insert_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/emplace_hint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Femplace_hint.html&labels=migrate-cppref-page) | `cpp/library/container/set/emplace_hint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/key_comp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fkey_comp.html&labels=migrate-cppref-page) | `cpp/library/container/set/key_comp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/set/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/set.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fset.html&labels=migrate-cppref-page) | `cpp/library/container/set/set` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/set/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fset%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/container/set/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/container/array/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Fat.html&labels=migrate-cppref-page) | `cpp/library/container/array/at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Fback.html&labels=migrate-cppref-page) | `cpp/library/container/array/back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/array/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/container/array/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/array/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/array/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/array/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Frend.html&labels=migrate-cppref-page) | `cpp/library/container/array/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/to_array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Fto_array.html&labels=migrate-cppref-page) | `cpp/library/container/array/to_array` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/array/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/array/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/array/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Ffront.html&labels=migrate-cppref-page) | `cpp/library/container/array/front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/container/array/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/tuple_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Ftuple_size.html&labels=migrate-cppref-page) | `cpp/library/container/array/tuple_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Fget.html&labels=migrate-cppref-page) | `cpp/library/container/array/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/array/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/fill.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Ffill.html&labels=migrate-cppref-page) | `cpp/library/container/array/fill` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/tuple_element.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Ftuple_element.html&labels=migrate-cppref-page) | `cpp/library/container/array/tuple_element` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/array/data.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Farray%2Fdata.html&labels=migrate-cppref-page) | `cpp/library/container/array/data` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/remove.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fremove.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/remove` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/assign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fassign.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/assign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/erase_after.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Ferase_after.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/erase_after` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/emplace_after.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Femplace_after.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/emplace_after` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/~forward_list.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2F~forward_list.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/~forward_list` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/insert_after.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Finsert_after.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/insert_after` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/emplace_front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Femplace_front.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/emplace_front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/assign_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fassign_range.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/assign_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Ffront.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/resize.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fresize.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/resize` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/pop_front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fpop_front.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/pop_front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/get_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fget_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/get_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/merge.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fmerge.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/merge` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/unique.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Funique.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/unique` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/splice_after.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fsplice_after.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/splice_after` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/erase2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Ferase2.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/erase2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/sort.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fsort.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/sort` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/forward_list.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fforward_list.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/forward_list` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/push_front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fpush_front.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/push_front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/insert_range_after.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Finsert_range_after.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/insert_range_after` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/before_begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fbefore_begin.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/before_begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/prepend_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fprepend_range.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/prepend_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/forward_list/reverse.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fforward_list%2Freverse.html&labels=migrate-cppref-page) | `cpp/library/container/forward_list/reverse` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/container/map/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fat.html&labels=migrate-cppref-page) | `cpp/library/container/map/at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/try_emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Ftry_emplace.html&labels=migrate-cppref-page) | `cpp/library/container/map/try_emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/extract.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fextract.html&labels=migrate-cppref-page) | `cpp/library/container/map/extract` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/insert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Finsert.html&labels=migrate-cppref-page) | `cpp/library/container/map/insert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/map/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/map/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/container/map/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/equal_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fequal_range.html&labels=migrate-cppref-page) | `cpp/library/container/map/equal_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/container/map/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/map/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/map/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/map/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/value_compare.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fvalue_compare.html&labels=migrate-cppref-page) | `cpp/library/container/map/value_compare` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Frend.html&labels=migrate-cppref-page) | `cpp/library/container/map/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/map/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/map/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/value_comp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fvalue_comp.html&labels=migrate-cppref-page) | `cpp/library/container/map/value_comp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/map/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/upper_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fupper_bound.html&labels=migrate-cppref-page) | `cpp/library/container/map/upper_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/container/map/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/lower_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Flower_bound.html&labels=migrate-cppref-page) | `cpp/library/container/map/lower_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fcount.html&labels=migrate-cppref-page) | `cpp/library/container/map/count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/container/map/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/map/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/get_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fget_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/map/get_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/contains.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fcontains.html&labels=migrate-cppref-page) | `cpp/library/container/map/contains` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/merge.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fmerge.html&labels=migrate-cppref-page) | `cpp/library/container/map/merge` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/container/map/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/~map.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2F~map.html&labels=migrate-cppref-page) | `cpp/library/container/map/~map` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/insert_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Finsert_range.html&labels=migrate-cppref-page) | `cpp/library/container/map/insert_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/map.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fmap.html&labels=migrate-cppref-page) | `cpp/library/container/map/map` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/emplace_hint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Femplace_hint.html&labels=migrate-cppref-page) | `cpp/library/container/map/emplace_hint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/insert_or_assign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Finsert_or_assign.html&labels=migrate-cppref-page) | `cpp/library/container/map/insert_or_assign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/key_comp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fkey_comp.html&labels=migrate-cppref-page) | `cpp/library/container/map/key_comp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/map/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/map/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmap%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/container/map/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fat.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fback.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/assign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fassign.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/assign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/emplace_back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Femplace_back.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/emplace_back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/unchecked_emplace_back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Funchecked_emplace_back.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/unchecked_emplace_back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/insert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Finsert.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/insert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/try_push_back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Ftry_push_back.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/try_push_back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/try_emplace_back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Ftry_emplace_back.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/try_emplace_back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Frend.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/pop_back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fpop_back.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/pop_back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/inplace_vector.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Finplace_vector.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/inplace_vector` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/assign_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fassign_range.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/assign_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Ffront.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/~inplace_vector.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2F~inplace_vector.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/~inplace_vector` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/resize.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fresize.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/resize` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/reserve.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Freserve.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/reserve` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/insert_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Finsert_range.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/insert_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/erase2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Ferase2.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/erase2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/unchecked_push_back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Funchecked_push_back.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/unchecked_push_back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/capacity.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fcapacity.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/capacity` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/data.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fdata.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/data` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/push_back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fpush_back.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/push_back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/shrink_to_fit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fshrink_to_fit.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/shrink_to_fit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/try_append_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Ftry_append_range.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/try_append_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/append_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fappend_range.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/append_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/inplace_vector/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Finplace_vector%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/container/inplace_vector/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/extract.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fextract.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/extract` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/insert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Finsert.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/insert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/equal_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fequal_range.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/equal_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Frend.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/multiset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fmultiset.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/multiset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/value_comp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fvalue_comp.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/value_comp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/upper_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fupper_bound.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/upper_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/lower_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Flower_bound.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/lower_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fcount.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/get_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fget_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/get_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/contains.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fcontains.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/contains` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/merge.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fmerge.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/merge` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/insert_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Finsert_range.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/insert_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/emplace_hint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Femplace_hint.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/emplace_hint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/key_comp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fkey_comp.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/key_comp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/~multiset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2F~multiset.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/~multiset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multiset/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultiset%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/container/multiset/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/queue/back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fqueue%2Fback.html&labels=migrate-cppref-page) | `cpp/library/container/queue/back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/queue/push.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fqueue%2Fpush.html&labels=migrate-cppref-page) | `cpp/library/container/queue/push` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/queue/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fqueue%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/queue/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/queue/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fqueue%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/queue/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/queue/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fqueue%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/queue/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/queue/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fqueue%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/queue/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/queue/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fqueue%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/container/queue/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/queue/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fqueue%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/queue/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/queue/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fqueue%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/queue/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/queue/queue.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fqueue%2Fqueue.html&labels=migrate-cppref-page) | `cpp/library/container/queue/queue` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/queue/front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fqueue%2Ffront.html&labels=migrate-cppref-page) | `cpp/library/container/queue/front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/queue/push_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fqueue%2Fpush_range.html&labels=migrate-cppref-page) | `cpp/library/container/queue/push_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/queue/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fqueue%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/queue/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/queue/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fqueue%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/queue/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/queue/pop.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fqueue%2Fpop.html&labels=migrate-cppref-page) | `cpp/library/container/queue/pop` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/queue/~queue.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fqueue%2F~queue.html&labels=migrate-cppref-page) | `cpp/library/container/queue/~queue` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/queue/uses_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fqueue%2Fuses_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/queue/uses_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector_bool/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector_bool%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/container/vector_bool/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector_bool/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector_bool%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/vector_bool/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector_bool/flip.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector_bool%2Fflip.html&labels=migrate-cppref-page) | `cpp/library/container/vector_bool/flip` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector_bool/reference.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector_bool%2Freference.html&labels=migrate-cppref-page) | `cpp/library/container/vector_bool/reference` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/span.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Fspan.html&labels=migrate-cppref-page) | `cpp/library/container/span/span` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/container/span/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Fat.html&labels=migrate-cppref-page) | `cpp/library/container/span/at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Fback.html&labels=migrate-cppref-page) | `cpp/library/container/span/back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/first.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Ffirst.html&labels=migrate-cppref-page) | `cpp/library/container/span/first` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/span/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/span/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/size_bytes.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Fsize_bytes.html&labels=migrate-cppref-page) | `cpp/library/container/span/size_bytes` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/span/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Frend.html&labels=migrate-cppref-page) | `cpp/library/container/span/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/span/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/span/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Ffront.html&labels=migrate-cppref-page) | `cpp/library/container/span/front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/container/span/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/last.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Flast.html&labels=migrate-cppref-page) | `cpp/library/container/span/last` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/as_bytes.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Fas_bytes.html&labels=migrate-cppref-page) | `cpp/library/container/span/as_bytes` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/subspan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Fsubspan.html&labels=migrate-cppref-page) | `cpp/library/container/span/subspan` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/dynamic_extent.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Fdynamic_extent.html&labels=migrate-cppref-page) | `cpp/library/container/span/dynamic_extent` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/span/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/span/data.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fspan%2Fdata.html&labels=migrate-cppref-page) | `cpp/library/container/span/data` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/container/deque/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fat.html&labels=migrate-cppref-page) | `cpp/library/container/deque/at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fback.html&labels=migrate-cppref-page) | `cpp/library/container/deque/back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/assign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fassign.html&labels=migrate-cppref-page) | `cpp/library/container/deque/assign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/emplace_back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Femplace_back.html&labels=migrate-cppref-page) | `cpp/library/container/deque/emplace_back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/insert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Finsert.html&labels=migrate-cppref-page) | `cpp/library/container/deque/insert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/deque/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/deque/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/container/deque/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/deque/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/emplace_front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Femplace_front.html&labels=migrate-cppref-page) | `cpp/library/container/deque/emplace_front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/deque/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/deque/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Frend.html&labels=migrate-cppref-page) | `cpp/library/container/deque/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/deque/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/~deque.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2F~deque.html&labels=migrate-cppref-page) | `cpp/library/container/deque/~deque` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/deque/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/pop_back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fpop_back.html&labels=migrate-cppref-page) | `cpp/library/container/deque/pop_back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/assign_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fassign_range.html&labels=migrate-cppref-page) | `cpp/library/container/deque/assign_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/deque/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Ffront.html&labels=migrate-cppref-page) | `cpp/library/container/deque/front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/resize.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fresize.html&labels=migrate-cppref-page) | `cpp/library/container/deque/resize` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/container/deque/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/container/deque/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/pop_front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fpop_front.html&labels=migrate-cppref-page) | `cpp/library/container/deque/pop_front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/deque/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/get_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fget_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/deque/get_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/deque.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fdeque.html&labels=migrate-cppref-page) | `cpp/library/container/deque/deque` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/insert_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Finsert_range.html&labels=migrate-cppref-page) | `cpp/library/container/deque/insert_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/erase2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Ferase2.html&labels=migrate-cppref-page) | `cpp/library/container/deque/erase2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/push_front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fpush_front.html&labels=migrate-cppref-page) | `cpp/library/container/deque/push_front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/deque/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/push_back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fpush_back.html&labels=migrate-cppref-page) | `cpp/library/container/deque/push_back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/shrink_to_fit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fshrink_to_fit.html&labels=migrate-cppref-page) | `cpp/library/container/deque/shrink_to_fit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/prepend_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fprepend_range.html&labels=migrate-cppref-page) | `cpp/library/container/deque/prepend_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/append_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fappend_range.html&labels=migrate-cppref-page) | `cpp/library/container/deque/append_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/deque/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fdeque%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/container/deque/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fback.html&labels=migrate-cppref-page) | `cpp/library/container/list/back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/remove.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fremove.html&labels=migrate-cppref-page) | `cpp/library/container/list/remove` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/assign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fassign.html&labels=migrate-cppref-page) | `cpp/library/container/list/assign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/emplace_back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Femplace_back.html&labels=migrate-cppref-page) | `cpp/library/container/list/emplace_back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/insert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Finsert.html&labels=migrate-cppref-page) | `cpp/library/container/list/insert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/list/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/list/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/container/list/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/list/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/emplace_front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Femplace_front.html&labels=migrate-cppref-page) | `cpp/library/container/list/emplace_front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/list/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/list/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/list.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Flist.html&labels=migrate-cppref-page) | `cpp/library/container/list/list` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Frend.html&labels=migrate-cppref-page) | `cpp/library/container/list/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/splice.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fsplice.html&labels=migrate-cppref-page) | `cpp/library/container/list/splice` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/list/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/list/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/pop_back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fpop_back.html&labels=migrate-cppref-page) | `cpp/library/container/list/pop_back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/assign_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fassign_range.html&labels=migrate-cppref-page) | `cpp/library/container/list/assign_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/list/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Ffront.html&labels=migrate-cppref-page) | `cpp/library/container/list/front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/resize.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fresize.html&labels=migrate-cppref-page) | `cpp/library/container/list/resize` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/container/list/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/container/list/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/pop_front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fpop_front.html&labels=migrate-cppref-page) | `cpp/library/container/list/pop_front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/list/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/get_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fget_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/list/get_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/~list.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2F~list.html&labels=migrate-cppref-page) | `cpp/library/container/list/~list` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/merge.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fmerge.html&labels=migrate-cppref-page) | `cpp/library/container/list/merge` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/unique.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Funique.html&labels=migrate-cppref-page) | `cpp/library/container/list/unique` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/insert_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Finsert_range.html&labels=migrate-cppref-page) | `cpp/library/container/list/insert_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/erase2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Ferase2.html&labels=migrate-cppref-page) | `cpp/library/container/list/erase2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/sort.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fsort.html&labels=migrate-cppref-page) | `cpp/library/container/list/sort` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/push_front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fpush_front.html&labels=migrate-cppref-page) | `cpp/library/container/list/push_front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/list/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/push_back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fpush_back.html&labels=migrate-cppref-page) | `cpp/library/container/list/push_back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/prepend_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fprepend_range.html&labels=migrate-cppref-page) | `cpp/library/container/list/prepend_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/append_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fappend_range.html&labels=migrate-cppref-page) | `cpp/library/container/list/append_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/container/list/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/list/reverse.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Flist%2Freverse.html&labels=migrate-cppref-page) | `cpp/library/container/list/reverse` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/stack/stack.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fstack%2Fstack.html&labels=migrate-cppref-page) | `cpp/library/container/stack/stack` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/stack/push.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fstack%2Fpush.html&labels=migrate-cppref-page) | `cpp/library/container/stack/push` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/stack/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fstack%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/stack/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/stack/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fstack%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/stack/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/stack/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fstack%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/stack/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/stack/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fstack%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/stack/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/stack/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fstack%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/container/stack/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/stack/top.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fstack%2Ftop.html&labels=migrate-cppref-page) | `cpp/library/container/stack/top` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/stack/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fstack%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/stack/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/stack/~stack.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fstack%2F~stack.html&labels=migrate-cppref-page) | `cpp/library/container/stack/~stack` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/stack/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fstack%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/stack/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/stack/push_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fstack%2Fpush_range.html&labels=migrate-cppref-page) | `cpp/library/container/stack/push_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/stack/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fstack%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/stack/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/stack/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fstack%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/stack/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/stack/pop.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fstack%2Fpop.html&labels=migrate-cppref-page) | `cpp/library/container/stack/pop` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/stack/uses_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fstack%2Fuses_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/stack/uses_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/container/vector/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fat.html&labels=migrate-cppref-page) | `cpp/library/container/vector/at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fback.html&labels=migrate-cppref-page) | `cpp/library/container/vector/back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/assign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fassign.html&labels=migrate-cppref-page) | `cpp/library/container/vector/assign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/emplace_back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Femplace_back.html&labels=migrate-cppref-page) | `cpp/library/container/vector/emplace_back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/insert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Finsert.html&labels=migrate-cppref-page) | `cpp/library/container/vector/insert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/vector/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/vector/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/container/vector/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/vector/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/vector/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/vector/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Frend.html&labels=migrate-cppref-page) | `cpp/library/container/vector/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/vector/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/vector/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/pop_back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fpop_back.html&labels=migrate-cppref-page) | `cpp/library/container/vector/pop_back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/assign_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fassign_range.html&labels=migrate-cppref-page) | `cpp/library/container/vector/assign_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/vector/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Ffront.html&labels=migrate-cppref-page) | `cpp/library/container/vector/front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/resize.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fresize.html&labels=migrate-cppref-page) | `cpp/library/container/vector/resize` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/container/vector/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/reserve.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Freserve.html&labels=migrate-cppref-page) | `cpp/library/container/vector/reserve` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/container/vector/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/vector/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/get_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fget_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/vector/get_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/insert_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Finsert_range.html&labels=migrate-cppref-page) | `cpp/library/container/vector/insert_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/erase2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Ferase2.html&labels=migrate-cppref-page) | `cpp/library/container/vector/erase2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/~vector.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2F~vector.html&labels=migrate-cppref-page) | `cpp/library/container/vector/~vector` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/capacity.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fcapacity.html&labels=migrate-cppref-page) | `cpp/library/container/vector/capacity` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/vector/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/data.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fdata.html&labels=migrate-cppref-page) | `cpp/library/container/vector/data` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/push_back.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fpush_back.html&labels=migrate-cppref-page) | `cpp/library/container/vector/push_back` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/shrink_to_fit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fshrink_to_fit.html&labels=migrate-cppref-page) | `cpp/library/container/vector/shrink_to_fit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/append_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fappend_range.html&labels=migrate-cppref-page) | `cpp/library/container/vector/append_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/container/vector/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/vector/vector.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fvector%2Fvector.html&labels=migrate-cppref-page) | `cpp/library/container/vector/vector` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/extract.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fextract.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/extract` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/insert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Finsert.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/insert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/equal_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fequal_range.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/equal_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/value_compare.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fvalue_compare.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/value_compare` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Frend.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/value_comp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fvalue_comp.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/value_comp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/upper_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fupper_bound.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/upper_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/lower_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Flower_bound.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/lower_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fcount.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/get_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fget_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/get_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/contains.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fcontains.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/contains` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/merge.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fmerge.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/merge` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/insert_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Finsert_range.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/insert_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/multimap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fmultimap.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/multimap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/emplace_hint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Femplace_hint.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/emplace_hint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/~multimap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2F~multimap.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/~multimap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/key_comp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fkey_comp.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/key_comp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/multimap/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fmultimap%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/container/multimap/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/replace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Freplace.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/replace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/extract.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Fextract.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/extract` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/insert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Finsert.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/insert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/equal_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Fequal_range.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/equal_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Frend.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/value_comp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Fvalue_comp.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/value_comp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/upper_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Fupper_bound.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/upper_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/lower_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Flower_bound.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/lower_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Fcount.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/contains.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Fcontains.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/contains` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/insert_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Finsert_range.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/insert_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/emplace_hint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Femplace_hint.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/emplace_hint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/key_comp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Fkey_comp.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/key_comp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/flat_multiset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Fflat_multiset.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/flat_multiset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_multiset/uses_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_multiset%2Fuses_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/flat_multiset/uses_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/replace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Freplace.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/replace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/extract.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Fextract.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/extract` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/insert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Finsert.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/insert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/equal_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Fequal_range.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/equal_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/rend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Frend.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/rend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/value_comp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Fvalue_comp.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/value_comp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/flat_set.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Fflat_set.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/flat_set` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/upper_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Fupper_bound.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/upper_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/rbegin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Frbegin.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/rbegin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/lower_bound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Flower_bound.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/lower_bound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Fcount.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/contains.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Fcontains.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/contains` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/insert_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Finsert_range.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/insert_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/emplace_hint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Femplace_hint.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/emplace_hint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/key_comp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Fkey_comp.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/key_comp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/flat_set/uses_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fflat_set%2Fuses_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/flat_set/uses_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/bucket_count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fbucket_count.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/bucket_count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/end2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fend2.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/end2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/extract.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fextract.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/extract` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/insert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Finsert.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/insert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/find.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Ffind.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/find` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/equal_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fequal_range.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/equal_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fend.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/load_factor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fload_factor.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/load_factor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/rehash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Frehash.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/rehash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/begin2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fbegin2.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/begin2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/unordered_multiset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Funordered_multiset.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/unordered_multiset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/max_bucket_count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fmax_bucket_count.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/max_bucket_count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/reserve.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Freserve.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/reserve` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fcount.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/erase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Ferase.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/erase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/get_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fget_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/get_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/contains.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fcontains.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/contains` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/merge.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fmerge.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/merge` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/erase_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Ferase_if.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/erase_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/insert_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Finsert_range.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/insert_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/key_eq.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fkey_eq.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/key_eq` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/~unordered_multiset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2F~unordered_multiset.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/~unordered_multiset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/bucket.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fbucket.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/bucket` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/emplace_hint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Femplace_hint.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/emplace_hint` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/hash_function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fhash_function.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/hash_function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/max_load_factor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fmax_load_factor.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/max_load_factor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/bucket_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fbucket_size.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/bucket_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/unordered_multiset/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Funordered_multiset%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/container/unordered_multiset/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/priority_queue/push.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fpriority_queue%2Fpush.html&labels=migrate-cppref-page) | `cpp/library/container/priority_queue/push` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/priority_queue/emplace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fpriority_queue%2Femplace.html&labels=migrate-cppref-page) | `cpp/library/container/priority_queue/emplace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/priority_queue/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fpriority_queue%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/container/priority_queue/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/priority_queue/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fpriority_queue%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/container/priority_queue/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/priority_queue/priority_queue.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fpriority_queue%2Fpriority_queue.html&labels=migrate-cppref-page) | `cpp/library/container/priority_queue/priority_queue` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/priority_queue/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fpriority_queue%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/container/priority_queue/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/priority_queue/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fpriority_queue%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/container/priority_queue/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/priority_queue/~priority_queue.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fpriority_queue%2F~priority_queue.html&labels=migrate-cppref-page) | `cpp/library/container/priority_queue/~priority_queue` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/priority_queue/top.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fpriority_queue%2Ftop.html&labels=migrate-cppref-page) | `cpp/library/container/priority_queue/top` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/priority_queue/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fpriority_queue%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/container/priority_queue/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/priority_queue/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fpriority_queue%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/container/priority_queue/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/priority_queue/push_range.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fpriority_queue%2Fpush_range.html&labels=migrate-cppref-page) | `cpp/library/container/priority_queue/push_range` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/priority_queue/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fpriority_queue%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/container/priority_queue/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/priority_queue/pop.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fpriority_queue%2Fpop.html&labels=migrate-cppref-page) | `cpp/library/container/priority_queue/pop` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/container/priority_queue/uses_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcontainer%2Fpriority_queue%2Fuses_allocator.html&labels=migrate-cppref-page) | `cpp/library/container/priority_queue/uses_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/steady_clock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fsteady_clock.html&labels=migrate-cppref-page) | `cpp/library/chrono/steady_clock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/tzdb_functions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftzdb_functions.html&labels=migrate-cppref-page) | `cpp/library/chrono/tzdb_functions` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/locate_zone.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Flocate_zone.html&labels=migrate-cppref-page) | `cpp/library/chrono/locate_zone` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_weekday_last.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_weekday_last.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_weekday_last` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/operator_q__q_ms.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Foperator_q__q_ms.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/operator_q__q_ms` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/utc_clock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Futc_clock.html&labels=migrate-cppref-page) | `cpp/library/chrono/utc_clock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/system_clock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fsystem_clock.html&labels=migrate-cppref-page) | `cpp/library/chrono/system_clock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/operator_slash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Foperator_slash.html&labels=migrate-cppref-page) | `cpp/library/chrono/operator_slash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/operator_q__q_us.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Foperator_q__q_us.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/operator_q__q_us` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/leap_second.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fleap_second.html&labels=migrate-cppref-page) | `cpp/library/chrono/leap_second` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day_last.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day_last.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day_last` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/clock_time_conversion.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fclock_time_conversion.html&labels=migrate-cppref-page) | `cpp/library/chrono/clock_time_conversion` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration_values.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration_values.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/../duration_values` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/local_info.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Flocal_info.html&labels=migrate-cppref-page) | `cpp/library/chrono/local_info` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/sys_info.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fsys_info.html&labels=migrate-cppref-page) | `cpp/library/chrono/sys_info` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/tzdb.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftzdb.html&labels=migrate-cppref-page) | `cpp/library/chrono/tzdb` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/gps_clock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fgps_clock.html&labels=migrate-cppref-page) | `cpp/library/chrono/gps_clock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/nonexistent_local_time.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fnonexistent_local_time.html&labels=migrate-cppref-page) | `cpp/library/chrono/nonexistent_local_time` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/local_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Flocal_t.html&labels=migrate-cppref-page) | `cpp/library/chrono/local_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday_indexed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday_indexed.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday_indexed` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_point.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_point.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_point` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_weekday.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_weekday.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_weekday` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday_last.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday_last.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday_last` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/ambiguous_local_time.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fambiguous_local_time.html&labels=migrate-cppref-page) | `cpp/library/chrono/ambiguous_local_time` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/tzdb_list.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftzdb_list.html&labels=migrate-cppref-page) | `cpp/library/chrono/tzdb_list` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/hh_mm_ss.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fhh_mm_ss.html&labels=migrate-cppref-page) | `cpp/library/chrono/hh_mm_ss` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/parse.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fparse.html&labels=migrate-cppref-page) | `cpp/library/chrono/parse` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday_last.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday_last.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday_last` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_day_last.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_day_last.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_day_last` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/c.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fc.html&labels=migrate-cppref-page) | `cpp/library/chrono/c` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_zone.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_zone.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_zone` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/tai_clock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftai_clock.html&labels=migrate-cppref-page) | `cpp/library/chrono/tai_clock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/hour_fun.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fhour_fun.html&labels=migrate-cppref-page) | `cpp/library/chrono/hour_fun` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/last_spec.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Flast_spec.html&labels=migrate-cppref-page) | `cpp/library/chrono/last_spec` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/clock_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fclock_cast.html&labels=migrate-cppref-page) | `cpp/library/chrono/clock_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear.html&labels=migrate-cppref-page) | `cpp/library/chrono/year` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/current_zone.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fcurrent_zone.html&labels=migrate-cppref-page) | `cpp/library/chrono/current_zone` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/file_clock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ffile_clock.html&labels=migrate-cppref-page) | `cpp/library/chrono/file_clock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth.html&labels=migrate-cppref-page) | `cpp/library/chrono/month` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/zoned_time.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fzoned_time.html&labels=migrate-cppref-page) | `cpp/library/chrono/zoned_time` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/day.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fday.html&labels=migrate-cppref-page) | `cpp/library/chrono/day` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_day.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_day.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_day` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/treat_as_floating_point.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftreat_as_floating_point.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/treat_as_floating_point` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/zoned_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fzoned_traits.html&labels=migrate-cppref-page) | `cpp/library/chrono/zoned_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/operator_q__q_h.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Foperator_q__q_h.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/operator_q__q_h` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/is_clock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fis_clock.html&labels=migrate-cppref-page) | `cpp/library/chrono/is_clock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_zone_link.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_zone_link.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_zone_link` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/operator_q__q_ns.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Foperator_q__q_ns.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/operator_q__q_ns` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/high_resolution_clock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fhigh_resolution_clock.html&labels=migrate-cppref-page) | `cpp/library/chrono/high_resolution_clock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/choose.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fchoose.html&labels=migrate-cppref-page) | `cpp/library/chrono/choose` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_point/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_point%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_point/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_point/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_point%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_point/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_point/floor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_point%2Ffloor.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_point/floor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_point/ceil.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_point%2Fceil.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_point/ceil` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_point/time_point_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_point%2Ftime_point_cast.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_point/time_point_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_point/time_point.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_point%2Ftime_point.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_point/time_point` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_point/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_point%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_point/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_point/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_point%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_point/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_point/common_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_point%2Fcommon_type.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_point/common_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_point/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_point%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_point/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_point/operator_inc_dec.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_point%2Foperator_inc_dec.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_point/operator_inc_dec` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_point/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_point%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_point/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_point/round.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_point%2Fround.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_point/round` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_point/time_since_epoch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_point%2Ftime_since_epoch.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_point/time_since_epoch` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday_last/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday_last%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday_last/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday_last/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday_last%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday_last/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday_last/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday_last%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday_last/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday_last/year_month_weekday_last.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday_last%2Fyear_month_weekday_last.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday_last/year_month_weekday_last` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday_last/operator_arith_2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday_last%2Foperator_arith_2.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday_last/operator_arith_2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday_last/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday_last%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday_last/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday_last/accessors.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday_last%2Faccessors.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday_last/accessors` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday_last/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday_last%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday_last/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday_last/operator_days.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday_last%2Foperator_days.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday_last/operator_days` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday_last/ok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday_last%2Fok.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday_last/ok` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/file_clock/to_from_sys.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ffile_clock%2Fto_from_sys.html&labels=migrate-cppref-page) | `cpp/library/chrono/file_clock/to_from_sys` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/file_clock/to_from_utc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ffile_clock%2Fto_from_utc.html&labels=migrate-cppref-page) | `cpp/library/chrono/file_clock/to_from_utc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/file_clock/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ffile_clock%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/file_clock/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/file_clock/now.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ffile_clock%2Fnow.html&labels=migrate-cppref-page) | `cpp/library/chrono/file_clock/now` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/file_clock/from_stream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ffile_clock%2Ffrom_stream.html&labels=migrate-cppref-page) | `cpp/library/chrono/file_clock/from_stream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/file_clock/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ffile_clock%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/file_clock/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month/operator_arith_2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month%2Foperator_arith_2.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month/operator_arith_2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month/year_month.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month%2Fyear_month.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month/year_month` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month/from_stream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month%2Ffrom_stream.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month/from_stream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month/accessors.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month%2Faccessors.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month/accessors` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month/ok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month%2Fok.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month/ok` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration_values/zero.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration_values%2Fzero.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/../duration_values/zero` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration_values/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration_values%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/../duration_values/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration_values/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration_values%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/../duration_values/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/zero.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Fzero.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/zero` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/duration.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Fduration.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/duration` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/floor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Ffloor.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/floor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/ceil.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Fceil.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/ceil` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/operator_arith3.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Foperator_arith3.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/operator_arith3` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/common_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Fcommon_type.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/common_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Fcount.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/duration_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Fduration_cast.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/duration_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/from_stream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Ffrom_stream.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/from_stream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/operator_arith4.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Foperator_arith4.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/operator_arith4` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/operator_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Foperator_arith2.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/operator_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/round.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Fround.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/round` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/duration/abs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fduration%2Fabs.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/abs` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/gps_clock/to_utc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fgps_clock%2Fto_utc.html&labels=migrate-cppref-page) | `cpp/library/chrono/gps_clock/to_utc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/gps_clock/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fgps_clock%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/gps_clock/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/gps_clock/now.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fgps_clock%2Fnow.html&labels=migrate-cppref-page) | `cpp/library/chrono/gps_clock/now` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/gps_clock/from_stream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fgps_clock%2Ffrom_stream.html&labels=migrate-cppref-page) | `cpp/library/chrono/gps_clock/from_stream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/gps_clock/from_utc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fgps_clock%2Ffrom_utc.html&labels=migrate-cppref-page) | `cpp/library/chrono/gps_clock/from_utc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/gps_clock/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fgps_clock%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/gps_clock/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/leap_second/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fleap_second%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/leap_second/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/leap_second/date.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fleap_second%2Fdate.html&labels=migrate-cppref-page) | `cpp/library/chrono/leap_second/date` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/leap_second/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fleap_second%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/leap_second/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/utc_clock/get_leap_second_info.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Futc_clock%2Fget_leap_second_info.html&labels=migrate-cppref-page) | `cpp/library/chrono/utc_clock/get_leap_second_info` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/utc_clock/to_sys.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Futc_clock%2Fto_sys.html&labels=migrate-cppref-page) | `cpp/library/chrono/utc_clock/to_sys` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/utc_clock/leap_second_info.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Futc_clock%2Fleap_second_info.html&labels=migrate-cppref-page) | `cpp/library/chrono/utc_clock/leap_second_info` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/utc_clock/from_sys.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Futc_clock%2Ffrom_sys.html&labels=migrate-cppref-page) | `cpp/library/chrono/utc_clock/from_sys` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/utc_clock/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Futc_clock%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/utc_clock/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/utc_clock/now.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Futc_clock%2Fnow.html&labels=migrate-cppref-page) | `cpp/library/chrono/utc_clock/now` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/utc_clock/from_stream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Futc_clock%2Ffrom_stream.html&labels=migrate-cppref-page) | `cpp/library/chrono/utc_clock/from_stream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/utc_clock/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Futc_clock%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/utc_clock/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_day/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_day%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_day/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_day/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_day%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_day/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_day/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_day%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_day/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_day/from_stream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_day%2Ffrom_stream.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_day/from_stream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_day/accessors.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_day%2Faccessors.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_day/accessors` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_day/month_day.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_day%2Fmonth_day.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_day/month_day` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_day/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_day%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_day/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_day/ok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_day%2Fok.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_day/ok` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/local_info/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Flocal_info%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/local_info/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/local_info/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Flocal_info%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/local_info/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/steady_clock/now.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fsteady_clock%2Fnow.html&labels=migrate-cppref-page) | `cpp/library/chrono/steady_clock/now` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/high_resolution_clock/now.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fhigh_resolution_clock%2Fnow.html&labels=migrate-cppref-page) | `cpp/library/chrono/high_resolution_clock/now` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year/operator_sign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear%2Foperator_sign.html&labels=migrate-cppref-page) | `cpp/library/chrono/year/operator_sign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/year/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/chrono/year/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/year/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/chrono/year/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year/operator_arith_2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear%2Foperator_arith_2.html&labels=migrate-cppref-page) | `cpp/library/chrono/year/operator_arith_2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/chrono/year/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/year/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year/from_stream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear%2Ffrom_stream.html&labels=migrate-cppref-page) | `cpp/library/chrono/year/from_stream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year/operator_int.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear%2Foperator_int.html&labels=migrate-cppref-page) | `cpp/library/chrono/year/operator_int` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year/operator_inc_dec.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear%2Foperator_inc_dec.html&labels=migrate-cppref-page) | `cpp/library/chrono/year/operator_inc_dec` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year/year.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear%2Fyear.html&labels=migrate-cppref-page) | `cpp/library/chrono/year/year` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year/is_leap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear%2Fis_leap.html&labels=migrate-cppref-page) | `cpp/library/chrono/year/is_leap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/year/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year/ok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear%2Fok.html&labels=migrate-cppref-page) | `cpp/library/chrono/year/ok` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday_indexed/index.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday_indexed%2Findex.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday_indexed/index` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday_indexed/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday_indexed%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday_indexed/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday_indexed/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday_indexed%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday_indexed/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday_indexed/weekday_indexed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday_indexed%2Fweekday_indexed.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday_indexed/weekday_indexed` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday_indexed/weekday.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday_indexed%2Fweekday.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday_indexed/weekday` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday_indexed/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday_indexed%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday_indexed/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday_indexed/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday_indexed%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday_indexed/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday_indexed/ok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday_indexed%2Fok.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday_indexed/ok` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/c/mktime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fc%2Fmktime.html&labels=migrate-cppref-page) | `cpp/library/chrono/c/mktime` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/c/clock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fc%2Fclock.html&labels=migrate-cppref-page) | `cpp/library/chrono/c/clock` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/c/CLOCKS_PER_SEC.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fc%2FCLOCKS_PER_SEC.html&labels=migrate-cppref-page) | `cpp/library/chrono/c/CLOCKS_PER_SEC` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/c/time_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fc%2Ftime_t.html&labels=migrate-cppref-page) | `cpp/library/chrono/c/time_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/c/gmtime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fc%2Fgmtime.html&labels=migrate-cppref-page) | `cpp/library/chrono/c/gmtime` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/c/clock_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fc%2Fclock_t.html&labels=migrate-cppref-page) | `cpp/library/chrono/c/clock_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/c/strftime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fc%2Fstrftime.html&labels=migrate-cppref-page) | `cpp/library/chrono/c/strftime` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/c/difftime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fc%2Fdifftime.html&labels=migrate-cppref-page) | `cpp/library/chrono/c/difftime` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/c/ctime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fc%2Fctime.html&labels=migrate-cppref-page) | `cpp/library/chrono/c/ctime` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/c/asctime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fc%2Fasctime.html&labels=migrate-cppref-page) | `cpp/library/chrono/c/asctime` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/c/tm.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fc%2Ftm.html&labels=migrate-cppref-page) | `cpp/library/chrono/c/tm` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/c/time.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fc%2Ftime.html&labels=migrate-cppref-page) | `cpp/library/chrono/c/time` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/c/timespec.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fc%2Ftimespec.html&labels=migrate-cppref-page) | `cpp/library/chrono/c/timespec` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/c/timespec_get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fc%2Ftimespec_get.html&labels=migrate-cppref-page) | `cpp/library/chrono/c/timespec_get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/c/wcsftime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fc%2Fwcsftime.html&labels=migrate-cppref-page) | `cpp/library/chrono/c/wcsftime` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/c/localtime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fc%2Flocaltime.html&labels=migrate-cppref-page) | `cpp/library/chrono/c/localtime` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/local_t/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Flocal_t%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/local_t/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/local_t/from_stream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Flocal_t%2Ffrom_stream.html&labels=migrate-cppref-page) | `cpp/library/chrono/local_t/from_stream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/local_t/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Flocal_t%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/local_t/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_weekday/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_weekday%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_weekday/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_weekday/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_weekday%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_weekday/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_weekday/month_weekday.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_weekday%2Fmonth_weekday.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_weekday/month_weekday` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_weekday/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_weekday%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_weekday/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_weekday/accessors.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_weekday%2Faccessors.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_weekday/accessors` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_weekday/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_weekday%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_weekday/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_weekday/ok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_weekday%2Fok.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_weekday/ok` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day/year_month_day.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day%2Fyear_month_day.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day/year_month_day` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day/operator_arith_2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day%2Foperator_arith_2.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day/operator_arith_2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day/from_stream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day%2Ffrom_stream.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day/from_stream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day/accessors.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day%2Faccessors.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day/accessors` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day/operator_days.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day%2Foperator_days.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day/operator_days` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day/ok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day%2Fok.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day/ok` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_zone/to_sys.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_zone%2Fto_sys.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_zone/to_sys` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_zone/to_local.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_zone%2Fto_local.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_zone/to_local` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_zone/name.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_zone%2Fname.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_zone/name` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_zone/get_info.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_zone%2Fget_info.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_zone/get_info` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_zone/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_zone%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_zone/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/tai_clock/to_utc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftai_clock%2Fto_utc.html&labels=migrate-cppref-page) | `cpp/library/chrono/tai_clock/to_utc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/tai_clock/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftai_clock%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/tai_clock/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/tai_clock/now.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftai_clock%2Fnow.html&labels=migrate-cppref-page) | `cpp/library/chrono/tai_clock/now` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/tai_clock/from_stream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftai_clock%2Ffrom_stream.html&labels=migrate-cppref-page) | `cpp/library/chrono/tai_clock/from_stream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/tai_clock/from_utc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftai_clock%2Ffrom_utc.html&labels=migrate-cppref-page) | `cpp/library/chrono/tai_clock/from_utc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/tai_clock/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftai_clock%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/tai_clock/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/hh_mm_ss/duration.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fhh_mm_ss%2Fduration.html&labels=migrate-cppref-page) | `cpp/library/chrono/hh_mm_ss/duration` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/hh_mm_ss/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fhh_mm_ss%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/hh_mm_ss/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/hh_mm_ss/hh_mm_ss.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fhh_mm_ss%2Fhh_mm_ss.html&labels=migrate-cppref-page) | `cpp/library/chrono/hh_mm_ss/hh_mm_ss` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/hh_mm_ss/accessors.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fhh_mm_ss%2Faccessors.html&labels=migrate-cppref-page) | `cpp/library/chrono/hh_mm_ss/accessors` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/hh_mm_ss/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fhh_mm_ss%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/hh_mm_ss/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_weekday_last/month_weekday_last.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_weekday_last%2Fmonth_weekday_last.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_weekday_last/month_weekday_last` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_weekday_last/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_weekday_last%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_weekday_last/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_weekday_last/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_weekday_last%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_weekday_last/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_weekday_last/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_weekday_last%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_weekday_last/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_weekday_last/accessors.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_weekday_last%2Faccessors.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_weekday_last/accessors` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_weekday_last/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_weekday_last%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_weekday_last/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_weekday_last/ok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_weekday_last%2Fok.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_weekday_last/ok` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day_last/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day_last%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day_last/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day_last/year_month_day_last.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day_last%2Fyear_month_day_last.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day_last/year_month_day_last` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day_last/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day_last%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day_last/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day_last/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day_last%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day_last/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day_last/operator_arith_2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day_last%2Foperator_arith_2.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day_last/operator_arith_2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day_last/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day_last%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day_last/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day_last/accessors.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day_last%2Faccessors.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day_last/accessors` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day_last/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day_last%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day_last/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day_last/operator_days.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day_last%2Foperator_days.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day_last/operator_days` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_day_last/ok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_day_last%2Fok.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_day_last/ok` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday/year_month_weekday.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday%2Fyear_month_weekday.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday/year_month_weekday` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday/operator_arith_2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday%2Foperator_arith_2.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday/operator_arith_2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday/accessors.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday%2Faccessors.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday/accessors` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday/operator_days.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday%2Foperator_days.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday/operator_days` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/year_month_weekday/ok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fyear_month_weekday%2Fok.html&labels=migrate-cppref-page) | `cpp/library/chrono/year_month_weekday/ok` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_zone_link/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_zone_link%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_zone_link/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/time_zone_link/accessors.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftime_zone_link%2Faccessors.html&labels=migrate-cppref-page) | `cpp/library/chrono/time_zone_link/accessors` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday_last/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday_last%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday_last/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday_last/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday_last%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday_last/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday_last/weekday.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday_last%2Fweekday.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday_last/weekday` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday_last/weekday_last.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday_last%2Fweekday_last.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday_last/weekday_last` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday_last/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday_last%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday_last/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday_last/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday_last%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday_last/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday_last/ok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday_last%2Fok.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday_last/ok` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_day_last/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_day_last%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_day_last/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_day_last/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_day_last%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_day_last/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_day_last/month_day_last.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_day_last%2Fmonth_day_last.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_day_last/month_day_last` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_day_last/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_day_last%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_day_last/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_day_last/month.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_day_last%2Fmonth.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_day_last/month` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_day_last/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_day_last%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_day_last/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month_day_last/ok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth_day_last%2Fok.html&labels=migrate-cppref-page) | `cpp/library/chrono/month_day_last/ok` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/day/operator_unsigned.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fday%2Foperator_unsigned.html&labels=migrate-cppref-page) | `cpp/library/chrono/day/operator_unsigned` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/day/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fday%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/day/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/day/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fday%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/day/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/day/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fday%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/chrono/day/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/day/operator_arith_2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fday%2Foperator_arith_2.html&labels=migrate-cppref-page) | `cpp/library/chrono/day/operator_arith_2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/day/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fday%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/day/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/day/from_stream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fday%2Ffrom_stream.html&labels=migrate-cppref-page) | `cpp/library/chrono/day/from_stream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/day/operator_inc_dec.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fday%2Foperator_inc_dec.html&labels=migrate-cppref-page) | `cpp/library/chrono/day/operator_inc_dec` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/day/day.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fday%2Fday.html&labels=migrate-cppref-page) | `cpp/library/chrono/day/day` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/day/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fday%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/day/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/day/ok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fday%2Fok.html&labels=migrate-cppref-page) | `cpp/library/chrono/day/ok` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/zoned_time/get_time_zone.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fzoned_time%2Fget_time_zone.html&labels=migrate-cppref-page) | `cpp/library/chrono/zoned_time/get_time_zone` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/zoned_time/get_local_time.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fzoned_time%2Fget_local_time.html&labels=migrate-cppref-page) | `cpp/library/chrono/zoned_time/get_local_time` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/zoned_time/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fzoned_time%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/zoned_time/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/zoned_time/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fzoned_time%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/zoned_time/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/zoned_time/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fzoned_time%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/chrono/zoned_time/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/zoned_time/get_info.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fzoned_time%2Fget_info.html&labels=migrate-cppref-page) | `cpp/library/chrono/zoned_time/get_info` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/zoned_time/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fzoned_time%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/zoned_time/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/zoned_time/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fzoned_time%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/chrono/zoned_time/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/zoned_time/zoned_time.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fzoned_time%2Fzoned_time.html&labels=migrate-cppref-page) | `cpp/library/chrono/zoned_time/zoned_time` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/zoned_time/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fzoned_time%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/zoned_time/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/zoned_time/get_sys_time.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fzoned_time%2Fget_sys_time.html&labels=migrate-cppref-page) | `cpp/library/chrono/zoned_time/get_sys_time` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/sys_info/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fsys_info%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/sys_info/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/sys_info/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fsys_info%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/sys_info/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/system_clock/from_time_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fsystem_clock%2Ffrom_time_t.html&labels=migrate-cppref-page) | `cpp/library/chrono/system_clock/from_time_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/system_clock/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fsystem_clock%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/system_clock/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/system_clock/now.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fsystem_clock%2Fnow.html&labels=migrate-cppref-page) | `cpp/library/chrono/system_clock/now` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/system_clock/to_time_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fsystem_clock%2Fto_time_t.html&labels=migrate-cppref-page) | `cpp/library/chrono/system_clock/to_time_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/system_clock/from_stream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fsystem_clock%2Ffrom_stream.html&labels=migrate-cppref-page) | `cpp/library/chrono/system_clock/from_stream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/system_clock/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fsystem_clock%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/system_clock/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/tzdb_list/erase_after.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftzdb_list%2Ferase_after.html&labels=migrate-cppref-page) | `cpp/library/chrono/tzdb_list/erase_after` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/tzdb_list/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftzdb_list%2Fend.html&labels=migrate-cppref-page) | `cpp/library/chrono/tzdb_list/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/tzdb_list/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftzdb_list%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/chrono/tzdb_list/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/tzdb_list/front.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftzdb_list%2Ffront.html&labels=migrate-cppref-page) | `cpp/library/chrono/tzdb_list/front` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month/operator_unsigned.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth%2Foperator_unsigned.html&labels=migrate-cppref-page) | `cpp/library/chrono/month/operator_unsigned` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/month/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/month/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/chrono/month/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month/operator_arith_2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth%2Foperator_arith_2.html&labels=migrate-cppref-page) | `cpp/library/chrono/month/operator_arith_2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/month/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month/from_stream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth%2Ffrom_stream.html&labels=migrate-cppref-page) | `cpp/library/chrono/month/from_stream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month/operator_inc_dec.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth%2Foperator_inc_dec.html&labels=migrate-cppref-page) | `cpp/library/chrono/month/operator_inc_dec` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month/month.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth%2Fmonth.html&labels=migrate-cppref-page) | `cpp/library/chrono/month/month` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/month/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/month/ok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fmonth%2Fok.html&labels=migrate-cppref-page) | `cpp/library/chrono/month/ok` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday/operator_arith_2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday%2Foperator_arith_2.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday/operator_arith_2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday/weekday.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday%2Fweekday.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday/weekday` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday/from_stream.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday%2Ffrom_stream.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday/from_stream` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday/operator_inc_dec.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday%2Foperator_inc_dec.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday/operator_inc_dec` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday/encoding.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday%2Fencoding.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday/encoding` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/weekday/ok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Fweekday%2Fok.html&labels=migrate-cppref-page) | `cpp/library/chrono/weekday/ok` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/tzdb/locate_zone.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftzdb%2Flocate_zone.html&labels=migrate-cppref-page) | `cpp/library/chrono/tzdb/locate_zone` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/tzdb/current_zone.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Ftzdb%2Fcurrent_zone.html&labels=migrate-cppref-page) | `cpp/library/chrono/tzdb/current_zone` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/copy_file.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fcopy_file.html&labels=migrate-cppref-page) | `cpp/library/filesystem/copy_file` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/create_symlink.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fcreate_symlink.html&labels=migrate-cppref-page) | `cpp/library/filesystem/create_symlink` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/copy_options.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fcopy_options.html&labels=migrate-cppref-page) | `cpp/library/filesystem/copy_options` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/read_symlink.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fread_symlink.html&labels=migrate-cppref-page) | `cpp/library/filesystem/read_symlink` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/remove.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fremove.html&labels=migrate-cppref-page) | `cpp/library/filesystem/remove` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/file_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Ffile_type.html&labels=migrate-cppref-page) | `cpp/library/filesystem/file_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/is_directory.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fis_directory.html&labels=migrate-cppref-page) | `cpp/library/filesystem/is_directory` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/current_path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fcurrent_path.html&labels=migrate-cppref-page) | `cpp/library/filesystem/current_path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_options.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_options.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_options` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/permissions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpermissions.html&labels=migrate-cppref-page) | `cpp/library/filesystem/permissions` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/resize_file.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fresize_file.html&labels=migrate-cppref-page) | `cpp/library/filesystem/resize_file` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_iterator.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fcopy.html&labels=migrate-cppref-page) | `cpp/library/filesystem/copy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/is_character_file.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fis_character_file.html&labels=migrate-cppref-page) | `cpp/library/filesystem/is_character_file` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/canonical.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fcanonical.html&labels=migrate-cppref-page) | `cpp/library/filesystem/canonical` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/create_directory.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fcreate_directory.html&labels=migrate-cppref-page) | `cpp/library/filesystem/create_directory` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/is_socket.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fis_socket.html&labels=migrate-cppref-page) | `cpp/library/filesystem/is_socket` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/perm_options.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fperm_options.html&labels=migrate-cppref-page) | `cpp/library/filesystem/perm_options` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/rename.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Frename.html&labels=migrate-cppref-page) | `cpp/library/filesystem/rename` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/status.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fstatus.html&labels=migrate-cppref-page) | `cpp/library/filesystem/status` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/copy_symlink.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fcopy_symlink.html&labels=migrate-cppref-page) | `cpp/library/filesystem/copy_symlink` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/temp_directory_path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Ftemp_directory_path.html&labels=migrate-cppref-page) | `cpp/library/filesystem/temp_directory_path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/file_status.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Ffile_status.html&labels=migrate-cppref-page) | `cpp/library/filesystem/file_status` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/create_hard_link.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fcreate_hard_link.html&labels=migrate-cppref-page) | `cpp/library/filesystem/create_hard_link` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/space.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fspace.html&labels=migrate-cppref-page) | `cpp/library/filesystem/space` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/file_time_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Ffile_time_type.html&labels=migrate-cppref-page) | `cpp/library/filesystem/file_time_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/last_write_time.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Flast_write_time.html&labels=migrate-cppref-page) | `cpp/library/filesystem/last_write_time` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/hard_link_count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fhard_link_count.html&labels=migrate-cppref-page) | `cpp/library/filesystem/hard_link_count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/is_regular_file.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fis_regular_file.html&labels=migrate-cppref-page) | `cpp/library/filesystem/is_regular_file` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/absolute.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fabsolute.html&labels=migrate-cppref-page) | `cpp/library/filesystem/absolute` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/perms.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fperms.html&labels=migrate-cppref-page) | `cpp/library/filesystem/perms` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/is_other.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fis_other.html&labels=migrate-cppref-page) | `cpp/library/filesystem/is_other` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/is_empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fis_empty.html&labels=migrate-cppref-page) | `cpp/library/filesystem/is_empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/space_info.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fspace_info.html&labels=migrate-cppref-page) | `cpp/library/filesystem/space_info` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/file_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Ffile_size.html&labels=migrate-cppref-page) | `cpp/library/filesystem/file_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/is_symlink.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fis_symlink.html&labels=migrate-cppref-page) | `cpp/library/filesystem/is_symlink` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/status_known.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fstatus_known.html&labels=migrate-cppref-page) | `cpp/library/filesystem/status_known` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/is_block_file.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fis_block_file.html&labels=migrate-cppref-page) | `cpp/library/filesystem/is_block_file` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/relative.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Frelative.html&labels=migrate-cppref-page) | `cpp/library/filesystem/relative` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Frecursive_directory_iterator.html&labels=migrate-cppref-page) | `cpp/library/filesystem/recursive_directory_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/is_fifo.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fis_fifo.html&labels=migrate-cppref-page) | `cpp/library/filesystem/is_fifo` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/equivalent.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fequivalent.html&labels=migrate-cppref-page) | `cpp/library/filesystem/equivalent` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/exists.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fexists.html&labels=migrate-cppref-page) | `cpp/library/filesystem/exists` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/filesystem_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Ffilesystem_error.html&labels=migrate-cppref-page) | `cpp/library/filesystem/filesystem_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/assign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Fassign.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/assign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/replace_filename.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Freplace_filename.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/replace_filename` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/is_directory.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Fis_directory.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/is_directory` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/is_character_file.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Fis_character_file.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/is_character_file` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/is_socket.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Fis_socket.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/is_socket` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/status.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Fstatus.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/status` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/last_write_time.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Flast_write_time.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/last_write_time` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/hard_link_count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Fhard_link_count.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/hard_link_count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/refresh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Frefresh.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/refresh` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/is_regular_file.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Fis_regular_file.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/is_regular_file` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Fpath.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/is_other.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Fis_other.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/is_other` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/file_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Ffile_size.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/file_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/is_symlink.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Fis_symlink.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/is_symlink` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/is_block_file.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Fis_block_file.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/is_block_file` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/is_fifo.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Fis_fifo.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/is_fifo` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/directory_entry.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Fdirectory_entry.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/directory_entry` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_entry/exists.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_entry%2Fexists.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_entry/exists` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_iterator/directory_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_iterator%2Fdirectory_iterator.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_iterator/directory_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_iterator/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_iterator%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_iterator/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_iterator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_iterator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_iterator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/directory_iterator/increment.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fdirectory_iterator%2Fincrement.html&labels=migrate-cppref-page) | `cpp/library/filesystem/directory_iterator/increment` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/file_status/operator==.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Ffile_status%2Foperator%3D%3D.html&labels=migrate-cppref-page) | `cpp/library/filesystem/file_status/operator==` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/file_status/permissions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Ffile_status%2Fpermissions.html&labels=migrate-cppref-page) | `cpp/library/filesystem/file_status/permissions` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/file_status/file_status.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Ffile_status%2Ffile_status.html&labels=migrate-cppref-page) | `cpp/library/filesystem/file_status/file_status` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/file_status/type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Ffile_status%2Ftype.html&labels=migrate-cppref-page) | `cpp/library/filesystem/file_status/type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/file_status/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Ffile_status%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/filesystem/file_status/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/stem.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fstem.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/stem` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/assign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fassign.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/assign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/remove_filename.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fremove_filename.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/remove_filename` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/root_path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Froot_path.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/root_path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/replace_filename.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Freplace_filename.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/replace_filename` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/has_path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fhas_path.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/has_path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/operator_slash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Foperator_slash.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/operator_slash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/relative_path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Frelative_path.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/relative_path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/root_directory.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Froot_directory.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/root_directory` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/operator_ltltgtgt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Foperator_ltltgtgt.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/operator_ltltgtgt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/native.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fnative.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/native` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/formatter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fformatter.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/formatter` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/format.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fformat.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/format` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/lexically_normal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Flexically_normal.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/lexically_normal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/root_name.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Froot_name.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/root_name` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/extension.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fextension.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/extension` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/string.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fstring.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/string` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/generic_string.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fgeneric_string.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/generic_string` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/filename.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Ffilename.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/filename` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/compare.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fcompare.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/compare` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/append.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fappend.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/append` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fpath.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/replace_extension.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Freplace_extension.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/replace_extension` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/~path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2F~path.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/~path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/hash_value.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fhash_value.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/hash_value` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/concat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fconcat.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/concat` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/is_absrel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fis_absrel.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/is_absrel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/parent_path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fparent_path.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/parent_path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/make_preferred.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fmake_preferred.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/make_preferred` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/u8path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fu8path.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/u8path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/path/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Fpath%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/filesystem/path/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/filesystem_error/what.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Ffilesystem_error%2Fwhat.html&labels=migrate-cppref-page) | `cpp/library/filesystem/filesystem_error/what` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/filesystem_error/path.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Ffilesystem_error%2Fpath.html&labels=migrate-cppref-page) | `cpp/library/filesystem/filesystem_error/path` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/filesystem_error/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Ffilesystem_error%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/filesystem/filesystem_error/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/filesystem_error/filesystem_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Ffilesystem_error%2Ffilesystem_error.html&labels=migrate-cppref-page) | `cpp/library/filesystem/filesystem_error/filesystem_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/recursion_pending.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Frecursive_directory_iterator%2Frecursion_pending.html&labels=migrate-cppref-page) | `cpp/library/filesystem/recursive_directory_iterator/recursion_pending` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Frecursive_directory_iterator%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/filesystem/recursive_directory_iterator/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/depth.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Frecursive_directory_iterator%2Fdepth.html&labels=migrate-cppref-page) | `cpp/library/filesystem/recursive_directory_iterator/depth` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Frecursive_directory_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/filesystem/recursive_directory_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/options.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Frecursive_directory_iterator%2Foptions.html&labels=migrate-cppref-page) | `cpp/library/filesystem/recursive_directory_iterator/options` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/disable_recursion_pending.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Frecursive_directory_iterator%2Fdisable_recursion_pending.html&labels=migrate-cppref-page) | `cpp/library/filesystem/recursive_directory_iterator/disable_recursion_pending` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Frecursive_directory_iterator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/filesystem/recursive_directory_iterator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/pop.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Frecursive_directory_iterator%2Fpop.html&labels=migrate-cppref-page) | `cpp/library/filesystem/recursive_directory_iterator/pop` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/recursive_directory_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Frecursive_directory_iterator%2Frecursive_directory_iterator.html&labels=migrate-cppref-page) | `cpp/library/filesystem/recursive_directory_iterator/recursive_directory_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/increment.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ffilesystem%2Frecursive_directory_iterator%2Fincrement.html&labels=migrate-cppref-page) | `cpp/library/filesystem/recursive_directory_iterator/increment` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic.html&labels=migrate-cppref-page) | `c/library/atomic` | +| ❌ | [cppref](http://en.cppreference.com/w/c/index.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Findex.html&labels=migrate-cppref-page) | `c/library/index` | +| ❌ | [cppref](http://en.cppreference.com/w/c/types.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ftypes.html&labels=migrate-cppref-page) | `c/library/types` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread.html&labels=migrate-cppref-page) | `c/library/thread` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric.html&labels=migrate-cppref-page) | `c/library/numeric` | +| ❌ | [cppref](http://en.cppreference.com/w/c/variadic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fvariadic.html&labels=migrate-cppref-page) | `c/library/variadic` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring.html&labels=migrate-cppref-page) | `c/library/string` | +| ❌ | [cppref](http://en.cppreference.com/w/c/compiler_support.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fcompiler_support.html&labels=migrate-cppref-page) | `c/library/compiler_support` | +| ❌ | [cppref](http://en.cppreference.com/w/c/error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ferror.html&labels=migrate-cppref-page) | `c/library/error` | +| ❌ | [cppref](http://en.cppreference.com/w/c/memory.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fmemory.html&labels=migrate-cppref-page) | `c/library/memory` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio.html&labels=migrate-cppref-page) | `c/library/io` | +| ❌ | [cppref](http://en.cppreference.com/w/c/chrono.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fchrono.html&labels=migrate-cppref-page) | `c/library/chrono` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage.html&labels=migrate-cppref-page) | `c/language` | +| ❌ | [cppref](http://en.cppreference.com/w/c/links.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flinks.html&labels=migrate-cppref-page) | `c/library/links` | +| ❌ | [cppref](http://en.cppreference.com/w/c/header.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fheader.html&labels=migrate-cppref-page) | `c/library/header` | +| ❌ | [cppref](http://en.cppreference.com/w/c/locale.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flocale.html&labels=migrate-cppref-page) | `c/library/locale` | +| ❌ | [cppref](http://en.cppreference.com/w/c/algorithm.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Falgorithm.html&labels=migrate-cppref-page) | `c/library/algorithm` | +| ❌ | [cppref](http://en.cppreference.com/w/c/utility.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Futility.html&labels=migrate-cppref-page) | `c/language/utility` | +| ❌ | [cppref](http://en.cppreference.com/w/c/preprocessor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fpreprocessor.html&labels=migrate-cppref-page) | `c/language/preprocessor` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram.html&labels=migrate-cppref-page) | `c/library/program` | +| ❌ | [cppref](http://en.cppreference.com/w/c/preprocessor/replace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fpreprocessor%2Freplace.html&labels=migrate-cppref-page) | `c/language/preprocessor/replace` | +| ❌ | [cppref](http://en.cppreference.com/w/c/preprocessor/impl.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fpreprocessor%2Fimpl.html&labels=migrate-cppref-page) | `c/language/preprocessor/impl` | +| ❌ | [cppref](http://en.cppreference.com/w/c/preprocessor/conditional.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fpreprocessor%2Fconditional.html&labels=migrate-cppref-page) | `c/language/preprocessor/conditional` | +| ❌ | [cppref](http://en.cppreference.com/w/c/preprocessor/line.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fpreprocessor%2Fline.html&labels=migrate-cppref-page) | `c/language/preprocessor/line` | +| ❌ | [cppref](http://en.cppreference.com/w/c/preprocessor/error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fpreprocessor%2Ferror.html&labels=migrate-cppref-page) | `c/language/preprocessor/error` | +| ❌ | [cppref](http://en.cppreference.com/w/c/preprocessor/embed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fpreprocessor%2Fembed.html&labels=migrate-cppref-page) | `c/language/preprocessor/embed` | +| ❌ | [cppref](http://en.cppreference.com/w/c/preprocessor/include.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fpreprocessor%2Finclude.html&labels=migrate-cppref-page) | `c/language/preprocessor/include` | +| ❌ | [cppref](http://en.cppreference.com/w/c/locale/LC_categories.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flocale%2FLC_categories.html&labels=migrate-cppref-page) | `c/library/locale/LC_categories` | +| ❌ | [cppref](http://en.cppreference.com/w/c/locale/localeconv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flocale%2Flocaleconv.html&labels=migrate-cppref-page) | `c/library/locale/localeconv` | +| ❌ | [cppref](http://en.cppreference.com/w/c/locale/setlocale.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flocale%2Fsetlocale.html&labels=migrate-cppref-page) | `c/library/locale/setlocale` | +| ❌ | [cppref](http://en.cppreference.com/w/c/locale/lconv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flocale%2Flconv.html&labels=migrate-cppref-page) | `c/library/locale/lconv` | +| ❌ | [cppref](http://en.cppreference.com/w/c/variadic/va_list.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fvariadic%2Fva_list.html&labels=migrate-cppref-page) | `c/library/variadic/va_list` | +| ❌ | [cppref](http://en.cppreference.com/w/c/variadic/va_copy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fvariadic%2Fva_copy.html&labels=migrate-cppref-page) | `c/library/variadic/va_copy` | +| ❌ | [cppref](http://en.cppreference.com/w/c/variadic/va_arg.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fvariadic%2Fva_arg.html&labels=migrate-cppref-page) | `c/library/variadic/va_arg` | +| ❌ | [cppref](http://en.cppreference.com/w/c/variadic/va_start.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fvariadic%2Fva_start.html&labels=migrate-cppref-page) | `c/library/variadic/va_start` | +| ❌ | [cppref](http://en.cppreference.com/w/c/variadic/va_end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fvariadic%2Fva_end.html&labels=migrate-cppref-page) | `c/library/variadic/va_end` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte.html&labels=migrate-cppref-page) | `c/library/string/byte` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte.html&labels=migrate-cppref-page) | `c/library/string/multibyte` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide.html&labels=migrate-cppref-page) | `c/library/string/wide` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/mbsinit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fmbsinit.html&labels=migrate-cppref-page) | `c/library/string/multibyte/mbsinit` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/mbrtoc16.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fmbrtoc16.html&labels=migrate-cppref-page) | `c/library/string/multibyte/mbrtoc16` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/wctomb.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fwctomb.html&labels=migrate-cppref-page) | `c/library/string/multibyte/wctomb` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/mbstate_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fmbstate_t.html&labels=migrate-cppref-page) | `c/library/string/multibyte/mbstate_t` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/char8_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fchar8_t.html&labels=migrate-cppref-page) | `c/library/string/multibyte/char8_t` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/mbtowc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fmbtowc.html&labels=migrate-cppref-page) | `c/library/string/multibyte/mbtowc` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/mbrtoc32.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fmbrtoc32.html&labels=migrate-cppref-page) | `c/library/string/multibyte/mbrtoc32` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/wcsrtombs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fwcsrtombs.html&labels=migrate-cppref-page) | `c/library/string/multibyte/wcsrtombs` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/wcrtomb.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fwcrtomb.html&labels=migrate-cppref-page) | `c/library/string/multibyte/wcrtomb` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/wctob.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fwctob.html&labels=migrate-cppref-page) | `c/library/string/multibyte/wctob` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/mbrlen.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fmbrlen.html&labels=migrate-cppref-page) | `c/library/string/multibyte/mbrlen` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/c32rtomb.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fc32rtomb.html&labels=migrate-cppref-page) | `c/library/string/multibyte/c32rtomb` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/mbrtowc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fmbrtowc.html&labels=migrate-cppref-page) | `c/library/string/multibyte/mbrtowc` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/c16rtomb.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fc16rtomb.html&labels=migrate-cppref-page) | `c/library/string/multibyte/c16rtomb` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/btowc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fbtowc.html&labels=migrate-cppref-page) | `c/library/string/multibyte/btowc` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/char16_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fchar16_t.html&labels=migrate-cppref-page) | `c/library/string/multibyte/char16_t` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/mbstowcs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fmbstowcs.html&labels=migrate-cppref-page) | `c/library/string/multibyte/mbstowcs` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/wcstombs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fwcstombs.html&labels=migrate-cppref-page) | `c/library/string/multibyte/wcstombs` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/c8rtomb.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fc8rtomb.html&labels=migrate-cppref-page) | `c/library/string/multibyte/c8rtomb` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/mbsrtowcs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fmbsrtowcs.html&labels=migrate-cppref-page) | `c/library/string/multibyte/mbsrtowcs` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/mblen.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fmblen.html&labels=migrate-cppref-page) | `c/library/string/multibyte/mblen` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/mbrtoc8.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fmbrtoc8.html&labels=migrate-cppref-page) | `c/library/string/multibyte/mbrtoc8` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/multibyte/char32_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fmultibyte%2Fchar32_t.html&labels=migrate-cppref-page) | `c/library/string/multibyte/char32_t` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/memccpy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fmemccpy.html&labels=migrate-cppref-page) | `c/library/string/byte/memccpy` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/islower.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fislower.html&labels=migrate-cppref-page) | `c/library/string/byte/islower` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/memmove.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fmemmove.html&labels=migrate-cppref-page) | `c/library/string/byte/memmove` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strpbrk.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrpbrk.html&labels=migrate-cppref-page) | `c/library/string/byte/strpbrk` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/iscntrl.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fiscntrl.html&labels=migrate-cppref-page) | `c/library/string/byte/iscntrl` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strspn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrspn.html&labels=migrate-cppref-page) | `c/library/string/byte/strspn` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strlen.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrlen.html&labels=migrate-cppref-page) | `c/library/string/byte/strlen` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/toupper.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Ftoupper.html&labels=migrate-cppref-page) | `c/library/string/byte/toupper` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/isprint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fisprint.html&labels=migrate-cppref-page) | `c/library/string/byte/isprint` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strchr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrchr.html&labels=migrate-cppref-page) | `c/library/string/byte/strchr` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strtoimax.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrtoimax.html&labels=migrate-cppref-page) | `c/library/string/byte/strtoimax` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strrchr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrrchr.html&labels=migrate-cppref-page) | `c/library/string/byte/strrchr` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/memcpy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fmemcpy.html&labels=migrate-cppref-page) | `c/library/string/byte/memcpy` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strcat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrcat.html&labels=migrate-cppref-page) | `c/library/string/byte/strcat` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strncpy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrncpy.html&labels=migrate-cppref-page) | `c/library/string/byte/strncpy` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/isalpha.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fisalpha.html&labels=migrate-cppref-page) | `c/library/string/byte/isalpha` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strtol.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrtol.html&labels=migrate-cppref-page) | `c/library/string/byte/strtol` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/memset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fmemset.html&labels=migrate-cppref-page) | `c/library/string/byte/memset` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strtoul.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrtoul.html&labels=migrate-cppref-page) | `c/library/string/byte/strtoul` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strtok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrtok.html&labels=migrate-cppref-page) | `c/library/string/byte/strtok` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/ispunct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fispunct.html&labels=migrate-cppref-page) | `c/library/string/byte/ispunct` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/atoi.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fatoi.html&labels=migrate-cppref-page) | `c/library/string/byte/atoi` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strdup.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrdup.html&labels=migrate-cppref-page) | `c/library/string/byte/strdup` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strcoll.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrcoll.html&labels=migrate-cppref-page) | `c/library/string/byte/strcoll` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strndup.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrndup.html&labels=migrate-cppref-page) | `c/library/string/byte/strndup` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/isdigit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fisdigit.html&labels=migrate-cppref-page) | `c/library/string/byte/isdigit` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/memcmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fmemcmp.html&labels=migrate-cppref-page) | `c/library/string/byte/memcmp` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strerror.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrerror.html&labels=migrate-cppref-page) | `c/library/string/byte/strerror` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/isspace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fisspace.html&labels=migrate-cppref-page) | `c/library/string/byte/isspace` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strcspn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrcspn.html&labels=migrate-cppref-page) | `c/library/string/byte/strcspn` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strxfrm.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrxfrm.html&labels=migrate-cppref-page) | `c/library/string/byte/strxfrm` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strncat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrncat.html&labels=migrate-cppref-page) | `c/library/string/byte/strncat` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/isxdigit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fisxdigit.html&labels=migrate-cppref-page) | `c/library/string/byte/isxdigit` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/atof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fatof.html&labels=migrate-cppref-page) | `c/library/string/byte/atof` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strcmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrcmp.html&labels=migrate-cppref-page) | `c/library/string/byte/strcmp` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strstr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrstr.html&labels=migrate-cppref-page) | `c/library/string/byte/strstr` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/isgraph.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fisgraph.html&labels=migrate-cppref-page) | `c/library/string/byte/isgraph` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/tolower.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Ftolower.html&labels=migrate-cppref-page) | `c/library/string/byte/tolower` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/isblank.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fisblank.html&labels=migrate-cppref-page) | `c/library/string/byte/isblank` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strtof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrtof.html&labels=migrate-cppref-page) | `c/library/string/byte/strtof` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/isalnum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fisalnum.html&labels=migrate-cppref-page) | `c/library/string/byte/isalnum` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strcpy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrcpy.html&labels=migrate-cppref-page) | `c/library/string/byte/strcpy` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strncmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrncmp.html&labels=migrate-cppref-page) | `c/library/string/byte/strncmp` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/memchr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fmemchr.html&labels=migrate-cppref-page) | `c/library/string/byte/memchr` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/strfromf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fstrfromf.html&labels=migrate-cppref-page) | `c/library/string/byte/strfromf` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/byte/isupper.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fbyte%2Fisupper.html&labels=migrate-cppref-page) | `c/library/string/byte/isupper` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/towupper.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Ftowupper.html&labels=migrate-cppref-page) | `c/library/string/wide/towupper` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcsncat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcsncat.html&labels=migrate-cppref-page) | `c/library/string/wide/wcsncat` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcscpy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcscpy.html&labels=migrate-cppref-page) | `c/library/string/wide/wcscpy` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcscmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcscmp.html&labels=migrate-cppref-page) | `c/library/string/wide/wcscmp` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcsstr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcsstr.html&labels=migrate-cppref-page) | `c/library/string/wide/wcsstr` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcstok.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcstok.html&labels=migrate-cppref-page) | `c/library/string/wide/wcstok` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wmemcpy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwmemcpy.html&labels=migrate-cppref-page) | `c/library/string/wide/wmemcpy` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wmemset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwmemset.html&labels=migrate-cppref-page) | `c/library/string/wide/wmemset` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcstol.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcstol.html&labels=migrate-cppref-page) | `c/library/string/wide/wcstol` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/towctrans.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Ftowctrans.html&labels=migrate-cppref-page) | `c/library/string/wide/towctrans` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcspbrk.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcspbrk.html&labels=migrate-cppref-page) | `c/library/string/wide/wcspbrk` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcschr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcschr.html&labels=migrate-cppref-page) | `c/library/string/wide/wcschr` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wmemcmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwmemcmp.html&labels=migrate-cppref-page) | `c/library/string/wide/wmemcmp` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/iswdigit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fiswdigit.html&labels=migrate-cppref-page) | `c/library/string/wide/iswdigit` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcscat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcscat.html&labels=migrate-cppref-page) | `c/library/string/wide/wcscat` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wmemmove.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwmemmove.html&labels=migrate-cppref-page) | `c/library/string/wide/wmemmove` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/iswupper.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fiswupper.html&labels=migrate-cppref-page) | `c/library/string/wide/iswupper` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/iswblank.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fiswblank.html&labels=migrate-cppref-page) | `c/library/string/wide/iswblank` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/iswpunct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fiswpunct.html&labels=migrate-cppref-page) | `c/library/string/wide/iswpunct` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/iswlower.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fiswlower.html&labels=migrate-cppref-page) | `c/library/string/wide/iswlower` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wctype.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwctype.html&labels=migrate-cppref-page) | `c/library/string/wide/wctype` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcsrchr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcsrchr.html&labels=migrate-cppref-page) | `c/library/string/wide/wcsrchr` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcscspn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcscspn.html&labels=migrate-cppref-page) | `c/library/string/wide/wcscspn` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/iswcntrl.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fiswcntrl.html&labels=migrate-cppref-page) | `c/library/string/wide/iswcntrl` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcstoul.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcstoul.html&labels=migrate-cppref-page) | `c/library/string/wide/wcstoul` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcstoimax.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcstoimax.html&labels=migrate-cppref-page) | `c/library/string/wide/wcstoimax` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/iswalnum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fiswalnum.html&labels=migrate-cppref-page) | `c/library/string/wide/iswalnum` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/iswctype.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fiswctype.html&labels=migrate-cppref-page) | `c/library/string/wide/iswctype` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/towlower.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Ftowlower.html&labels=migrate-cppref-page) | `c/library/string/wide/towlower` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/iswalpha.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fiswalpha.html&labels=migrate-cppref-page) | `c/library/string/wide/iswalpha` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcsncmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcsncmp.html&labels=migrate-cppref-page) | `c/library/string/wide/wcsncmp` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/iswprint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fiswprint.html&labels=migrate-cppref-page) | `c/library/string/wide/iswprint` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/iswxdigit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fiswxdigit.html&labels=migrate-cppref-page) | `c/library/string/wide/iswxdigit` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcsxfrm.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcsxfrm.html&labels=migrate-cppref-page) | `c/library/string/wide/wcsxfrm` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcsspn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcsspn.html&labels=migrate-cppref-page) | `c/library/string/wide/wcsspn` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcstof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcstof.html&labels=migrate-cppref-page) | `c/library/string/wide/wcstof` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wmemchr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwmemchr.html&labels=migrate-cppref-page) | `c/library/string/wide/wmemchr` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcsncpy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcsncpy.html&labels=migrate-cppref-page) | `c/library/string/wide/wcsncpy` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wctrans.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwctrans.html&labels=migrate-cppref-page) | `c/library/string/wide/wctrans` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/iswgraph.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fiswgraph.html&labels=migrate-cppref-page) | `c/library/string/wide/iswgraph` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/iswspace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fiswspace.html&labels=migrate-cppref-page) | `c/library/string/wide/iswspace` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcscoll.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcscoll.html&labels=migrate-cppref-page) | `c/library/string/wide/wcscoll` | +| ❌ | [cppref](http://en.cppreference.com/w/c/string/wide/wcslen.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fstring%2Fwide%2Fwcslen.html&labels=migrate-cppref-page) | `c/library/string/wide/wcslen` | +| ❌ | [cppref](http://en.cppreference.com/w/c/algorithm/qsort.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Falgorithm%2Fqsort.html&labels=migrate-cppref-page) | `c/library/algorithm/qsort` | +| ❌ | [cppref](http://en.cppreference.com/w/c/algorithm/bsearch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Falgorithm%2Fbsearch.html&labels=migrate-cppref-page) | `c/library/algorithm/bsearch` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/bit_manip.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fbit_manip.html&labels=migrate-cppref-page) | `c/library/numeric/bit_manip` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/fenv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Ffenv.html&labels=migrate-cppref-page) | `c/library/numeric/fenv` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/ckd_mul.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fckd_mul.html&labels=migrate-cppref-page) | `c/library/numeric/ckd_mul` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/tgmath.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Ftgmath.html&labels=migrate-cppref-page) | `c/library/numeric/tgmath` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/ckd_sub.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fckd_sub.html&labels=migrate-cppref-page) | `c/library/numeric/ckd_sub` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/endian.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fendian.html&labels=migrate-cppref-page) | `c/library/numeric/endian` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath.html&labels=migrate-cppref-page) | `c/library/numeric/math` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/random.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Frandom.html&labels=migrate-cppref-page) | `c/library/numeric/random` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/ckd_add.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fckd_add.html&labels=migrate-cppref-page) | `c/library/numeric/ckd_add` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex.html&labels=migrate-cppref-page) | `c/library/numeric/complex` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/casinh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fcasinh.html&labels=migrate-cppref-page) | `c/library/numeric/complex/casinh` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/ctan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fctan.html&labels=migrate-cppref-page) | `c/library/numeric/complex/ctan` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/csinh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fcsinh.html&labels=migrate-cppref-page) | `c/library/numeric/complex/csinh` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/cabs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fcabs.html&labels=migrate-cppref-page) | `c/library/numeric/complex/cabs` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/ctanh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fctanh.html&labels=migrate-cppref-page) | `c/library/numeric/complex/ctanh` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/ccosh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fccosh.html&labels=migrate-cppref-page) | `c/library/numeric/complex/ccosh` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/catan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fcatan.html&labels=migrate-cppref-page) | `c/library/numeric/complex/catan` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/carg.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fcarg.html&labels=migrate-cppref-page) | `c/library/numeric/complex/carg` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/conj.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fconj.html&labels=migrate-cppref-page) | `c/library/numeric/complex/conj` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/cexp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fcexp.html&labels=migrate-cppref-page) | `c/library/numeric/complex/cexp` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/ccos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fccos.html&labels=migrate-cppref-page) | `c/library/numeric/complex/ccos` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/casin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fcasin.html&labels=migrate-cppref-page) | `c/library/numeric/complex/casin` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/I.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2FI.html&labels=migrate-cppref-page) | `c/library/numeric/complex/I` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/CMPLX.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2FCMPLX.html&labels=migrate-cppref-page) | `c/library/numeric/complex/CMPLX` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/clog.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fclog.html&labels=migrate-cppref-page) | `c/library/numeric/complex/clog` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/cproj.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fcproj.html&labels=migrate-cppref-page) | `c/library/numeric/complex/cproj` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/imaginary.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fimaginary.html&labels=migrate-cppref-page) | `c/library/numeric/complex/imaginary` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/Complex_I.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2FComplex_I.html&labels=migrate-cppref-page) | `c/library/numeric/complex/Complex_I` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/csin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fcsin.html&labels=migrate-cppref-page) | `c/library/numeric/complex/csin` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/csqrt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fcsqrt.html&labels=migrate-cppref-page) | `c/library/numeric/complex/csqrt` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/catanh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fcatanh.html&labels=migrate-cppref-page) | `c/library/numeric/complex/catanh` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/cimag.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fcimag.html&labels=migrate-cppref-page) | `c/library/numeric/complex/cimag` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/creal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fcreal.html&labels=migrate-cppref-page) | `c/library/numeric/complex/creal` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/cpow.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fcpow.html&labels=migrate-cppref-page) | `c/library/numeric/complex/cpow` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/Imaginary_I.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2FImaginary_I.html&labels=migrate-cppref-page) | `c/library/numeric/complex/Imaginary_I` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/cacosh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fcacosh.html&labels=migrate-cppref-page) | `c/library/numeric/complex/cacosh` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/cacos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fcacos.html&labels=migrate-cppref-page) | `c/library/numeric/complex/cacos` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/complex/complex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fcomplex%2Fcomplex.html&labels=migrate-cppref-page) | `c/library/numeric/complex/complex` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/bit/endian.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fbit%2Fendian.html&labels=migrate-cppref-page) | `c/library/numeric/bit/endian` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/bit/stdc_leading_zeros.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fbit%2Fstdc_leading_zeros.html&labels=migrate-cppref-page) | `c/library/numeric/bit/stdc_leading_zeros` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/random/RAND_MAX.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Frandom%2FRAND_MAX.html&labels=migrate-cppref-page) | `c/library/numeric/random/RAND_MAX` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/random/rand.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Frandom%2Frand.html&labels=migrate-cppref-page) | `c/library/numeric/random/rand` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/random/srand.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Frandom%2Fsrand.html&labels=migrate-cppref-page) | `c/library/numeric/random/srand` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/fenv/feupdateenv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Ffenv%2Ffeupdateenv.html&labels=migrate-cppref-page) | `c/library/numeric/fenv/feupdateenv` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/fenv/FE_exceptions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Ffenv%2FFE_exceptions.html&labels=migrate-cppref-page) | `c/library/numeric/fenv/FE_exceptions` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/fenv/feexceptflag.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Ffenv%2Ffeexceptflag.html&labels=migrate-cppref-page) | `c/library/numeric/fenv/feexceptflag` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/fenv/feholdexcept.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Ffenv%2Ffeholdexcept.html&labels=migrate-cppref-page) | `c/library/numeric/fenv/feholdexcept` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/fenv/feraiseexcept.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Ffenv%2Fferaiseexcept.html&labels=migrate-cppref-page) | `c/library/numeric/fenv/feraiseexcept` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/fenv/feround.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Ffenv%2Fferound.html&labels=migrate-cppref-page) | `c/library/numeric/fenv/feround` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/fenv/FE_round.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Ffenv%2FFE_round.html&labels=migrate-cppref-page) | `c/library/numeric/fenv/FE_round` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/fenv/feenv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Ffenv%2Ffeenv.html&labels=migrate-cppref-page) | `c/library/numeric/fenv/feenv` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/fenv/fetestexcept.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Ffenv%2Ffetestexcept.html&labels=migrate-cppref-page) | `c/library/numeric/fenv/fetestexcept` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/fenv/FE_DFL_ENV.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Ffenv%2FFE_DFL_ENV.html&labels=migrate-cppref-page) | `c/library/numeric/fenv/FE_DFL_ENV` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/fenv/feclearexcept.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Ffenv%2Ffeclearexcept.html&labels=migrate-cppref-page) | `c/library/numeric/fenv/feclearexcept` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/fma.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Ffma.html&labels=migrate-cppref-page) | `c/library/numeric/math/fma` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/asin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fasin.html&labels=migrate-cppref-page) | `c/library/numeric/math/asin` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/isnormal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fisnormal.html&labels=migrate-cppref-page) | `c/library/numeric/math/isnormal` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/sin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fsin.html&labels=migrate-cppref-page) | `c/library/numeric/math/sin` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/scalbn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fscalbn.html&labels=migrate-cppref-page) | `c/library/numeric/math/scalbn` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/cospi.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fcospi.html&labels=migrate-cppref-page) | `c/library/numeric/math/cospi` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/float_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Ffloat_t.html&labels=migrate-cppref-page) | `c/library/numeric/math/float_t` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/acos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Facos.html&labels=migrate-cppref-page) | `c/library/numeric/math/acos` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/modf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fmodf.html&labels=migrate-cppref-page) | `c/library/numeric/math/modf` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/tan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Ftan.html&labels=migrate-cppref-page) | `c/library/numeric/math/tan` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/fmin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Ffmin.html&labels=migrate-cppref-page) | `c/library/numeric/math/fmin` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/frexp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Ffrexp.html&labels=migrate-cppref-page) | `c/library/numeric/math/frexp` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/fabs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Ffabs.html&labels=migrate-cppref-page) | `c/library/numeric/math/fabs` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/floor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Ffloor.html&labels=migrate-cppref-page) | `c/library/numeric/math/floor` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/fdim.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Ffdim.html&labels=migrate-cppref-page) | `c/library/numeric/math/fdim` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/ldexp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fldexp.html&labels=migrate-cppref-page) | `c/library/numeric/math/ldexp` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/log2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Flog2.html&labels=migrate-cppref-page) | `c/library/numeric/math/log2` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/ceil.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fceil.html&labels=migrate-cppref-page) | `c/library/numeric/math/ceil` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/erfc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Ferfc.html&labels=migrate-cppref-page) | `c/library/numeric/math/erfc` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/isless.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fisless.html&labels=migrate-cppref-page) | `c/library/numeric/math/isless` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/exp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fexp.html&labels=migrate-cppref-page) | `c/library/numeric/math/exp` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/sqrt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fsqrt.html&labels=migrate-cppref-page) | `c/library/numeric/math/sqrt` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/tgamma.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Ftgamma.html&labels=migrate-cppref-page) | `c/library/numeric/math/tgamma` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/math_errhandling.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fmath_errhandling.html&labels=migrate-cppref-page) | `c/library/numeric/math/math_errhandling` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/erf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Ferf.html&labels=migrate-cppref-page) | `c/library/numeric/math/erf` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/log1p.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Flog1p.html&labels=migrate-cppref-page) | `c/library/numeric/math/log1p` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/exp2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fexp2.html&labels=migrate-cppref-page) | `c/library/numeric/math/exp2` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/remainder.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fremainder.html&labels=migrate-cppref-page) | `c/library/numeric/math/remainder` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/islessgreater.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fislessgreater.html&labels=migrate-cppref-page) | `c/library/numeric/math/islessgreater` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/isunordered.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fisunordered.html&labels=migrate-cppref-page) | `c/library/numeric/math/isunordered` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/isnan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fisnan.html&labels=migrate-cppref-page) | `c/library/numeric/math/isnan` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/isfinite.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fisfinite.html&labels=migrate-cppref-page) | `c/library/numeric/math/isfinite` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/ilogb.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Filogb.html&labels=migrate-cppref-page) | `c/library/numeric/math/ilogb` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/trunc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Ftrunc.html&labels=migrate-cppref-page) | `c/library/numeric/math/trunc` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/isinf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fisinf.html&labels=migrate-cppref-page) | `c/library/numeric/math/isinf` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/signbit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fsignbit.html&labels=migrate-cppref-page) | `c/library/numeric/math/signbit` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/HUGE_VAL.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2FHUGE_VAL.html&labels=migrate-cppref-page) | `c/library/numeric/math/HUGE_VAL` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/cosh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fcosh.html&labels=migrate-cppref-page) | `c/library/numeric/math/cosh` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/pow.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fpow.html&labels=migrate-cppref-page) | `c/library/numeric/math/pow` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/isgreaterequal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fisgreaterequal.html&labels=migrate-cppref-page) | `c/library/numeric/math/isgreaterequal` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/INFINITY.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2FINFINITY.html&labels=migrate-cppref-page) | `c/library/numeric/math/INFINITY` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/logb.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Flogb.html&labels=migrate-cppref-page) | `c/library/numeric/math/logb` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/NAN.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2FNAN.html&labels=migrate-cppref-page) | `c/library/numeric/math/NAN` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/asinh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fasinh.html&labels=migrate-cppref-page) | `c/library/numeric/math/asinh` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/lgamma.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Flgamma.html&labels=migrate-cppref-page) | `c/library/numeric/math/lgamma` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/FP_categories.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2FFP_categories.html&labels=migrate-cppref-page) | `c/library/numeric/math/FP_categories` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/tanh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Ftanh.html&labels=migrate-cppref-page) | `c/library/numeric/math/tanh` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/sinpi.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fsinpi.html&labels=migrate-cppref-page) | `c/library/numeric/math/sinpi` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/copysign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fcopysign.html&labels=migrate-cppref-page) | `c/library/numeric/math/copysign` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/cbrt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fcbrt.html&labels=migrate-cppref-page) | `c/library/numeric/math/cbrt` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/hypot.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fhypot.html&labels=migrate-cppref-page) | `c/library/numeric/math/hypot` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/cos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fcos.html&labels=migrate-cppref-page) | `c/library/numeric/math/cos` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/rint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Frint.html&labels=migrate-cppref-page) | `c/library/numeric/math/rint` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/nextafter.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fnextafter.html&labels=migrate-cppref-page) | `c/library/numeric/math/nextafter` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/sinh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fsinh.html&labels=migrate-cppref-page) | `c/library/numeric/math/sinh` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/isgreater.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fisgreater.html&labels=migrate-cppref-page) | `c/library/numeric/math/isgreater` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/nearbyint.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fnearbyint.html&labels=migrate-cppref-page) | `c/library/numeric/math/nearbyint` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/atan.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fatan.html&labels=migrate-cppref-page) | `c/library/numeric/math/atan` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/atan2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fatan2.html&labels=migrate-cppref-page) | `c/library/numeric/math/atan2` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/log10.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Flog10.html&labels=migrate-cppref-page) | `c/library/numeric/math/log10` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/round.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fround.html&labels=migrate-cppref-page) | `c/library/numeric/math/round` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/nan.2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fnan.2.html&labels=migrate-cppref-page) | `c/library/numeric/math/nan.2` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/fmax.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Ffmax.html&labels=migrate-cppref-page) | `c/library/numeric/math/fmax` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/remquo.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fremquo.html&labels=migrate-cppref-page) | `c/library/numeric/math/remquo` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/acosh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Facosh.html&labels=migrate-cppref-page) | `c/library/numeric/math/acosh` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/roundeven.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Froundeven.html&labels=migrate-cppref-page) | `c/library/numeric/math/roundeven` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/islessequal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fislessequal.html&labels=migrate-cppref-page) | `c/library/numeric/math/islessequal` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/nexttoward.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fnexttoward.html&labels=migrate-cppref-page) | `c/library/numeric/math/nexttoward` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/abs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fabs.html&labels=migrate-cppref-page) | `c/library/numeric/math/abs` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/div.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fdiv.html&labels=migrate-cppref-page) | `c/library/numeric/math/div` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/log.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Flog.html&labels=migrate-cppref-page) | `c/library/numeric/math/log` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/fpclassify.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Ffpclassify.html&labels=migrate-cppref-page) | `c/library/numeric/math/fpclassify` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/fmod.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Ffmod.html&labels=migrate-cppref-page) | `c/library/numeric/math/fmod` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/expm1.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fexpm1.html&labels=migrate-cppref-page) | `c/library/numeric/math/expm1` | +| ❌ | [cppref](http://en.cppreference.com/w/c/numeric/math/atanh.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fnumeric%2Fmath%2Fatanh.html&labels=migrate-cppref-page) | `c/library/numeric/math/atanh` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/file_scope.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Ffile_scope.html&labels=migrate-cppref-page) | `c/language/file_scope` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/declarations.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fdeclarations.html&labels=migrate-cppref-page) | `c/language/declarations` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/extern.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fextern.html&labels=migrate-cppref-page) | `c/language/declarations/extern` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/expressions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fexpressions.html&labels=migrate-cppref-page) | `c/language/expressions` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/operator_alternative.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Foperator_alternative.html&labels=migrate-cppref-page) | `c/language/operator_alternative` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/floating_constant.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Ffloating_constant.html&labels=migrate-cppref-page) | `c/language/expressions/floating_constant` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/attributes.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fattributes.html&labels=migrate-cppref-page) | `c/language/declarations/attributes` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/compound_literal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fcompound_literal.html&labels=migrate-cppref-page) | `c/language/expressions/compound_literal` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/conformance.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fconformance.html&labels=migrate-cppref-page) | `c/language/conformance` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/static_storage_duration.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fstatic_storage_duration.html&labels=migrate-cppref-page) | `c/language/static_storage_duration` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/operator_logical.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Foperator_logical.html&labels=migrate-cppref-page) | `c/language/expressions/operator_logical` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/operator_incdec.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Foperator_incdec.html&labels=migrate-cppref-page) | `c/language/expressions/operator_incdec` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/conversion.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fconversion.html&labels=migrate-cppref-page) | `c/language/expressions/conversion` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/ndr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fndr.html&labels=migrate-cppref-page) | `c/language/ndr` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/alignof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Falignof.html&labels=migrate-cppref-page) | `c/language/expressions/alignof` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/volatile.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fvolatile.html&labels=migrate-cppref-page) | `c/language/declarations/volatile` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/operator_other.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Foperator_other.html&labels=migrate-cppref-page) | `c/language/expressions/operator_other` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/_Static_assert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2F_Static_assert.html&labels=migrate-cppref-page) | `c/language/declarations/_Static_assert` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/escape.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fescape.html&labels=migrate-cppref-page) | `c/language/expressions/escape` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/statements.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fstatements.html&labels=migrate-cppref-page) | `c/language/statements` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/operator_precedence.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Foperator_precedence.html&labels=migrate-cppref-page) | `c/language/expressions/operator_precedence` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/analyzability.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fanalyzability.html&labels=migrate-cppref-page) | `c/language/analyzability` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/constant_expression.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fconstant_expression.html&labels=migrate-cppref-page) | `c/language/expressions/constant_expression` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/switch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fswitch.html&labels=migrate-cppref-page) | `c/language/statements/switch` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/sizeof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fsizeof.html&labels=migrate-cppref-page) | `c/language/expressions/sizeof` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/restrict.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Frestrict.html&labels=migrate-cppref-page) | `c/language/declarations/restrict` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Ffor.html&labels=migrate-cppref-page) | `c/language/statements/for` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/eval_order.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Feval_order.html&labels=migrate-cppref-page) | `c/language/expressions/eval_order` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/const.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fconst.html&labels=migrate-cppref-page) | `c/language/declarations/const` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/continue.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fcontinue.html&labels=migrate-cppref-page) | `c/language/statements/continue` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fif.html&labels=migrate-cppref-page) | `c/language/statements/if` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/array.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Farray.html&labels=migrate-cppref-page) | `c/language/declarations/array` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/operator_arithmetic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Foperator_arithmetic.html&labels=migrate-cppref-page) | `c/language/expressions/operator_arithmetic` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/value_category.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fvalue_category.html&labels=migrate-cppref-page) | `c/language/expressions/value_category` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/typedef.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Ftypedef.html&labels=migrate-cppref-page) | `c/language/declarations/typedef` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/nullptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fnullptr.html&labels=migrate-cppref-page) | `c/language/expressions/nullptr` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/_Alignof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2F_Alignof.html&labels=migrate-cppref-page) | `c/language/expressions/_Alignof` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/static_assert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fstatic_assert.html&labels=migrate-cppref-page) | `c/language/declarations/static_assert` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/string_literal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fstring_literal.html&labels=migrate-cppref-page) | `c/language/expressions/string_literal` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/character_constant.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fcharacter_constant.html&labels=migrate-cppref-page) | `c/language/expressions/character_constant` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/pointer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fpointer.html&labels=migrate-cppref-page) | `c/language/declarations/pointer` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/operator_assignment.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Foperator_assignment.html&labels=migrate-cppref-page) | `c/language/expressions/operator_assignment` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/enum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fenum.html&labels=migrate-cppref-page) | `c/language/declarations/enum` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/storage_duration.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fstorage_duration.html&labels=migrate-cppref-page) | `c/language/declarations/storage_duration` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/thread_storage_duration.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fthread_storage_duration.html&labels=migrate-cppref-page) | `c/language/thread_storage_duration` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/asm.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fasm.html&labels=migrate-cppref-page) | `c/language/asm` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/typeof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Ftypeof.html&labels=migrate-cppref-page) | `c/language/expressions/typeof` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/while.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fwhile.html&labels=migrate-cppref-page) | `c/language/statements/while` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/union.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Funion.html&labels=migrate-cppref-page) | `c/language/declarations/union` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/break.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fbreak.html&labels=migrate-cppref-page) | `c/language/statements/break` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/functions.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Ffunctions.html&labels=migrate-cppref-page) | `c/language/functions` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fcast.html&labels=migrate-cppref-page) | `c/language/expressions/cast` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/constexpr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fconstexpr.html&labels=migrate-cppref-page) | `c/language/declarations/constexpr` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/_Alignas.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2F_Alignas.html&labels=migrate-cppref-page) | `c/language/declarations/_Alignas` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/generic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fgeneric.html&labels=migrate-cppref-page) | `c/language/expressions/generic` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/typeof_unqual.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Ftypeof_unqual.html&labels=migrate-cppref-page) | `c/language/expressions/typeof_unqual` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/operator_member_access.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Foperator_member_access.html&labels=migrate-cppref-page) | `c/language/expressions/operator_member_access` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/struct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fstruct.html&labels=migrate-cppref-page) | `c/language/declarations/struct` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/inline.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Finline.html&labels=migrate-cppref-page) | `c/language/functions/inline` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/history.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fhistory.html&labels=migrate-cppref-page) | `c/language/history` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/initialization.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Finitialization.html&labels=migrate-cppref-page) | `c/language/initialization` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/struct_initialization.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fstruct_initialization.html&labels=migrate-cppref-page) | `c/language/initialization/struct_initialization` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/bit_field.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fbit_field.html&labels=migrate-cppref-page) | `c/language/declarations/bit_field` | +| ✅ | [cppref](http://en.cppreference.com/w/c/language/basic_concepts.html) | [cppdoc](http://cppdoc.cc/c/language/basic_concepts) | `c/language/basic_concepts` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/function_definition.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Ffunction_definition.html&labels=migrate-cppref-page) | `c/language/functions/function_definition` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/goto.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fgoto.html&labels=migrate-cppref-page) | `c/language/statements/goto` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/operator_comparison.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Foperator_comparison.html&labels=migrate-cppref-page) | `c/language/expressions/operator_comparison` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/auto.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fauto.html&labels=migrate-cppref-page) | `c/language/auto` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/attributes/fallthrough.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fattributes%2Ffallthrough.html&labels=migrate-cppref-page) | `c/language/declarations/attributes/fallthrough` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/attributes/deprecated.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fattributes%2Fdeprecated.html&labels=migrate-cppref-page) | `c/language/declarations/attributes/deprecated` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/attributes/maybe_unused.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fattributes%2Fmaybe_unused.html&labels=migrate-cppref-page) | `c/language/declarations/attributes/maybe_unused` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/attributes/reproducible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fattributes%2Freproducible.html&labels=migrate-cppref-page) | `c/language/declarations/attributes/reproducible` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/attributes/noreturn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fattributes%2Fnoreturn.html&labels=migrate-cppref-page) | `c/language/declarations/attributes/noreturn` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/attributes/nodiscard.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fattributes%2Fnodiscard.html&labels=migrate-cppref-page) | `c/language/declarations/attributes/nodiscard` | +| ❌ | [cppref](http://en.cppreference.com/w/c/links/libs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flinks%2Flibs.html&labels=migrate-cppref-page) | `c/library/links/libs` | +| ❌ | [cppref](http://en.cppreference.com/w/c/memory/free.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fmemory%2Ffree.html&labels=migrate-cppref-page) | `c/library/memory/free` | +| ❌ | [cppref](http://en.cppreference.com/w/c/memory/calloc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fmemory%2Fcalloc.html&labels=migrate-cppref-page) | `c/library/memory/calloc` | +| ❌ | [cppref](http://en.cppreference.com/w/c/memory/free_sized.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fmemory%2Ffree_sized.html&labels=migrate-cppref-page) | `c/library/memory/free_sized` | +| ❌ | [cppref](http://en.cppreference.com/w/c/memory/realloc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fmemory%2Frealloc.html&labels=migrate-cppref-page) | `c/library/memory/realloc` | +| ❌ | [cppref](http://en.cppreference.com/w/c/memory/free_aligned_sized.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fmemory%2Ffree_aligned_sized.html&labels=migrate-cppref-page) | `c/library/memory/free_aligned_sized` | +| ❌ | [cppref](http://en.cppreference.com/w/c/memory/malloc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fmemory%2Fmalloc.html&labels=migrate-cppref-page) | `c/library/memory/malloc` | +| ❌ | [cppref](http://en.cppreference.com/w/c/memory/aligned_alloc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fmemory%2Faligned_alloc.html&labels=migrate-cppref-page) | `c/library/memory/aligned_alloc` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/atomic_is_lock_free.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2Fatomic_is_lock_free.html&labels=migrate-cppref-page) | `c/library/thread/atomic_is_lock_free` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/atomic_flag.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2Fatomic_flag.html&labels=migrate-cppref-page) | `c/library/thread/atomic_flag` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/ATOMIC_LOCK_FREE_consts.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2FATOMIC_LOCK_FREE_consts.html&labels=migrate-cppref-page) | `c/library/thread/ATOMIC_LOCK_FREE_consts` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/atomic_load.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2Fatomic_load.html&labels=migrate-cppref-page) | `c/library/thread/atomic_load` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/atomic_signal_fence.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2Fatomic_signal_fence.html&labels=migrate-cppref-page) | `c/library/thread/atomic_signal_fence` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/atomic_store.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2Fatomic_store.html&labels=migrate-cppref-page) | `c/library/thread/atomic_store` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/atomic_fetch_sub.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2Fatomic_fetch_sub.html&labels=migrate-cppref-page) | `c/library/thread/atomic_fetch_sub` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/atomic_fetch_and.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2Fatomic_fetch_and.html&labels=migrate-cppref-page) | `c/library/thread/atomic_fetch_and` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/ATOMIC_FLAG_INIT.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2FATOMIC_FLAG_INIT.html&labels=migrate-cppref-page) | `c/library/thread/ATOMIC_FLAG_INIT` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/kill_dependency.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2Fkill_dependency.html&labels=migrate-cppref-page) | `c/library/thread/kill_dependency` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/atomic_flag_clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2Fatomic_flag_clear.html&labels=migrate-cppref-page) | `c/library/thread/atomic_flag_clear` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/atomic_fetch_or.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2Fatomic_fetch_or.html&labels=migrate-cppref-page) | `c/library/thread/atomic_fetch_or` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/memory_order.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2Fmemory_order.html&labels=migrate-cppref-page) | `c/library/thread/memory_order` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/atomic_init.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2Fatomic_init.html&labels=migrate-cppref-page) | `c/library/thread/atomic_init` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/atomic_fetch_xor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2Fatomic_fetch_xor.html&labels=migrate-cppref-page) | `c/library/thread/atomic_fetch_xor` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/atomic_exchange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2Fatomic_exchange.html&labels=migrate-cppref-page) | `c/library/thread/atomic_exchange` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/ATOMIC_VAR_INIT.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2FATOMIC_VAR_INIT.html&labels=migrate-cppref-page) | `c/library/thread/ATOMIC_VAR_INIT` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/atomic_flag_test_and_set.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2Fatomic_flag_test_and_set.html&labels=migrate-cppref-page) | `c/library/thread/atomic_flag_test_and_set` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/atomic_compare_exchange.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2Fatomic_compare_exchange.html&labels=migrate-cppref-page) | `c/library/thread/atomic_compare_exchange` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/atomic_thread_fence.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2Fatomic_thread_fence.html&labels=migrate-cppref-page) | `c/library/thread/atomic_thread_fence` | +| ❌ | [cppref](http://en.cppreference.com/w/c/atomic/atomic_fetch_add.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fatomic%2Fatomic_fetch_add.html&labels=migrate-cppref-page) | `c/library/thread/atomic_fetch_add` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/thrd_detach.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fthrd_detach.html&labels=migrate-cppref-page) | `c/library/thread/thrd_detach` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/thrd_current.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fthrd_current.html&labels=migrate-cppref-page) | `c/library/thread/thrd_current` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/cnd_timedwait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fcnd_timedwait.html&labels=migrate-cppref-page) | `c/library/thread/cnd_timedwait` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/tss_set.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Ftss_set.html&labels=migrate-cppref-page) | `c/library/thread/tss_set` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/thrd_join.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fthrd_join.html&labels=migrate-cppref-page) | `c/library/thread/thrd_join` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/thrd_errors.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fthrd_errors.html&labels=migrate-cppref-page) | `c/library/thread/thrd_errors` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/thrd_create.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fthrd_create.html&labels=migrate-cppref-page) | `c/library/thread/thrd_create` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/mtx_destroy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fmtx_destroy.html&labels=migrate-cppref-page) | `c/library/thread/mtx_destroy` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/tss_create.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Ftss_create.html&labels=migrate-cppref-page) | `c/library/thread/tss_create` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/cnd_destroy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fcnd_destroy.html&labels=migrate-cppref-page) | `c/library/thread/cnd_destroy` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/thread_local.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fthread_local.html&labels=migrate-cppref-page) | `c/library/thread/thread_local` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/thrd_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fthrd_equal.html&labels=migrate-cppref-page) | `c/library/thread/thrd_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/tss_delete.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Ftss_delete.html&labels=migrate-cppref-page) | `c/library/thread/tss_delete` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/cnd_wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fcnd_wait.html&labels=migrate-cppref-page) | `c/library/thread/cnd_wait` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/mtx_types.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fmtx_types.html&labels=migrate-cppref-page) | `c/library/thread/mtx_types` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/call_once.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fcall_once.html&labels=migrate-cppref-page) | `c/library/thread/call_once` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/mtx_unlock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fmtx_unlock.html&labels=migrate-cppref-page) | `c/library/thread/mtx_unlock` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/thrd_sleep.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fthrd_sleep.html&labels=migrate-cppref-page) | `c/library/thread/thrd_sleep` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/mtx_timedlock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fmtx_timedlock.html&labels=migrate-cppref-page) | `c/library/thread/mtx_timedlock` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/mtx_lock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fmtx_lock.html&labels=migrate-cppref-page) | `c/library/thread/mtx_lock` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/mtx_trylock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fmtx_trylock.html&labels=migrate-cppref-page) | `c/library/thread/mtx_trylock` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/TSS_DTOR_ITERATIONS.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2FTSS_DTOR_ITERATIONS.html&labels=migrate-cppref-page) | `c/library/thread/TSS_DTOR_ITERATIONS` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/ONCE_FLAG_INIT.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2FONCE_FLAG_INIT.html&labels=migrate-cppref-page) | `c/library/thread/ONCE_FLAG_INIT` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/thrd_exit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fthrd_exit.html&labels=migrate-cppref-page) | `c/library/thread/thrd_exit` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/tss_get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Ftss_get.html&labels=migrate-cppref-page) | `c/library/thread/tss_get` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/mtx_init.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fmtx_init.html&labels=migrate-cppref-page) | `c/library/thread/mtx_init` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/cnd_signal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fcnd_signal.html&labels=migrate-cppref-page) | `c/library/thread/cnd_signal` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/cnd_init.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fcnd_init.html&labels=migrate-cppref-page) | `c/library/thread/cnd_init` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/thrd_yield.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fthrd_yield.html&labels=migrate-cppref-page) | `c/library/thread/thrd_yield` | +| ❌ | [cppref](http://en.cppreference.com/w/c/thread/cnd_broadcast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fthread%2Fcnd_broadcast.html&labels=migrate-cppref-page) | `c/library/thread/cnd_broadcast` | +| ❌ | [cppref](http://en.cppreference.com/w/c/symbol_index/macro.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fsymbol_index%2Fmacro.html&labels=migrate-cppref-page) | `c/library/symbol_index/macro` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fputwc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffputwc.html&labels=migrate-cppref-page) | `c/library/io/fputwc` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fread.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffread.html&labels=migrate-cppref-page) | `c/library/io/fread` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fflush.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffflush.html&labels=migrate-cppref-page) | `c/library/io/fflush` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/remove.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fremove.html&labels=migrate-cppref-page) | `c/library/io/remove` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fsetpos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffsetpos.html&labels=migrate-cppref-page) | `c/library/io/fsetpos` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fscanf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffscanf.html&labels=migrate-cppref-page) | `c/library/io/fscanf` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/ungetc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fungetc.html&labels=migrate-cppref-page) | `c/library/io/ungetc` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fopen.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffopen.html&labels=migrate-cppref-page) | `c/library/io/fopen` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/getwchar.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fgetwchar.html&labels=migrate-cppref-page) | `c/library/io/getwchar` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fwscanf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffwscanf.html&labels=migrate-cppref-page) | `c/library/io/fwscanf` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fputs.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffputs.html&labels=migrate-cppref-page) | `c/library/io/fputs` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/gets.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fgets.html&labels=migrate-cppref-page) | `c/library/io/gets` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/clearerr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fclearerr.html&labels=migrate-cppref-page) | `c/library/io/clearerr` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fwide.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffwide.html&labels=migrate-cppref-page) | `c/library/io/fwide` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fputws.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffputws.html&labels=migrate-cppref-page) | `c/library/io/fputws` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/ferror.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fferror.html&labels=migrate-cppref-page) | `c/library/io/ferror` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fgets.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffgets.html&labels=migrate-cppref-page) | `c/library/io/fgets` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fgetpos.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffgetpos.html&labels=migrate-cppref-page) | `c/library/io/fgetpos` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/tmpnam.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ftmpnam.html&labels=migrate-cppref-page) | `c/library/io/tmpnam` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/perror.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fperror.html&labels=migrate-cppref-page) | `c/library/io/perror` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/vfwscanf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fvfwscanf.html&labels=migrate-cppref-page) | `c/library/io/vfwscanf` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fclose.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffclose.html&labels=migrate-cppref-page) | `c/library/io/fclose` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fprintf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffprintf.html&labels=migrate-cppref-page) | `c/library/io/fprintf` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/tmpfile.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ftmpfile.html&labels=migrate-cppref-page) | `c/library/io/tmpfile` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/rename.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Frename.html&labels=migrate-cppref-page) | `c/library/io/rename` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fgetc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffgetc.html&labels=migrate-cppref-page) | `c/library/io/fgetc` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/freopen.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffreopen.html&labels=migrate-cppref-page) | `c/library/io/freopen` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/std_streams.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fstd_streams.html&labels=migrate-cppref-page) | `c/library/io/std_streams` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fgetws.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffgetws.html&labels=migrate-cppref-page) | `c/library/io/fgetws` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fseek.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffseek.html&labels=migrate-cppref-page) | `c/library/io/fseek` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/FILE.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2FFILE.html&labels=migrate-cppref-page) | `c/library/io/FILE` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/getchar.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fgetchar.html&labels=migrate-cppref-page) | `c/library/io/getchar` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fgetwc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffgetwc.html&labels=migrate-cppref-page) | `c/library/io/fgetwc` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/ftell.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fftell.html&labels=migrate-cppref-page) | `c/library/io/ftell` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/vfwprintf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fvfwprintf.html&labels=migrate-cppref-page) | `c/library/io/vfwprintf` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/putwchar.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fputwchar.html&labels=migrate-cppref-page) | `c/library/io/putwchar` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fputc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffputc.html&labels=migrate-cppref-page) | `c/library/io/fputc` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/setbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fsetbuf.html&labels=migrate-cppref-page) | `c/library/io/setbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/puts.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fputs.html&labels=migrate-cppref-page) | `c/library/io/puts` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fwprintf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffwprintf.html&labels=migrate-cppref-page) | `c/library/io/fwprintf` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/rewind.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Frewind.html&labels=migrate-cppref-page) | `c/library/io/rewind` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/vfprintf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fvfprintf.html&labels=migrate-cppref-page) | `c/library/io/vfprintf` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fpos_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffpos_t.html&labels=migrate-cppref-page) | `c/library/io/fpos_t` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/putchar.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fputchar.html&labels=migrate-cppref-page) | `c/library/io/putchar` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/ungetwc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fungetwc.html&labels=migrate-cppref-page) | `c/library/io/ungetwc` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/putc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fputc.html&labels=migrate-cppref-page) | `c/library/io/putc` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/feof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffeof.html&labels=migrate-cppref-page) | `c/library/io/feof` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/fwrite.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Ffwrite.html&labels=migrate-cppref-page) | `c/library/io/fwrite` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/setvbuf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fsetvbuf.html&labels=migrate-cppref-page) | `c/library/io/setvbuf` | +| ❌ | [cppref](http://en.cppreference.com/w/c/io/vfscanf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fio%2Fvfscanf.html&labels=migrate-cppref-page) | `c/library/io/vfscanf` | +| ❌ | [cppref](http://en.cppreference.com/w/c/experimental/fpext1/nextup.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fexperimental%2Ffpext1%2Fnextup.html&labels=migrate-cppref-page) | `c/library/experimental/fpext1/nextup` | +| ❌ | [cppref](http://en.cppreference.com/w/c/error/ignore_handler_s.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ferror%2Fignore_handler_s.html&labels=migrate-cppref-page) | `c/library/error/ignore_handler_s` | +| ❌ | [cppref](http://en.cppreference.com/w/c/error/assert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ferror%2Fassert.html&labels=migrate-cppref-page) | `c/library/error/assert` | +| ❌ | [cppref](http://en.cppreference.com/w/c/error/errno_macros.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ferror%2Ferrno_macros.html&labels=migrate-cppref-page) | `c/library/error/errno_macros` | +| ❌ | [cppref](http://en.cppreference.com/w/c/error/errno.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ferror%2Ferrno.html&labels=migrate-cppref-page) | `c/library/error/errno` | +| ❌ | [cppref](http://en.cppreference.com/w/c/error/static_assert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ferror%2Fstatic_assert.html&labels=migrate-cppref-page) | `c/library/error/static_assert` | +| ❌ | [cppref](http://en.cppreference.com/w/c/error/set_constraint_handler_s.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ferror%2Fset_constraint_handler_s.html&labels=migrate-cppref-page) | `c/library/error/set_constraint_handler_s` | +| ❌ | [cppref](http://en.cppreference.com/w/c/error/abort_handler_s.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ferror%2Fabort_handler_s.html&labels=migrate-cppref-page) | `c/library/error/abort_handler_s` | +| ❌ | [cppref](http://en.cppreference.com/w/c/types/size_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ftypes%2Fsize_t.html&labels=migrate-cppref-page) | `c/library/types/size_t` | +| ❌ | [cppref](http://en.cppreference.com/w/c/types/limits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ftypes%2Flimits.html&labels=migrate-cppref-page) | `c/library/types/limits` | +| ❌ | [cppref](http://en.cppreference.com/w/c/types/NULL.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ftypes%2FNULL.html&labels=migrate-cppref-page) | `c/library/types/NULL` | +| ❌ | [cppref](http://en.cppreference.com/w/c/types/max_align_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ftypes%2Fmax_align_t.html&labels=migrate-cppref-page) | `c/library/types/max_align_t` | +| ❌ | [cppref](http://en.cppreference.com/w/c/types/integer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ftypes%2Finteger.html&labels=migrate-cppref-page) | `c/library/types/integer` | +| ❌ | [cppref](http://en.cppreference.com/w/c/types/nullptr_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ftypes%2Fnullptr_t.html&labels=migrate-cppref-page) | `c/library/types/nullptr_t` | +| ❌ | [cppref](http://en.cppreference.com/w/c/types/offsetof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ftypes%2Foffsetof.html&labels=migrate-cppref-page) | `c/library/types/offsetof` | +| ❌ | [cppref](http://en.cppreference.com/w/c/types/ptrdiff_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ftypes%2Fptrdiff_t.html&labels=migrate-cppref-page) | `c/library/types/ptrdiff_t` | +| ❌ | [cppref](http://en.cppreference.com/w/c/types/limits/FLT_ROUNDS.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ftypes%2Flimits%2FFLT_ROUNDS.html&labels=migrate-cppref-page) | `c/library/types/limits/FLT_ROUNDS` | +| ❌ | [cppref](http://en.cppreference.com/w/c/types/limits/FLT_EVAL_METHOD.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Ftypes%2Flimits%2FFLT_EVAL_METHOD.html&labels=migrate-cppref-page) | `c/library/types/limits/FLT_EVAL_METHOD` | +| ❌ | [cppref](http://en.cppreference.com/w/c/compiler_support/23.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fcompiler_support%2F23.html&labels=migrate-cppref-page) | `c/library/compiler_support/23` | +| ❌ | [cppref](http://en.cppreference.com/w/c/compiler_support/99.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fcompiler_support%2F99.html&labels=migrate-cppref-page) | `c/library/compiler_support/99` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/at_quick_exit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2Fat_quick_exit.html&labels=migrate-cppref-page) | `c/library/program/at_quick_exit` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/raise.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2Fraise.html&labels=migrate-cppref-page) | `c/library/program/raise` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/EXIT_status.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2FEXIT_status.html&labels=migrate-cppref-page) | `c/library/program/EXIT_status` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/longjmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2Flongjmp.html&labels=migrate-cppref-page) | `c/library/program/longjmp` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/jmp_buf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2Fjmp_buf.html&labels=migrate-cppref-page) | `c/library/program/jmp_buf` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/quick_exit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2Fquick_exit.html&labels=migrate-cppref-page) | `c/library/program/quick_exit` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/atexit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2Fatexit.html&labels=migrate-cppref-page) | `c/library/program/atexit` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/signal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2Fsignal.html&labels=migrate-cppref-page) | `c/library/program/signal` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/sig_atomic_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2Fsig_atomic_t.html&labels=migrate-cppref-page) | `c/library/program/sig_atomic_t` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/SIG_types.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2FSIG_types.html&labels=migrate-cppref-page) | `c/library/program/SIG_types` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/abort.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2Fabort.html&labels=migrate-cppref-page) | `c/library/program/abort` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/system.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2Fsystem.html&labels=migrate-cppref-page) | `c/library/program/system` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/exit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2Fexit.html&labels=migrate-cppref-page) | `c/library/program/exit` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/unreachable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2Funreachable.html&labels=migrate-cppref-page) | `c/library/program/unreachable` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/setjmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2Fsetjmp.html&labels=migrate-cppref-page) | `c/library/program/setjmp` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/memalignment.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2Fmemalignment.html&labels=migrate-cppref-page) | `c/library/program/memalignment` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/_Exit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2F_Exit.html&labels=migrate-cppref-page) | `c/library/program/_Exit` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/getenv.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2Fgetenv.html&labels=migrate-cppref-page) | `c/library/program/getenv` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/SIG_strategies.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2FSIG_strategies.html&labels=migrate-cppref-page) | `c/library/program/SIG_strategies` | +| ❌ | [cppref](http://en.cppreference.com/w/c/program/SIG_ERR.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fprogram%2FSIG_ERR.html&labels=migrate-cppref-page) | `c/library/program/SIG_ERR` | +| ❌ | [cppref](http://en.cppreference.com/w/c/chrono/mktime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fchrono%2Fmktime.html&labels=migrate-cppref-page) | `c/library/chrono/mktime` | +| ❌ | [cppref](http://en.cppreference.com/w/c/chrono/clock.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fchrono%2Fclock.html&labels=migrate-cppref-page) | `c/library/chrono/clock` | +| ❌ | [cppref](http://en.cppreference.com/w/c/chrono/CLOCKS_PER_SEC.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fchrono%2FCLOCKS_PER_SEC.html&labels=migrate-cppref-page) | `c/library/chrono/CLOCKS_PER_SEC` | +| ❌ | [cppref](http://en.cppreference.com/w/c/chrono/time_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fchrono%2Ftime_t.html&labels=migrate-cppref-page) | `c/library/chrono/time_t` | +| ❌ | [cppref](http://en.cppreference.com/w/c/chrono/gmtime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fchrono%2Fgmtime.html&labels=migrate-cppref-page) | `c/library/chrono/gmtime` | +| ❌ | [cppref](http://en.cppreference.com/w/c/chrono/clock_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fchrono%2Fclock_t.html&labels=migrate-cppref-page) | `c/library/chrono/clock_t` | +| ❌ | [cppref](http://en.cppreference.com/w/c/chrono/strftime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fchrono%2Fstrftime.html&labels=migrate-cppref-page) | `c/library/chrono/strftime` | +| ❌ | [cppref](http://en.cppreference.com/w/c/chrono/difftime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fchrono%2Fdifftime.html&labels=migrate-cppref-page) | `c/library/chrono/difftime` | +| ❌ | [cppref](http://en.cppreference.com/w/c/chrono/ctime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fchrono%2Fctime.html&labels=migrate-cppref-page) | `c/library/chrono/ctime` | +| ❌ | [cppref](http://en.cppreference.com/w/c/chrono/asctime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fchrono%2Fasctime.html&labels=migrate-cppref-page) | `c/library/chrono/asctime` | +| ❌ | [cppref](http://en.cppreference.com/w/c/chrono/tm.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fchrono%2Ftm.html&labels=migrate-cppref-page) | `c/library/chrono/tm` | +| ❌ | [cppref](http://en.cppreference.com/w/c/chrono/time.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fchrono%2Ftime.html&labels=migrate-cppref-page) | `c/library/chrono/time` | +| ❌ | [cppref](http://en.cppreference.com/w/c/chrono/timespec_getres.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fchrono%2Ftimespec_getres.html&labels=migrate-cppref-page) | `c/library/chrono/timespec_getres` | +| ❌ | [cppref](http://en.cppreference.com/w/c/chrono/timespec.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fchrono%2Ftimespec.html&labels=migrate-cppref-page) | `c/library/chrono/timespec` | +| ❌ | [cppref](http://en.cppreference.com/w/c/chrono/timespec_get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fchrono%2Ftimespec_get.html&labels=migrate-cppref-page) | `c/library/chrono/timespec_get` | +| ❌ | [cppref](http://en.cppreference.com/w/c/chrono/wcsftime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fchrono%2Fwcsftime.html&labels=migrate-cppref-page) | `c/library/chrono/wcsftime` | +| ❌ | [cppref](http://en.cppreference.com/w/c/chrono/localtime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fchrono%2Flocaltime.html&labels=migrate-cppref-page) | `c/library/chrono/localtime` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keywords.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeywords.html&labels=migrate-cppref-page) | `cpp/language/keywords` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes.html&labels=migrate-cppref-page) | `cpp/library/utility/types` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex.html&labels=migrate-cppref-page) | `cpp/library/text/regex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword.html&labels=migrate-cppref-page) | `cpp/language/keyword` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/comment.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcomment.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/comment` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/comments.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcomments.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/comments` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_token_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_token_iterator.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_token_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/syntax_option_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fsyntax_option_type.html&labels=migrate-cppref-page) | `cpp/library/text/regex/syntax_option_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_traits.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/basic_regex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fbasic_regex.html&labels=migrate-cppref-page) | `cpp/library/text/regex/basic_regex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_flag_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_flag_type.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_flag_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_match.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_match.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_match` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_replace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_replace.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_replace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_search.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_search.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_search` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/sub_match.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fsub_match.html&labels=migrate-cppref-page) | `cpp/library/text/regex/sub_match` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/ecmascript.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fecmascript.html&labels=migrate-cppref-page) | `cpp/library/text/regex/ecmascript` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/error_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Ferror_type.html&labels=migrate-cppref-page) | `cpp/library/text/regex/error_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_error.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_iterator.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_traits/getloc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_traits%2Fgetloc.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_traits/getloc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_traits/regex_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_traits%2Fregex_traits.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_traits/regex_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_traits/lookup_collatename.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_traits%2Flookup_collatename.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_traits/lookup_collatename` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_traits/transform_primary.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_traits%2Ftransform_primary.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_traits/transform_primary` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_traits/isctype.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_traits%2Fisctype.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_traits/isctype` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_traits/value.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_traits%2Fvalue.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_traits/value` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_traits/translate_nocase.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_traits%2Ftranslate_nocase.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_traits/translate_nocase` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_traits/lookup_classname.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_traits%2Flookup_classname.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_traits/lookup_classname` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_traits/length.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_traits%2Flength.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_traits/length` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_traits/transform.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_traits%2Ftransform.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_traits/transform` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_traits/imbue.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_traits%2Fimbue.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_traits/imbue` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_traits/translate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_traits%2Ftranslate.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_traits/translate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/ready.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Fready.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/ready` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/~match_results.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2F~match_results.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/~match_results` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/position.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Fposition.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/position` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/prefix.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Fprefix.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/prefix` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/max_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Fmax_size.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/max_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/match_results.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Fmatch_results.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/match_results` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/end.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Fend.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/end` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/format.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Fformat.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/format` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/suffix.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Fsuffix.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/suffix` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/begin.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Fbegin.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/begin` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/str.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Fstr.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/str` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/get_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Fget_allocator.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/get_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/length.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Flength.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/length` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/match_results/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fmatch_results%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/text/regex/match_results/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_iterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_iterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_iterator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_iterator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_iterator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_iterator/regex_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_iterator%2Fregex_iterator.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_iterator/regex_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/sub_match/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fsub_match%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/text/regex/sub_match/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/sub_match/str.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fsub_match%2Fstr.html&labels=migrate-cppref-page) | `cpp/library/text/regex/sub_match/str` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/sub_match/sub_match.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fsub_match%2Fsub_match.html&labels=migrate-cppref-page) | `cpp/library/text/regex/sub_match/sub_match` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/sub_match/compare.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fsub_match%2Fcompare.html&labels=migrate-cppref-page) | `cpp/library/text/regex/sub_match/compare` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/sub_match/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fsub_match%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/text/regex/sub_match/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/sub_match/length.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fsub_match%2Flength.html&labels=migrate-cppref-page) | `cpp/library/text/regex/sub_match/length` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/sub_match/operator_ltlt.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fsub_match%2Foperator_ltlt.html&labels=migrate-cppref-page) | `cpp/library/text/regex/sub_match/operator_ltlt` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_error/code.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_error%2Fcode.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_error/code` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_error/regex_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_error%2Fregex_error.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_error/regex_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_error/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_error%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_error/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/basic_regex/assign.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fbasic_regex%2Fassign.html&labels=migrate-cppref-page) | `cpp/library/text/regex/basic_regex/assign` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/basic_regex/mark_count.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fbasic_regex%2Fmark_count.html&labels=migrate-cppref-page) | `cpp/library/text/regex/basic_regex/mark_count` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/basic_regex/getloc.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fbasic_regex%2Fgetloc.html&labels=migrate-cppref-page) | `cpp/library/text/regex/basic_regex/getloc` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/basic_regex/basic_regex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fbasic_regex%2Fbasic_regex.html&labels=migrate-cppref-page) | `cpp/library/text/regex/basic_regex/basic_regex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/basic_regex/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fbasic_regex%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/text/regex/basic_regex/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/basic_regex/constants.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fbasic_regex%2Fconstants.html&labels=migrate-cppref-page) | `cpp/library/text/regex/basic_regex/constants` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/basic_regex/deduction_guides.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fbasic_regex%2Fdeduction_guides.html&labels=migrate-cppref-page) | `cpp/library/text/regex/basic_regex/deduction_guides` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/basic_regex/flags.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fbasic_regex%2Fflags.html&labels=migrate-cppref-page) | `cpp/library/text/regex/basic_regex/flags` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/basic_regex/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fbasic_regex%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/text/regex/basic_regex/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/basic_regex/~basic_regex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fbasic_regex%2F~basic_regex.html&labels=migrate-cppref-page) | `cpp/library/text/regex/basic_regex/~basic_regex` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/basic_regex/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fbasic_regex%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/text/regex/basic_regex/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/basic_regex/imbue.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fbasic_regex%2Fimbue.html&labels=migrate-cppref-page) | `cpp/library/text/regex/basic_regex/imbue` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_token_iterator/regex_token_iterator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_token_iterator%2Fregex_token_iterator.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_token_iterator/regex_token_iterator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_token_iterator/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_token_iterator%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_token_iterator/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_token_iterator/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_token_iterator%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_token_iterator/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_token_iterator/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_token_iterator%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_token_iterator/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/regex/regex_token_iterator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fregex%2Fregex_token_iterator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/text/regex/regex_token_iterator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/identifier_with_special_meaning/import.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fidentifier_with_special_meaning%2Fimport.html&labels=migrate-cppref-page) | `cpp/language/keywords/import` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/identifier_with_special_meaning/final.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fidentifier_with_special_meaning%2Ffinal.html&labels=migrate-cppref-page) | `cpp/language/keywords/final` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/identifier_with_special_meaning/override.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fidentifier_with_special_meaning%2Foverride.html&labels=migrate-cppref-page) | `cpp/language/keywords/override` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/identifier_with_special_meaning/pre.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fidentifier_with_special_meaning%2Fpre.html&labels=migrate-cppref-page) | `cpp/language/keywords/pre` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/identifier_with_special_meaning/post.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fidentifier_with_special_meaning%2Fpost.html&labels=migrate-cppref-page) | `cpp/language/keywords/post` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/identifier_with_special_meaning/trivially_relocatable_if_eligible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fidentifier_with_special_meaning%2Ftrivially_relocatable_if_eligible.html&labels=migrate-cppref-page) | `cpp/language/keywords/trivially_relocatable_if_eligible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/identifier_with_special_meaning/replaceable_if_eligible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fidentifier_with_special_meaning%2Freplaceable_if_eligible.html&labels=migrate-cppref-page) | `cpp/language/keywords/replaceable_if_eligible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/identifier_with_special_meaning/module.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fidentifier_with_special_meaning%2Fmodule.html&labels=migrate-cppref-page) | `cpp/language/keywords/module` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/bit_floor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fbit_floor.html&labels=migrate-cppref-page) | `cpp/library/utility/bit/bit_floor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/countl_one.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcountl_one.html&labels=migrate-cppref-page) | `cpp/library/utility/bit/countl_one` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/popcount.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fpopcount.html&labels=migrate-cppref-page) | `cpp/library/utility/bit/popcount` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/has_single_bit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fhas_single_bit.html&labels=migrate-cppref-page) | `cpp/library/utility/bit/has_single_bit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/rotr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frotr.html&labels=migrate-cppref-page) | `cpp/library/utility/bit/rotr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/bit_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fbit_cast.html&labels=migrate-cppref-page) | `cpp/library/utility/bit/bit_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/rotl.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Frotl.html&labels=migrate-cppref-page) | `cpp/library/utility/bit/rotl` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/countr_zero.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcountr_zero.html&labels=migrate-cppref-page) | `cpp/library/utility/bit/countr_zero` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/byteswap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fbyteswap.html&labels=migrate-cppref-page) | `cpp/library/utility/bit/byteswap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/countl_zero.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcountl_zero.html&labels=migrate-cppref-page) | `cpp/library/utility/bit/countl_zero` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/bit_ceil.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fbit_ceil.html&labels=migrate-cppref-page) | `cpp/library/utility/bit/bit_ceil` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/bit_width.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fbit_width.html&labels=migrate-cppref-page) | `cpp/library/utility/bit/bit_width` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/numeric/countr_one.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fnumeric%2Fcountr_one.html&labels=migrate-cppref-page) | `cpp/library/utility/bit/countr_one` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/alignas.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Falignas.html&labels=migrate-cppref-page) | `cpp/language/declarations/alignas` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/implicit_conversion.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fimplicit_conversion.html&labels=migrate-cppref-page) | `cpp/language/expressions/implicit_conversion` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/overloaded_address.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Foverloaded_address.html&labels=migrate-cppref-page) | `cpp/language/functions/overloaded_address` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/sfinae.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fsfinae.html&labels=migrate-cppref-page) | `cpp/language/templates/sfinae` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/qualified_lookup.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fqualified_lookup.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/qualified_lookup` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/member_template.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fmember_template.html&labels=migrate-cppref-page) | `cpp/language/templates/member_template` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/list_initialization.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Flist_initialization.html&labels=migrate-cppref-page) | `cpp/language/initialization/list_initialization` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/unqualified_lookup.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Funqualified_lookup.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/unqualified_lookup` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/return.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Freturn.html&labels=migrate-cppref-page) | `cpp/language/statements/return` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/do.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fdo.html&labels=migrate-cppref-page) | `cpp/language/statements/do` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/catch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fcatch.html&labels=migrate-cppref-page) | `cpp/language/exceptions/catch` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/types.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ftypes.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/types` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/except_spec.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fexcept_spec.html&labels=migrate-cppref-page) | `cpp/language/exceptions/except_spec` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/multithread.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fmultithread.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/multithread` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/scope.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fscope.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/scope` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/default_arguments.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fdefault_arguments.html&labels=migrate-cppref-page) | `cpp/language/functions/default_arguments` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/default_initialization.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fdefault_initialization.html&labels=migrate-cppref-page) | `cpp/language/initialization/default_initialization` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/adl.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fadl.html&labels=migrate-cppref-page) | `cpp/language/functions/adl` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/objects.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fobjects.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/objects` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/try.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ftry.html&labels=migrate-cppref-page) | `cpp/language/exceptions/try` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/noexcept_spec.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fnoexcept_spec.html&labels=migrate-cppref-page) | `cpp/language/exceptions/noexcept_spec` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/aggregate_initialization.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Faggregate_initialization.html&labels=migrate-cppref-page) | `cpp/language/initialization/aggregate_initialization` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/lambda.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Flambda.html&labels=migrate-cppref-page) | `cpp/language/functions/lambda` | +| ✅ | [cppref](http://en.cppreference.com/w/cpp/language/modules.html) | [cppdoc](http://cppdoc.cc/cpp/language/basic_concepts/modules) | `cpp/language/basic_concepts/modules` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/contracts.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fcontracts.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/contracts` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/copy_initialization.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fcopy_initialization.html&labels=migrate-cppref-page) | `cpp/language/initialization/copy_initialization` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/memory_model.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fmemory_model.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/memory_model` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/constant_initialization.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fconstant_initialization.html&labels=migrate-cppref-page) | `cpp/language/initialization/constant_initialization` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/variadic_arguments.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fvariadic_arguments.html&labels=migrate-cppref-page) | `cpp/language/functions/variadic_arguments` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/as_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fas_if.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/as_if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/incomplete_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fincomplete_type.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/incomplete_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/coroutines.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fcoroutines.html&labels=migrate-cppref-page) | `cpp/language/functions/coroutines` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/ub.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fub.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/ub` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ffunction.html&labels=migrate-cppref-page) | `cpp/language/functions/function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/name.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fname.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/name` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/overload_resolution.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Foverload_resolution.html&labels=migrate-cppref-page) | `cpp/language/functions/overload_resolution` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/type-id.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ftype-id.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/type-id` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/definition.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fdefinition.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/definition` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/zero_initialization.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fzero_initialization.html&labels=migrate-cppref-page) | `cpp/language/initialization/zero_initialization` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/charset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fcharset.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/charset` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/translation_phases.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ftranslation_phases.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/translation_phases` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/lifetime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Flifetime.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/lifetime` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Ftype.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/copy_elision.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fcopy_elision.html&labels=migrate-cppref-page) | `cpp/language/initialization/copy_elision` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/punctuators.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fpunctuators.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/punctuators` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/lookup.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Flookup.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/lookup` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/direct_initialization.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fdirect_initialization.html&labels=migrate-cppref-page) | `cpp/language/initialization/direct_initialization` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/object.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fobject.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/object` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/main_function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fmain_function.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/main_function` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/value_initialization.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fvalue_initialization.html&labels=migrate-cppref-page) | `cpp/language/initialization/value_initialization` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/language/identifiers.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fidentifiers.html&labels=migrate-cppref-page) | `cpp/language/basic_concepts/identifiers` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution/into_variant.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution%2Finto_variant.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/into_variant` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution/upon_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution%2Fupon_error.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/upon_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution/just_stopped.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution%2Fjust_stopped.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/just_stopped` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution/ensure_started.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution%2Fensure_started.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/ensure_started` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution/stopped_as_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution%2Fstopped_as_error.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/stopped_as_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution/just.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution%2Fjust.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/just` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution/scheduler.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution%2Fscheduler.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/scheduler` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution/let_stopped.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution%2Flet_stopped.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/let_stopped` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution/upon_stopped.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution%2Fupon_stopped.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/upon_stopped` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution/then.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution%2Fthen.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/then` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution/on.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution%2Fon.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/on` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution/read_env.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution%2Fread_env.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/read_env` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution/stopped_as_optional.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution%2Fstopped_as_optional.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/stopped_as_optional` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution/just_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution%2Fjust_error.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/just_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution/let_value.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution%2Flet_value.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/let_value` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution/schedule.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution%2Fschedule.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/schedule` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution/let_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution%2Flet_error.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/let_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/execution/when_all.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexecution%2Fwhen_all.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/when_all` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/piecewise_construct_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fpiecewise_construct_t.html&labels=migrate-cppref-page) | `cpp/library/utility/pair/piecewise_construct_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/unreachable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Funreachable.html&labels=migrate-cppref-page) | `cpp/library/utility/program/unreachable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/piecewise_construct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fpiecewise_construct.html&labels=migrate-cppref-page) | `cpp/library/utility/pair/piecewise_construct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/utility/nontype.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Futility%2Fnontype.html&labels=migrate-cppref-page) | `cpp/library/utility/functional/nontype` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/thread/this_thread/sync_wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fthread%2Fthis_thread%2Fsync_wait.html&labels=migrate-cppref-page) | `cpp/library/experimental/execution/sync_wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/symbol_index/string_view_literals.html) | N/A | `cpp/symbol_index/string_view_literals(cppref)` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keywords/static.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeywords%2Fstatic.html&labels=migrate-cppref-page) | `cpp/language/keywords/static` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keywords/if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeywords%2Fif.html&labels=migrate-cppref-page) | `cpp/language/keywords/if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keywords/typename.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeywords%2Ftypename.html&labels=migrate-cppref-page) | `cpp/language/keywords/typename` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/cerr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fcerr.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/cerr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/cout.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fcout.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/cout` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/io/clog.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fio%2Fclog.html&labels=migrate-cppref-page) | `cpp/library/io/basic_ostream/clog` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ostream_joiner.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fostream_joiner.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/ostream_joiner` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/transform_reduce.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ftransform_reduce.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism/transform_reduce` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/latch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flatch.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/latch` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/boyer_moore_searcher.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fboyer_moore_searcher.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/boyer_moore_searcher` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/sample.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsample.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/sample` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/type_trait_variable_templates.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ftype_trait_variable_templates.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/type_trait_variable_templates` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/set_default_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fset_default_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/set_default_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/future.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffuture.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/future` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/search.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsearch.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/search` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/any.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fany.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/any` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/default_searcher.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fdefault_searcher.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/default_searcher` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/get_default_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fget_default_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/get_default_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/polymorphic_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpolymorphic_allocator.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/polymorphic_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/resource_adaptor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fresource_adaptor.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/resource_adaptor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/monotonic_buffer_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmonotonic_buffer_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/monotonic_buffer_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/barrier.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbarrier.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/barrier` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/make_exceptional_future.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmake_exceptional_future.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/make_exceptional_future` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/pool_options.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpool_options.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/pool_options` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/shared_future.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fshared_future.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/shared_future` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unsynchronized_pool_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funsynchronized_pool_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/unsynchronized_pool_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/new_delete_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fnew_delete_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/new_delete_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/shared_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fshared_ptr.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/shared_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/boyer_moore_horspool_searcher.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fboyer_moore_horspool_searcher.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/boyer_moore_horspool_searcher` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/weak_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fweak_ptr.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/weak_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/barrier/barrier.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbarrier%2Fbarrier.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/barrier/barrier` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/barrier/arrive_and_wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbarrier%2Farrive_and_wait.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/barrier/arrive_and_wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/barrier/~barrier.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbarrier%2F~barrier.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/barrier/~barrier` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/barrier/arrive_and_drop.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fbarrier%2Farrive_and_drop.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/barrier/arrive_and_drop` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/shared_future/then.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fshared_future%2Fthen.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/shared_future/then` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/shared_future/shared_future.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fshared_future%2Fshared_future.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/shared_future/shared_future` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/shared_future/is_ready.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fshared_future%2Fis_ready.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/shared_future/is_ready` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/shared_future/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fshared_future%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/shared_future/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/latch/~latch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flatch%2F~latch.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/latch/~latch` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/latch/latch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flatch%2Flatch.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/latch/latch` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/latch/count_down_and_wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flatch%2Fcount_down_and_wait.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/latch/count_down_and_wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/latch/is_ready.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flatch%2Fis_ready.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/latch/is_ready` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/latch/wait.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flatch%2Fwait.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/latch/wait` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/latch/count_down.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Flatch%2Fcount_down.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/latch/count_down` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/any/~any.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fany%2F~any.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/any/~any` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/any/empty.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fany%2Fempty.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/any/empty` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/any/any.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fany%2Fany.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/any/any` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/any/swap2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fany%2Fswap2.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/any/swap2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/any/swap.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fany%2Fswap.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/any/swap` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/any/any_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fany%2Fany_cast.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/any/any_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/any/type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fany%2Ftype.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/any/type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/any/bad_any_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fany%2Fbad_any_cast.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/any/bad_any_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/any/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fany%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/any/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/any/clear.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fany%2Fclear.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/any/clear` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unsynchronized_pool_resource/do_is_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funsynchronized_pool_resource%2Fdo_is_equal.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/unsynchronized_pool_resource/do_is_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unsynchronized_pool_resource/do_deallocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funsynchronized_pool_resource%2Fdo_deallocate.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/unsynchronized_pool_resource/do_deallocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unsynchronized_pool_resource/unsynchronized_pool_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funsynchronized_pool_resource%2Funsynchronized_pool_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/unsynchronized_pool_resource/unsynchronized_pool_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unsynchronized_pool_resource/do_allocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funsynchronized_pool_resource%2Fdo_allocate.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/unsynchronized_pool_resource/do_allocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unsynchronized_pool_resource/options.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funsynchronized_pool_resource%2Foptions.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/unsynchronized_pool_resource/options` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unsynchronized_pool_resource/release.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funsynchronized_pool_resource%2Frelease.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/unsynchronized_pool_resource/release` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unsynchronized_pool_resource/~unsynchronized_pool_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funsynchronized_pool_resource%2F~unsynchronized_pool_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/unsynchronized_pool_resource/~unsynchronized_pool_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/unsynchronized_pool_resource/upstream_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Funsynchronized_pool_resource%2Fupstream_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/unsynchronized_pool_resource/upstream_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/future/future.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffuture%2Ffuture.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/future/future` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/future/then.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffuture%2Fthen.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/future/then` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/future/is_ready.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffuture%2Fis_ready.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/future/is_ready` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/future/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Ffuture%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/experimental/concurrency/future/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/monotonic_buffer_resource/~monotonic_buffer_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmonotonic_buffer_resource%2F~monotonic_buffer_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/monotonic_buffer_resource/~monotonic_buffer_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/monotonic_buffer_resource/do_is_equal.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmonotonic_buffer_resource%2Fdo_is_equal.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/monotonic_buffer_resource/do_is_equal` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/monotonic_buffer_resource/monotonic_buffer_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmonotonic_buffer_resource%2Fmonotonic_buffer_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/monotonic_buffer_resource/monotonic_buffer_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/monotonic_buffer_resource/do_deallocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmonotonic_buffer_resource%2Fdo_deallocate.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/monotonic_buffer_resource/do_deallocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/monotonic_buffer_resource/do_allocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmonotonic_buffer_resource%2Fdo_allocate.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/monotonic_buffer_resource/do_allocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/monotonic_buffer_resource/release.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmonotonic_buffer_resource%2Frelease.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/monotonic_buffer_resource/release` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/monotonic_buffer_resource/upstream_resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fmonotonic_buffer_resource%2Fupstream_resource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/monotonic_buffer_resource/upstream_resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/polymorphic_allocator/operator_eq.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpolymorphic_allocator%2Foperator_eq.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/polymorphic_allocator/operator_eq` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/polymorphic_allocator/allocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpolymorphic_allocator%2Fallocate.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/polymorphic_allocator/allocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/polymorphic_allocator/deallocate.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpolymorphic_allocator%2Fdeallocate.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/polymorphic_allocator/deallocate` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/polymorphic_allocator/polymorphic_allocator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpolymorphic_allocator%2Fpolymorphic_allocator.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/polymorphic_allocator/polymorphic_allocator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/polymorphic_allocator/select_on_container_copy_construction.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpolymorphic_allocator%2Fselect_on_container_copy_construction.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/polymorphic_allocator/select_on_container_copy_construction` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/polymorphic_allocator/construct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpolymorphic_allocator%2Fconstruct.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/polymorphic_allocator/construct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/polymorphic_allocator/destroy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpolymorphic_allocator%2Fdestroy.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/polymorphic_allocator/destroy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/polymorphic_allocator/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpolymorphic_allocator%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/polymorphic_allocator/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/polymorphic_allocator/resource.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fpolymorphic_allocator%2Fresource.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/polymorphic_allocator/resource` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/shared_ptr/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fshared_ptr%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/shared_ptr/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/shared_ptr/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fshared_ptr%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/shared_ptr/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/shared_ptr/shared_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fshared_ptr%2Fshared_ptr.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/shared_ptr/shared_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/shared_ptr/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fshared_ptr%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/shared_ptr/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/shared_ptr/get.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fshared_ptr%2Fget.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/shared_ptr/get` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/shared_ptr/pointer_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fshared_ptr%2Fpointer_cast.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/shared_ptr/pointer_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ostream_joiner/ostream_joiner.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fostream_joiner%2Fostream_joiner.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/ostream_joiner/ostream_joiner` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ostream_joiner/make_ostream_joiner.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fostream_joiner%2Fmake_ostream_joiner.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/ostream_joiner/make_ostream_joiner` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ostream_joiner/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fostream_joiner%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/ostream_joiner/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ostream_joiner/operator_star_.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fostream_joiner%2Foperator_star_.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/ostream_joiner/operator_star_` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/ostream_joiner/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fostream_joiner%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/experimental/lib_extensions_2/ostream_joiner/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/weak_ptr/weak_ptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fweak_ptr%2Fweak_ptr.html&labels=migrate-cppref-page) | `cpp/library/experimental/memory/weak_ptr/weak_ptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/is_simd.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fis_simd.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/is_simd` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/const_where_expression.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fconst_where_expression.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/const_where_expression` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/popcount.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fpopcount.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/popcount` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/clamp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fclamp.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/clamp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/scalar.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fscalar.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/scalar` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/where_expression.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fwhere_expression.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/where_expression` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/deduce.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fdeduce.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/deduce` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/minmax.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fminmax.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/minmax` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/native.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fnative.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/native` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/max_fixed_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fmax_fixed_size.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/max_fixed_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/overaligned.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Foveraligned.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/overaligned` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd_cast.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/memory_alignment.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fmemory_alignment.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/memory_alignment` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/element_aligned.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Felement_aligned.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/element_aligned` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/vector_aligned.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fvector_aligned.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/vector_aligned` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/find_first_set.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Ffind_first_set.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/find_first_set` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/split.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsplit.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/split` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/reduce.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Freduce.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/reduce` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/abi_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fabi_cast.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/abi_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/fixed_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Ffixed_size.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/fixed_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/all_of.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fall_of.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/all_of` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd_mask.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd_mask.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd_mask` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/concat.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fconcat.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/concat` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/compatible.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fcompatible.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/compatible` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd_size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd_size.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd_size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/is_abi_tag.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fis_abi_tag.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/is_abi_tag` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/where.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fwhere.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/where` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/is_simd_flag_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fis_simd_flag_type.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/is_simd_flag_type` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/rebind_simd.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Frebind_simd.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/rebind_simd` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd_mask/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd_mask%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd_mask/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd_mask/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd_mask%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd_mask/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd_mask/copy_to.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd_mask%2Fcopy_to.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd_mask/copy_to` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd_mask/copy_from.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd_mask%2Fcopy_from.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd_mask/copy_from` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd_mask/simd_mask.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd_mask%2Fsimd_mask.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd_mask/simd_mask` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd/operator_at.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd%2Foperator_at.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd/operator_at` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd/operator_mem_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd%2Foperator_mem_arith.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd/operator_mem_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd/size.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd%2Fsize.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd/size` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd/operator_arith.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd%2Foperator_arith.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd/operator_arith` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd/simd.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd%2Fsimd.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd/simd` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd/copy_to.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd%2Fcopy_to.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd/copy_to` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd/operator_compound.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd%2Foperator_compound.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd/operator_compound` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd/copy_from.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd%2Fcopy_from.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd/copy_from` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/experimental/simd/simd/operator_mem_arith2.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fexperimental%2Fsimd%2Fsimd%2Foperator_mem_arith2.html&labels=migrate-cppref-page) | `cpp/library/experimental/parallelism_2/simd/simd/operator_mem_arith2` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/alignas.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Falignas.html&labels=migrate-cppref-page) | `cpp/language/keywords/alignas` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/and.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fand.html&labels=migrate-cppref-page) | `cpp/language/keywords/and` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/compl.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fcompl.html&labels=migrate-cppref-page) | `cpp/language/keywords/compl` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/false.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Ffalse.html&labels=migrate-cppref-page) | `cpp/language/keywords/false` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/signed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fsigned.html&labels=migrate-cppref-page) | `cpp/language/keywords/signed` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/static.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fstatic.html&labels=migrate-cppref-page) | `cpp/language/keywords/static` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/extern.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fextern.html&labels=migrate-cppref-page) | `cpp/language/keywords/extern` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/consteval.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fconsteval.html&labels=migrate-cppref-page) | `cpp/language/keywords/consteval` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/atomic_cancel.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fatomic_cancel.html&labels=migrate-cppref-page) | `cpp/language/keywords/atomic_cancel` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/export.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fexport.html&labels=migrate-cppref-page) | `cpp/language/keywords/export` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/char.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fchar.html&labels=migrate-cppref-page) | `cpp/language/keywords/char` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/protected.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fprotected.html&labels=migrate-cppref-page) | `cpp/language/keywords/protected` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/return.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Freturn.html&labels=migrate-cppref-page) | `cpp/language/keywords/return` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/do.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fdo.html&labels=migrate-cppref-page) | `cpp/language/keywords/do` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/true.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Ftrue.html&labels=migrate-cppref-page) | `cpp/language/keywords/true` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/catch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fcatch.html&labels=migrate-cppref-page) | `cpp/language/keywords/catch` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/delete.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fdelete.html&labels=migrate-cppref-page) | `cpp/language/keywords/delete` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/wchar_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fwchar_t.html&labels=migrate-cppref-page) | `cpp/language/keywords/wchar_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/class.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fclass.html&labels=migrate-cppref-page) | `cpp/language/keywords/class` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/reflexpr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Freflexpr.html&labels=migrate-cppref-page) | `cpp/language/keywords/reflexpr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/and_eq.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fand_eq.html&labels=migrate-cppref-page) | `cpp/language/keywords/and_eq` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/requires.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Frequires.html&labels=migrate-cppref-page) | `cpp/language/keywords/requires` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/default.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fdefault.html&labels=migrate-cppref-page) | `cpp/language/keywords/default` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/alignof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Falignof.html&labels=migrate-cppref-page) | `cpp/language/keywords/alignof` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/namespace.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fnamespace.html&labels=migrate-cppref-page) | `cpp/language/keywords/namespace` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/double.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fdouble.html&labels=migrate-cppref-page) | `cpp/language/keywords/double` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/volatile.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fvolatile.html&labels=migrate-cppref-page) | `cpp/language/keywords/volatile` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/transaction_safe_dynamic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Ftransaction_safe_dynamic.html&labels=migrate-cppref-page) | `cpp/language/keywords/transaction_safe_dynamic` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/char8_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fchar8_t.html&labels=migrate-cppref-page) | `cpp/language/keywords/char8_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/try.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Ftry.html&labels=migrate-cppref-page) | `cpp/language/keywords/try` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/float.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Ffloat.html&labels=migrate-cppref-page) | `cpp/language/keywords/float` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/private.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fprivate.html&labels=migrate-cppref-page) | `cpp/language/keywords/private` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/this.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fthis.html&labels=migrate-cppref-page) | `cpp/language/keywords/this` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/explicit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fexplicit.html&labels=migrate-cppref-page) | `cpp/language/keywords/explicit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/thread_local.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fthread_local.html&labels=migrate-cppref-page) | `cpp/language/keywords/thread_local` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/unsigned.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Funsigned.html&labels=migrate-cppref-page) | `cpp/language/keywords/unsigned` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/xor_eq.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fxor_eq.html&labels=migrate-cppref-page) | `cpp/language/keywords/xor_eq` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/operator.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Foperator.html&labels=migrate-cppref-page) | `cpp/language/keywords/operator` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/switch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fswitch.html&labels=migrate-cppref-page) | `cpp/language/keywords/switch` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/using.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fusing.html&labels=migrate-cppref-page) | `cpp/language/keywords/using` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/new.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fnew.html&labels=migrate-cppref-page) | `cpp/language/keywords/new` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/sizeof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fsizeof.html&labels=migrate-cppref-page) | `cpp/language/keywords/sizeof` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Ffor.html&labels=migrate-cppref-page) | `cpp/language/keywords/for` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/atomic_commit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fatomic_commit.html&labels=migrate-cppref-page) | `cpp/language/keywords/atomic_commit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/const.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fconst.html&labels=migrate-cppref-page) | `cpp/language/keywords/const` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/continue.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fcontinue.html&labels=migrate-cppref-page) | `cpp/language/keywords/continue` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fif.html&labels=migrate-cppref-page) | `cpp/language/keywords/if` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/not.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fnot.html&labels=migrate-cppref-page) | `cpp/language/keywords/not` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/reinterpret_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Freinterpret_cast.html&labels=migrate-cppref-page) | `cpp/language/keywords/reinterpret_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/long.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Flong.html&labels=migrate-cppref-page) | `cpp/language/keywords/long` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/static_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fstatic_cast.html&labels=migrate-cppref-page) | `cpp/language/keywords/static_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/public.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fpublic.html&labels=migrate-cppref-page) | `cpp/language/keywords/public` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/typedef.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Ftypedef.html&labels=migrate-cppref-page) | `cpp/language/keywords/typedef` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/mutable.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fmutable.html&labels=migrate-cppref-page) | `cpp/language/keywords/mutable` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/nullptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fnullptr.html&labels=migrate-cppref-page) | `cpp/language/keywords/nullptr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/throw.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fthrow.html&labels=migrate-cppref-page) | `cpp/language/keywords/throw` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/bitand.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fbitand.html&labels=migrate-cppref-page) | `cpp/language/keywords/bitand` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/friend.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Ffriend.html&labels=migrate-cppref-page) | `cpp/language/keywords/friend` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/static_assert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fstatic_assert.html&labels=migrate-cppref-page) | `cpp/language/keywords/static_assert` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/co_return.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fco_return.html&labels=migrate-cppref-page) | `cpp/language/keywords/co_return` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/template.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Ftemplate.html&labels=migrate-cppref-page) | `cpp/language/keywords/template` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/char16_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fchar16_t.html&labels=migrate-cppref-page) | `cpp/language/keywords/char16_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/else.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Felse.html&labels=migrate-cppref-page) | `cpp/language/keywords/else` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/enum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fenum.html&labels=migrate-cppref-page) | `cpp/language/keywords/enum` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/atomic_noexcept.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fatomic_noexcept.html&labels=migrate-cppref-page) | `cpp/language/keywords/atomic_noexcept` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fvoid.html&labels=migrate-cppref-page) | `cpp/language/keywords/void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/or.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2For.html&labels=migrate-cppref-page) | `cpp/language/keywords/or` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/noexcept.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fnoexcept.html&labels=migrate-cppref-page) | `cpp/language/keywords/noexcept` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/asm.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fasm.html&labels=migrate-cppref-page) | `cpp/language/keywords/asm` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fbool.html&labels=migrate-cppref-page) | `cpp/language/keywords/bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/case.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fcase.html&labels=migrate-cppref-page) | `cpp/language/keywords/case` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/while.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fwhile.html&labels=migrate-cppref-page) | `cpp/language/keywords/while` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/union.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Funion.html&labels=migrate-cppref-page) | `cpp/language/keywords/union` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/dynamic_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fdynamic_cast.html&labels=migrate-cppref-page) | `cpp/language/keywords/dynamic_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/int.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fint.html&labels=migrate-cppref-page) | `cpp/language/keywords/int` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/break.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fbreak.html&labels=migrate-cppref-page) | `cpp/language/keywords/break` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/transaction_safe.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Ftransaction_safe.html&labels=migrate-cppref-page) | `cpp/language/keywords/transaction_safe` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/constexpr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fconstexpr.html&labels=migrate-cppref-page) | `cpp/language/keywords/constexpr` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/co_yield.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fco_yield.html&labels=migrate-cppref-page) | `cpp/language/keywords/co_yield` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/short.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fshort.html&labels=migrate-cppref-page) | `cpp/language/keywords/short` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/struct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fstruct.html&labels=migrate-cppref-page) | `cpp/language/keywords/struct` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/inline.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Finline.html&labels=migrate-cppref-page) | `cpp/language/keywords/inline` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/decltype.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fdecltype.html&labels=migrate-cppref-page) | `cpp/language/keywords/decltype` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/synchronized.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fsynchronized.html&labels=migrate-cppref-page) | `cpp/language/keywords/synchronized` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/register.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fregister.html&labels=migrate-cppref-page) | `cpp/language/keywords/register` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/or_eq.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2For_eq.html&labels=migrate-cppref-page) | `cpp/language/keywords/or_eq` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/typeid.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Ftypeid.html&labels=migrate-cppref-page) | `cpp/language/keywords/typeid` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/co_await.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fco_await.html&labels=migrate-cppref-page) | `cpp/language/keywords/co_await` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/bitor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fbitor.html&labels=migrate-cppref-page) | `cpp/language/keywords/bitor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/char32_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fchar32_t.html&labels=migrate-cppref-page) | `cpp/language/keywords/char32_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/goto.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fgoto.html&labels=migrate-cppref-page) | `cpp/language/keywords/goto` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/const_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fconst_cast.html&labels=migrate-cppref-page) | `cpp/language/keywords/const_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/concept.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fconcept.html&labels=migrate-cppref-page) | `cpp/language/keywords/concept` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/not_eq.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fnot_eq.html&labels=migrate-cppref-page) | `cpp/language/keywords/not_eq` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/xor.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fxor.html&labels=migrate-cppref-page) | `cpp/language/keywords/xor` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/virtual.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fvirtual.html&labels=migrate-cppref-page) | `cpp/language/keywords/virtual` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/constinit.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fconstinit.html&labels=migrate-cppref-page) | `cpp/language/keywords/constinit` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/keyword/auto.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fkeyword%2Fauto.html&labels=migrate-cppref-page) | `cpp/language/keywords/auto` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/bad_typeid.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fbad_typeid.html&labels=migrate-cppref-page) | `cpp/library/utility/types/bad_typeid` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/size_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fsize_t.html&labels=migrate-cppref-page) | `cpp/library/utility/types/size_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/NULL.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2FNULL.html&labels=migrate-cppref-page) | `cpp/library/utility/types/NULL` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/max_align_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fmax_align_t.html&labels=migrate-cppref-page) | `cpp/library/utility/types/max_align_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/byte.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fbyte.html&labels=migrate-cppref-page) | `cpp/library/utility/types/byte` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/type_index.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Ftype_index.html&labels=migrate-cppref-page) | `cpp/library/utility/types/type_index` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/integer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Finteger.html&labels=migrate-cppref-page) | `cpp/library/utility/types/integer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/nullptr_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnullptr_t.html&labels=migrate-cppref-page) | `cpp/library/utility/types/nullptr_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/climits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fclimits.html&labels=migrate-cppref-page) | `cpp/library/utility/types/climits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/bad_cast.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fbad_cast.html&labels=migrate-cppref-page) | `cpp/library/utility/types/bad_cast` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/offsetof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Foffsetof.html&labels=migrate-cppref-page) | `cpp/library/utility/types/offsetof` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/type_info.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Ftype_info.html&labels=migrate-cppref-page) | `cpp/library/utility/types/type_info` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/floating-point.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Ffloating-point.html&labels=migrate-cppref-page) | `cpp/library/utility/types/floating-point` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/ptrdiff_t.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fptrdiff_t.html&labels=migrate-cppref-page) | `cpp/library/utility/types/ptrdiff_t` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/type_info/before.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Ftype_info%2Fbefore.html&labels=migrate-cppref-page) | `cpp/library/utility/types/type_info/before` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/type_info/~type_info.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Ftype_info%2F~type_info.html&labels=migrate-cppref-page) | `cpp/library/utility/types/type_info/~type_info` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/type_info/hash_code.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Ftype_info%2Fhash_code.html&labels=migrate-cppref-page) | `cpp/library/utility/types/type_info/hash_code` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/type_info/name.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Ftype_info%2Fname.html&labels=migrate-cppref-page) | `cpp/library/utility/types/type_info/name` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/type_info/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Ftype_info%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/utility/types/type_info/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/type_index/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Ftype_index%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/utility/types/type_index/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/type_index/hash_code.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Ftype_index%2Fhash_code.html&labels=migrate-cppref-page) | `cpp/library/utility/types/type_index/hash_code` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/type_index/type_index.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Ftype_index%2Ftype_index.html&labels=migrate-cppref-page) | `cpp/library/utility/types/type_index/type_index` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/type_index/name.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Ftype_index%2Fname.html&labels=migrate-cppref-page) | `cpp/library/utility/types/type_index/name` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/type_index/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Ftype_index%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/utility/types/type_index/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/climits/FLT_ROUNDS.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fclimits%2FFLT_ROUNDS.html&labels=migrate-cppref-page) | `cpp/library/utility/types/climits/FLT_ROUNDS` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/climits/FLT_EVAL_METHOD.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fclimits%2FFLT_EVAL_METHOD.html&labels=migrate-cppref-page) | `cpp/library/utility/types/climits/FLT_EVAL_METHOD` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/signaling_NaN.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fsignaling_NaN.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/signaling_NaN` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/radix.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fradix.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/radix` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/min_exponent.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fmin_exponent.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/min_exponent` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/has_denorm_loss.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fhas_denorm_loss.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/has_denorm_loss` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/is_iec559.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fis_iec559.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/is_iec559` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/digits10.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fdigits10.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/digits10` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fmin.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/has_denorm.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fhas_denorm.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/has_denorm` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/traps.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Ftraps.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/traps` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/digits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fdigits.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/digits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/tinyness_before.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Ftinyness_before.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/tinyness_before` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/is_signed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fis_signed.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/is_signed` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/round_error.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fround_error.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/round_error` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/has_infinity.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fhas_infinity.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/has_infinity` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/lowest.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Flowest.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/lowest` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/float_denorm_style.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Ffloat_denorm_style.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/float_denorm_style` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/min_exponent10.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fmin_exponent10.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/min_exponent10` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/is_modulo.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fis_modulo.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/is_modulo` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/infinity.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Finfinity.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/infinity` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/max.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fmax.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/max` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/max_exponent10.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fmax_exponent10.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/max_exponent10` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/round_style.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fround_style.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/round_style` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/has_signaling_NaN.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fhas_signaling_NaN.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/has_signaling_NaN` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/float_round_style.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Ffloat_round_style.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/float_round_style` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/is_integer.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fis_integer.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/is_integer` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/quiet_NaN.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fquiet_NaN.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/quiet_NaN` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/max_digits10.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fmax_digits10.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/max_digits10` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/has_quiet_NaN.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fhas_quiet_NaN.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/has_quiet_NaN` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/denorm_min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fdenorm_min.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/denorm_min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/is_exact.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fis_exact.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/is_exact` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/is_bounded.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fis_bounded.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/is_bounded` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/max_exponent.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fmax_exponent.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/max_exponent` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/is_specialized.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fis_specialized.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/is_specialized` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/types/numeric_limits/epsilon.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Ftypes%2Fnumeric_limits%2Fepsilon.html&labels=migrate-cppref-page) | `cpp/library/utility/types/numeric_limits/epsilon` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/noop_coroutine.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fnoop_coroutine.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/noop_coroutine` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/suspend_never.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fsuspend_never.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/suspend_never` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/coroutine_handle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fcoroutine_handle.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/coroutine_handle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/suspend_always.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fsuspend_always.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/suspend_always` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/noop_coroutine_promise.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fnoop_coroutine_promise.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/noop_coroutine_promise` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/coroutine_traits.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fcoroutine_traits.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/coroutine_traits` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/coroutine_handle/promise.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fcoroutine_handle%2Fpromise.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/coroutine_handle/promise` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/coroutine_handle/resume.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fcoroutine_handle%2Fresume.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/coroutine_handle/resume` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/coroutine_handle/hash.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fcoroutine_handle%2Fhash.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/coroutine_handle/hash` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/coroutine_handle/operator_coroutine_handle_void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fcoroutine_handle%2Foperator_coroutine_handle_void.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/coroutine_handle/operator_coroutine_handle_void` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/coroutine_handle/address.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fcoroutine_handle%2Faddress.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/coroutine_handle/address` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/coroutine_handle/from_promise.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fcoroutine_handle%2Ffrom_promise.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/coroutine_handle/from_promise` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/coroutine_handle/from_address.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fcoroutine_handle%2Ffrom_address.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/coroutine_handle/from_address` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/coroutine_handle/coroutine_handle.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fcoroutine_handle%2Fcoroutine_handle.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/coroutine_handle/coroutine_handle` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/coroutine_handle/operator_cmp.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fcoroutine_handle%2Foperator_cmp.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/coroutine_handle/operator_cmp` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/coroutine_handle/destroy.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fcoroutine_handle%2Fdestroy.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/coroutine_handle/destroy` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/coroutine_handle/operator_bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fcoroutine_handle%2Foperator_bool.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/coroutine_handle/operator_bool` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/coroutine_handle/operator=.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fcoroutine_handle%2Foperator%3D.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/coroutine_handle/operator=` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/coroutine/coroutine_handle/done.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fcoroutine%2Fcoroutine_handle%2Fdone.html&labels=migrate-cppref-page) | `cpp/library/utility/coroutine/coroutine_handle/done` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/operator_q__q_s.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Foperator_q__q_s.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/operator_q__q_s` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/operator_q__q_y.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Foperator_q__q_y.html&labels=migrate-cppref-page) | `cpp/library/chrono/year/operator_q__q_y` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/operator_q__q_min.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Foperator_q__q_min.html&labels=migrate-cppref-page) | `cpp/library/chrono/duration/operator_q__q_min` | +| ❌ | [cppref](http://en.cppreference.com/w/cpp/chrono/operator_q__q_d.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Fchrono%2Foperator_q__q_d.html&labels=migrate-cppref-page) | `cpp/library/chrono/day/operator_q__q_d` | +| ❌ | [cppref](http://en.cppreference.com/w/c/11.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2F11.html&labels=migrate-cppref-page) | `c/language/history/11` | +| ❌ | [cppref](http://en.cppreference.com/w/c/17.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2F17.html&labels=migrate-cppref-page) | `c/language/history/17` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword.html&labels=migrate-cppref-page) | `c/language/keyword` | +| ❌ | [cppref](http://en.cppreference.com/w/c/current_status.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fcurrent_status.html&labels=migrate-cppref-page) | `c/language/history/current_status` | +| ❌ | [cppref](http://en.cppreference.com/w/c/23.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2F23.html&labels=migrate-cppref-page) | `c/language/history/23` | +| ❌ | [cppref](http://en.cppreference.com/w/c/experimental.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fexperimental.html&labels=migrate-cppref-page) | `c/language/experimental` | +| ❌ | [cppref](http://en.cppreference.com/w/c/99.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2F99.html&labels=migrate-cppref-page) | `c/language/history/99` | +| ❌ | [cppref](http://en.cppreference.com/w/c/95.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2F95.html&labels=migrate-cppref-page) | `c/language/history/95` | +| ❌ | [cppref](http://en.cppreference.com/w/c/comment.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fcomment.html&labels=migrate-cppref-page) | `c/language/basic_concepts/comment` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/alignas.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Falignas.html&labels=migrate-cppref-page) | `c/language/declarations/alignas` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/atomic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fatomic.html&labels=migrate-cppref-page) | `c/language/declarations/atomic` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/integer_constant.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Finteger_constant.html&labels=migrate-cppref-page) | `c/language/expressions/integer_constant` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/bool_constant.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fbool_constant.html&labels=migrate-cppref-page) | `c/language/expressions/bool_constant` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/return.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Freturn.html&labels=migrate-cppref-page) | `c/language/statements/return` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/do.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fdo.html&labels=migrate-cppref-page) | `c/language/statements/do` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/types.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Ftypes.html&labels=migrate-cppref-page) | `c/language/basic_concepts/types` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/_Noreturn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2F_Noreturn.html&labels=migrate-cppref-page) | `c/language/functions/_Noreturn` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/identifier.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fidentifier.html&labels=migrate-cppref-page) | `c/language/basic_concepts/identifier` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/scope.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fscope.html&labels=migrate-cppref-page) | `c/language/basic_concepts/scope` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/ascii.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fascii.html&labels=migrate-cppref-page) | `c/language/basic_concepts/ascii` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/variadic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fvariadic.html&labels=migrate-cppref-page) | `c/language/functions/variadic` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/function_declaration.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Ffunction_declaration.html&labels=migrate-cppref-page) | `c/language/functions/function_declaration` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/memory_model.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fmemory_model.html&labels=migrate-cppref-page) | `c/language/basic_concepts/memory_model` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/as_if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fas_if.html&labels=migrate-cppref-page) | `c/language/basic_concepts/as_if` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/compatible_type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fcompatible_type.html&labels=migrate-cppref-page) | `c/language/basic_concepts/compatible_type` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/scalar_initialization.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fscalar_initialization.html&labels=migrate-cppref-page) | `c/language/initialization/scalar_initialization` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/behavior.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fbehavior.html&labels=migrate-cppref-page) | `c/language/basic_concepts/behavior` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/arithmetic_types.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Farithmetic_types.html&labels=migrate-cppref-page) | `c/language/basic_concepts/arithmetic_types` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/charset.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fcharset.html&labels=migrate-cppref-page) | `c/language/basic_concepts/charset` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/translation_phases.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Ftranslation_phases.html&labels=migrate-cppref-page) | `c/language/basic_concepts/translation_phases` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/lifetime.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Flifetime.html&labels=migrate-cppref-page) | `c/language/basic_concepts/lifetime` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/type.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Ftype.html&labels=migrate-cppref-page) | `c/language/basic_concepts/type` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/array_initialization.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Farray_initialization.html&labels=migrate-cppref-page) | `c/language/initialization/array_initialization` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/punctuators.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fpunctuators.html&labels=migrate-cppref-page) | `c/language/basic_concepts/punctuators` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/object.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fobject.html&labels=migrate-cppref-page) | `c/language/basic_concepts/object` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/main_function.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fmain_function.html&labels=migrate-cppref-page) | `c/language/basic_concepts/main_function` | +| ❌ | [cppref](http://en.cppreference.com/w/c/language/name_space.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Flanguage%2Fname_space.html&labels=migrate-cppref-page) | `c/language/basic_concepts/name_space` | +| ❌ | [cppref](http://en.cppreference.com/w/c/experimental/fpext1.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fexperimental%2Ffpext1.html&labels=migrate-cppref-page) | `c/language/experimental/fpext1` | +| ❌ | [cppref](http://en.cppreference.com/w/c/experimental/fpext4.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fexperimental%2Ffpext4.html&labels=migrate-cppref-page) | `c/language/experimental/fpext4` | +| ❌ | [cppref](http://en.cppreference.com/w/c/experimental/dynamic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fexperimental%2Fdynamic.html&labels=migrate-cppref-page) | `c/language/experimental/dynamic` | +| ❌ | [cppref](http://en.cppreference.com/w/c/experimental/dynamic/getline.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fexperimental%2Fdynamic%2Fgetline.html&labels=migrate-cppref-page) | `c/language/experimental/dynamic/getline` | +| ❌ | [cppref](http://en.cppreference.com/w/c/experimental/dynamic/strdup.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fexperimental%2Fdynamic%2Fstrdup.html&labels=migrate-cppref-page) | `c/language/experimental/dynamic/strdup` | +| ❌ | [cppref](http://en.cppreference.com/w/c/experimental/dynamic/strndup.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fexperimental%2Fdynamic%2Fstrndup.html&labels=migrate-cppref-page) | `c/language/experimental/dynamic/strndup` | +| ❌ | [cppref](http://en.cppreference.com/w/c/experimental/dynamic/asprintf.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fexperimental%2Fdynamic%2Fasprintf.html&labels=migrate-cppref-page) | `c/language/experimental/dynamic/asprintf` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/alignas.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Falignas.html&labels=migrate-cppref-page) | `c/language/keyword/alignas` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/false.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Ffalse.html&labels=migrate-cppref-page) | `c/language/keyword/false` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/signed.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fsigned.html&labels=migrate-cppref-page) | `c/language/keyword/signed` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/static.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fstatic.html&labels=migrate-cppref-page) | `c/language/keyword/static` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/extern.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fextern.html&labels=migrate-cppref-page) | `c/language/keyword/extern` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/char.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fchar.html&labels=migrate-cppref-page) | `c/language/keyword/char` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/_Generic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2F_Generic.html&labels=migrate-cppref-page) | `c/language/keyword/_Generic` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/return.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Freturn.html&labels=migrate-cppref-page) | `c/language/keyword/return` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/do.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fdo.html&labels=migrate-cppref-page) | `c/language/keyword/do` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/true.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Ftrue.html&labels=migrate-cppref-page) | `c/language/keyword/true` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/_Noreturn.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2F_Noreturn.html&labels=migrate-cppref-page) | `c/language/keyword/_Noreturn` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/_Atomic.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2F_Atomic.html&labels=migrate-cppref-page) | `c/language/keyword/_Atomic` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/default.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fdefault.html&labels=migrate-cppref-page) | `c/language/keyword/default` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/alignof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Falignof.html&labels=migrate-cppref-page) | `c/language/keyword/alignof` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/double.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fdouble.html&labels=migrate-cppref-page) | `c/language/keyword/double` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/volatile.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fvolatile.html&labels=migrate-cppref-page) | `c/language/keyword/volatile` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/fortran.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Ffortran.html&labels=migrate-cppref-page) | `c/language/keyword/fortran` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/_Decimal128.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2F_Decimal128.html&labels=migrate-cppref-page) | `c/language/keyword/_Decimal128` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/_Static_assert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2F_Static_assert.html&labels=migrate-cppref-page) | `c/language/keyword/_Static_assert` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/_Bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2F_Bool.html&labels=migrate-cppref-page) | `c/language/keyword/_Bool` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/float.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Ffloat.html&labels=migrate-cppref-page) | `c/language/keyword/float` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/thread_local.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fthread_local.html&labels=migrate-cppref-page) | `c/language/keyword/thread_local` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/unsigned.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Funsigned.html&labels=migrate-cppref-page) | `c/language/keyword/unsigned` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/switch.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fswitch.html&labels=migrate-cppref-page) | `c/language/keyword/switch` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/sizeof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fsizeof.html&labels=migrate-cppref-page) | `c/language/keyword/sizeof` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/restrict.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Frestrict.html&labels=migrate-cppref-page) | `c/language/keyword/restrict` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/for.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Ffor.html&labels=migrate-cppref-page) | `c/language/keyword/for` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/_Complex.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2F_Complex.html&labels=migrate-cppref-page) | `c/language/keyword/_Complex` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/const.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fconst.html&labels=migrate-cppref-page) | `c/language/keyword/const` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/continue.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fcontinue.html&labels=migrate-cppref-page) | `c/language/keyword/continue` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/if.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fif.html&labels=migrate-cppref-page) | `c/language/keyword/if` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/long.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Flong.html&labels=migrate-cppref-page) | `c/language/keyword/long` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/typedef.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Ftypedef.html&labels=migrate-cppref-page) | `c/language/keyword/typedef` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/nullptr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fnullptr.html&labels=migrate-cppref-page) | `c/language/keyword/nullptr` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/_Alignof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2F_Alignof.html&labels=migrate-cppref-page) | `c/language/keyword/_Alignof` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/static_assert.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fstatic_assert.html&labels=migrate-cppref-page) | `c/language/keyword/static_assert` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/else.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Felse.html&labels=migrate-cppref-page) | `c/language/keyword/else` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/_Imaginary.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2F_Imaginary.html&labels=migrate-cppref-page) | `c/language/keyword/_Imaginary` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/enum.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fenum.html&labels=migrate-cppref-page) | `c/language/keyword/enum` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/void.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fvoid.html&labels=migrate-cppref-page) | `c/language/keyword/void` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/bool.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fbool.html&labels=migrate-cppref-page) | `c/language/keyword/bool` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/case.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fcase.html&labels=migrate-cppref-page) | `c/language/keyword/case` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/typeof.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Ftypeof.html&labels=migrate-cppref-page) | `c/language/keyword/typeof` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/while.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fwhile.html&labels=migrate-cppref-page) | `c/language/keyword/while` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/union.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Funion.html&labels=migrate-cppref-page) | `c/language/keyword/union` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/_Decimal32.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2F_Decimal32.html&labels=migrate-cppref-page) | `c/language/keyword/_Decimal32` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/int.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fint.html&labels=migrate-cppref-page) | `c/language/keyword/int` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/break.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fbreak.html&labels=migrate-cppref-page) | `c/language/keyword/break` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/_Thread_local.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2F_Thread_local.html&labels=migrate-cppref-page) | `c/language/keyword/_Thread_local` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/constexpr.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fconstexpr.html&labels=migrate-cppref-page) | `c/language/keyword/constexpr` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/_Alignas.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2F_Alignas.html&labels=migrate-cppref-page) | `c/language/keyword/_Alignas` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/short.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fshort.html&labels=migrate-cppref-page) | `c/language/keyword/short` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/typeof_unqual.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Ftypeof_unqual.html&labels=migrate-cppref-page) | `c/language/keyword/typeof_unqual` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/struct.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fstruct.html&labels=migrate-cppref-page) | `c/language/keyword/struct` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/inline.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Finline.html&labels=migrate-cppref-page) | `c/language/keyword/inline` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/register.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fregister.html&labels=migrate-cppref-page) | `c/language/keyword/register` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/_Decimal64.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2F_Decimal64.html&labels=migrate-cppref-page) | `c/language/keyword/_Decimal64` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/goto.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fgoto.html&labels=migrate-cppref-page) | `c/language/keyword/goto` | +| ❌ | [cppref](http://en.cppreference.com/w/c/keyword/auto.html) | [create](https://github.com/cppdoc-cc/cppdoc/issues/new?title=http%3A%2F%2Fen.cppreference.com%2Fw%2Fc%2Fkeyword%2Fauto.html&labels=migrate-cppref-page) | `c/language/keyword/auto` | \ No newline at end of file diff --git a/LICENSE.CC-BY-SA-4.0 b/LICENSE.CC-BY-SA-4.0 new file mode 100644 index 00000000..2d58298e --- /dev/null +++ b/LICENSE.CC-BY-SA-4.0 @@ -0,0 +1,428 @@ +Attribution-ShareAlike 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution-ShareAlike 4.0 International Public +License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution-ShareAlike 4.0 International Public License ("Public +License"). To the extent this Public License may be interpreted as a +contract, You are granted the Licensed Rights in consideration of Your +acceptance of these terms and conditions, and the Licensor grants You +such rights in consideration of benefits the Licensor receives from +making the Licensed Material available under these terms and +conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. BY-SA Compatible License means a license listed at + creativecommons.org/compatiblelicenses, approved by Creative + Commons as essentially the equivalent of this Public License. + + d. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + e. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + f. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + g. License Elements means the license attributes listed in the name + of a Creative Commons Public License. The License Elements of this + Public License are Attribution and ShareAlike. + + h. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + i. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + j. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + k. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + l. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + m. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. Additional offer from the Licensor -- Adapted Material. + Every recipient of Adapted Material from You + automatically receives an offer from the Licensor to + exercise the Licensed Rights in the Adapted Material + under the conditions of the Adapter's License You apply. + + c. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + b. ShareAlike. + + In addition to the conditions in Section 3(a), if You Share + Adapted Material You produce, the following conditions also apply. + + 1. The Adapter's License You apply must be a Creative Commons + license with the same License Elements, this version or + later, or a BY-SA Compatible License. + + 2. You must include the text of, or the URI or hyperlink to, the + Adapter's License You apply. You may satisfy this condition + in any reasonable manner based on the medium, means, and + context in which You Share Adapted Material. + + 3. You may not offer or impose any additional or different terms + or conditions on, or apply any Effective Technological + Measures to, Adapted Material that restrict exercise of the + rights granted under the Adapter's License You apply. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material, + including for purposes of Section 3(b); and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. + diff --git a/LICENSE.GFDL b/LICENSE.GFDL new file mode 100644 index 00000000..857214dd --- /dev/null +++ b/LICENSE.GFDL @@ -0,0 +1,451 @@ + + GNU Free Documentation License + Version 1.3, 3 November 2008 + + + Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. + + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +0. PREAMBLE + +The purpose of this License is to make a manual, textbook, or other +functional and useful document "free" in the sense of freedom: to +assure everyone the effective freedom to copy and redistribute it, +with or without modifying it, either commercially or noncommercially. +Secondarily, this License preserves for the author and publisher a way +to get credit for their work, while not being considered responsible +for modifications made by others. + +This License is a kind of "copyleft", which means that derivative +works of the document must themselves be free in the same sense. It +complements the GNU General Public License, which is a copyleft +license designed for free software. + +We have designed this License in order to use it for manuals for free +software, because free software needs free documentation: a free +program should come with manuals providing the same freedoms that the +software does. But this License is not limited to software manuals; +it can be used for any textual work, regardless of subject matter or +whether it is published as a printed book. We recommend this License +principally for works whose purpose is instruction or reference. + + +1. APPLICABILITY AND DEFINITIONS + +This License applies to any manual or other work, in any medium, that +contains a notice placed by the copyright holder saying it can be +distributed under the terms of this License. Such a notice grants a +world-wide, royalty-free license, unlimited in duration, to use that +work under the conditions stated herein. The "Document", below, +refers to any such manual or work. Any member of the public is a +licensee, and is addressed as "you". You accept the license if you +copy, modify or distribute the work in a way requiring permission +under copyright law. + +A "Modified Version" of the Document means any work containing the +Document or a portion of it, either copied verbatim, or with +modifications and/or translated into another language. + +A "Secondary Section" is a named appendix or a front-matter section of +the Document that deals exclusively with the relationship of the +publishers or authors of the Document to the Document's overall +subject (or to related matters) and contains nothing that could fall +directly within that overall subject. (Thus, if the Document is in +part a textbook of mathematics, a Secondary Section may not explain +any mathematics.) The relationship could be a matter of historical +connection with the subject or with related matters, or of legal, +commercial, philosophical, ethical or political position regarding +them. + +The "Invariant Sections" are certain Secondary Sections whose titles +are designated, as being those of Invariant Sections, in the notice +that says that the Document is released under this License. If a +section does not fit the above definition of Secondary then it is not +allowed to be designated as Invariant. The Document may contain zero +Invariant Sections. If the Document does not identify any Invariant +Sections then there are none. + +The "Cover Texts" are certain short passages of text that are listed, +as Front-Cover Texts or Back-Cover Texts, in the notice that says that +the Document is released under this License. A Front-Cover Text may +be at most 5 words, and a Back-Cover Text may be at most 25 words. + +A "Transparent" copy of the Document means a machine-readable copy, +represented in a format whose specification is available to the +general public, that is suitable for revising the document +straightforwardly with generic text editors or (for images composed of +pixels) generic paint programs or (for drawings) some widely available +drawing editor, and that is suitable for input to text formatters or +for automatic translation to a variety of formats suitable for input +to text formatters. A copy made in an otherwise Transparent file +format whose markup, or absence of markup, has been arranged to thwart +or discourage subsequent modification by readers is not Transparent. +An image format is not Transparent if used for any substantial amount +of text. A copy that is not "Transparent" is called "Opaque". + +Examples of suitable formats for Transparent copies include plain +ASCII without markup, Texinfo input format, LaTeX input format, SGML +or XML using a publicly available DTD, and standard-conforming simple +HTML, PostScript or PDF designed for human modification. Examples of +transparent image formats include PNG, XCF and JPG. Opaque formats +include proprietary formats that can be read and edited only by +proprietary word processors, SGML or XML for which the DTD and/or +processing tools are not generally available, and the +machine-generated HTML, PostScript or PDF produced by some word +processors for output purposes only. + +The "Title Page" means, for a printed book, the title page itself, +plus such following pages as are needed to hold, legibly, the material +this License requires to appear in the title page. For works in +formats which do not have any title page as such, "Title Page" means +the text near the most prominent appearance of the work's title, +preceding the beginning of the body of the text. + +The "publisher" means any person or entity that distributes copies of +the Document to the public. + +A section "Entitled XYZ" means a named subunit of the Document whose +title either is precisely XYZ or contains XYZ in parentheses following +text that translates XYZ in another language. (Here XYZ stands for a +specific section name mentioned below, such as "Acknowledgements", +"Dedications", "Endorsements", or "History".) To "Preserve the Title" +of such a section when you modify the Document means that it remains a +section "Entitled XYZ" according to this definition. + +The Document may include Warranty Disclaimers next to the notice which +states that this License applies to the Document. These Warranty +Disclaimers are considered to be included by reference in this +License, but only as regards disclaiming warranties: any other +implication that these Warranty Disclaimers may have is void and has +no effect on the meaning of this License. + +2. VERBATIM COPYING + +You may copy and distribute the Document in any medium, either +commercially or noncommercially, provided that this License, the +copyright notices, and the license notice saying this License applies +to the Document are reproduced in all copies, and that you add no +other conditions whatsoever to those of this License. You may not use +technical measures to obstruct or control the reading or further +copying of the copies you make or distribute. However, you may accept +compensation in exchange for copies. If you distribute a large enough +number of copies you must also follow the conditions in section 3. + +You may also lend copies, under the same conditions stated above, and +you may publicly display copies. + + +3. COPYING IN QUANTITY + +If you publish printed copies (or copies in media that commonly have +printed covers) of the Document, numbering more than 100, and the +Document's license notice requires Cover Texts, you must enclose the +copies in covers that carry, clearly and legibly, all these Cover +Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on +the back cover. Both covers must also clearly and legibly identify +you as the publisher of these copies. The front cover must present +the full title with all words of the title equally prominent and +visible. You may add other material on the covers in addition. +Copying with changes limited to the covers, as long as they preserve +the title of the Document and satisfy these conditions, can be treated +as verbatim copying in other respects. + +If the required texts for either cover are too voluminous to fit +legibly, you should put the first ones listed (as many as fit +reasonably) on the actual cover, and continue the rest onto adjacent +pages. + +If you publish or distribute Opaque copies of the Document numbering +more than 100, you must either include a machine-readable Transparent +copy along with each Opaque copy, or state in or with each Opaque copy +a computer-network location from which the general network-using +public has access to download using public-standard network protocols +a complete Transparent copy of the Document, free of added material. +If you use the latter option, you must take reasonably prudent steps, +when you begin distribution of Opaque copies in quantity, to ensure +that this Transparent copy will remain thus accessible at the stated +location until at least one year after the last time you distribute an +Opaque copy (directly or through your agents or retailers) of that +edition to the public. + +It is requested, but not required, that you contact the authors of the +Document well before redistributing any large number of copies, to +give them a chance to provide you with an updated version of the +Document. + + +4. MODIFICATIONS + +You may copy and distribute a Modified Version of the Document under +the conditions of sections 2 and 3 above, provided that you release +the Modified Version under precisely this License, with the Modified +Version filling the role of the Document, thus licensing distribution +and modification of the Modified Version to whoever possesses a copy +of it. In addition, you must do these things in the Modified Version: + +A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission. +B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has fewer than five), + unless they release you from this requirement. +C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. +D. Preserve all the copyright notices of the Document. +E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. +F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below. +G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. +H. Include an unaltered copy of this License. +I. Preserve the section Entitled "History", Preserve its Title, and add + to it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section Entitled "History" in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence. +J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the "History" section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission. +K. For any section Entitled "Acknowledgements" or "Dedications", + Preserve the Title of the section, and preserve in the section all + the substance and tone of each of the contributor acknowledgements + and/or dedications given therein. +L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. +M. Delete any section Entitled "Endorsements". Such a section + may not be included in the Modified Version. +N. Do not retitle any existing section to be Entitled "Endorsements" + or to conflict in title with any Invariant Section. +O. Preserve any Warranty Disclaimers. + +If the Modified Version includes new front-matter sections or +appendices that qualify as Secondary Sections and contain no material +copied from the Document, you may at your option designate some or all +of these sections as invariant. To do this, add their titles to the +list of Invariant Sections in the Modified Version's license notice. +These titles must be distinct from any other section titles. + +You may add a section Entitled "Endorsements", provided it contains +nothing but endorsements of your Modified Version by various +parties--for example, statements of peer review or that the text has +been approved by an organization as the authoritative definition of a +standard. + +You may add a passage of up to five words as a Front-Cover Text, and a +passage of up to 25 words as a Back-Cover Text, to the end of the list +of Cover Texts in the Modified Version. Only one passage of +Front-Cover Text and one of Back-Cover Text may be added by (or +through arrangements made by) any one entity. If the Document already +includes a cover text for the same cover, previously added by you or +by arrangement made by the same entity you are acting on behalf of, +you may not add another; but you may replace the old one, on explicit +permission from the previous publisher that added the old one. + +The author(s) and publisher(s) of the Document do not by this License +give permission to use their names for publicity for or to assert or +imply endorsement of any Modified Version. + + +5. COMBINING DOCUMENTS + +You may combine the Document with other documents released under this +License, under the terms defined in section 4 above for modified +versions, provided that you include in the combination all of the +Invariant Sections of all of the original documents, unmodified, and +list them all as Invariant Sections of your combined work in its +license notice, and that you preserve all their Warranty Disclaimers. + +The combined work need only contain one copy of this License, and +multiple identical Invariant Sections may be replaced with a single +copy. If there are multiple Invariant Sections with the same name but +different contents, make the title of each such section unique by +adding at the end of it, in parentheses, the name of the original +author or publisher of that section if known, or else a unique number. +Make the same adjustment to the section titles in the list of +Invariant Sections in the license notice of the combined work. + +In the combination, you must combine any sections Entitled "History" +in the various original documents, forming one section Entitled +"History"; likewise combine any sections Entitled "Acknowledgements", +and any sections Entitled "Dedications". You must delete all sections +Entitled "Endorsements". + + +6. COLLECTIONS OF DOCUMENTS + +You may make a collection consisting of the Document and other +documents released under this License, and replace the individual +copies of this License in the various documents with a single copy +that is included in the collection, provided that you follow the rules +of this License for verbatim copying of each of the documents in all +other respects. + +You may extract a single document from such a collection, and +distribute it individually under this License, provided you insert a +copy of this License into the extracted document, and follow this +License in all other respects regarding verbatim copying of that +document. + + +7. AGGREGATION WITH INDEPENDENT WORKS + +A compilation of the Document or its derivatives with other separate +and independent documents or works, in or on a volume of a storage or +distribution medium, is called an "aggregate" if the copyright +resulting from the compilation is not used to limit the legal rights +of the compilation's users beyond what the individual works permit. +When the Document is included in an aggregate, this License does not +apply to the other works in the aggregate which are not themselves +derivative works of the Document. + +If the Cover Text requirement of section 3 is applicable to these +copies of the Document, then if the Document is less than one half of +the entire aggregate, the Document's Cover Texts may be placed on +covers that bracket the Document within the aggregate, or the +electronic equivalent of covers if the Document is in electronic form. +Otherwise they must appear on printed covers that bracket the whole +aggregate. + + +8. TRANSLATION + +Translation is considered a kind of modification, so you may +distribute translations of the Document under the terms of section 4. +Replacing Invariant Sections with translations requires special +permission from their copyright holders, but you may include +translations of some or all Invariant Sections in addition to the +original versions of these Invariant Sections. You may include a +translation of this License, and all the license notices in the +Document, and any Warranty Disclaimers, provided that you also include +the original English version of this License and the original versions +of those notices and disclaimers. In case of a disagreement between +the translation and the original version of this License or a notice +or disclaimer, the original version will prevail. + +If a section in the Document is Entitled "Acknowledgements", +"Dedications", or "History", the requirement (section 4) to Preserve +its Title (section 1) will typically require changing the actual +title. + + +9. TERMINATION + +You may not copy, modify, sublicense, or distribute the Document +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense, or distribute it is void, and +will automatically terminate your rights under this License. + +However, if you cease all violation of this License, then your license +from a particular copyright holder is reinstated (a) provisionally, +unless and until the copyright holder explicitly and finally +terminates your license, and (b) permanently, if the copyright holder +fails to notify you of the violation by some reasonable means prior to +60 days after the cessation. + +Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + +Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, receipt of a copy of some or all of the same material does +not give you any rights to use it. + + +10. FUTURE REVISIONS OF THIS LICENSE + +The Free Software Foundation may publish new, revised versions of the +GNU Free Documentation License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in +detail to address new problems or concerns. See +https://www.gnu.org/licenses/. + +Each version of the License is given a distinguishing version number. +If the Document specifies that a particular numbered version of this +License "or any later version" applies to it, you have the option of +following the terms and conditions either of that specified version or +of any later version that has been published (not as a draft) by the +Free Software Foundation. If the Document does not specify a version +number of this License, you may choose any version ever published (not +as a draft) by the Free Software Foundation. If the Document +specifies that a proxy can decide which future versions of this +License can be used, that proxy's public statement of acceptance of a +version permanently authorizes you to choose that version for the +Document. + +11. RELICENSING + +"Massive Multiauthor Collaboration Site" (or "MMC Site") means any +World Wide Web server that publishes copyrightable works and also +provides prominent facilities for anybody to edit those works. A +public wiki that anybody can edit is an example of such a server. A +"Massive Multiauthor Collaboration" (or "MMC") contained in the site +means any set of copyrightable works thus published on the MMC site. + +"CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0 +license published by Creative Commons Corporation, a not-for-profit +corporation with a principal place of business in San Francisco, +California, as well as future copyleft versions of that license +published by that same organization. + +"Incorporate" means to publish or republish a Document, in whole or in +part, as part of another Document. + +An MMC is "eligible for relicensing" if it is licensed under this +License, and if all works that were first published under this License +somewhere other than this MMC, and subsequently incorporated in whole or +in part into the MMC, (1) had no cover texts or invariant sections, and +(2) were thus incorporated prior to November 1, 2008. + +The operator of an MMC Site may republish an MMC contained in the site +under CC-BY-SA on the same site at any time before August 1, 2009, +provided the MMC is eligible for relicensing. + + +ADDENDUM: How to use this License for your documents + +To use this License in a document you have written, include a copy of +the License in the document and put the following copyright and +license notices just after the title page: + + Copyright (c) YEAR YOUR NAME. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.3 + or any later version published by the Free Software Foundation; + with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + +If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, +replace the "with...Texts." line with this: + + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + +If you have Invariant Sections without Cover Texts, or some other +combination of the three, merge those two alternatives to suit the +situation. + +If your document contains nontrivial examples of program code, we +recommend releasing these examples in parallel under your choice of +free software license, such as the GNU General Public License, +to permit their use in free software. diff --git a/LICENSE.MIT b/LICENSE.MIT new file mode 100644 index 00000000..e1a7a9c7 --- /dev/null +++ b/LICENSE.MIT @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 CppDoc authors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 00000000..6cca45b2 --- /dev/null +++ b/README.md @@ -0,0 +1,43 @@ +# CppDoc + +An open documentation for the C/C++ programming languages and their standard libraries. + +> [!TIP] +> Currently CppDoc community members are working hard on migrating [cppreference](https://en.cppreference.com/index.html) pages to CppDoc. You’re more than welcomed to join us if you want to help! + + + Discord server + + + Telegram group + + +## Quick Start + +Clone the project to your local: + +```bash +git clone https://github.com/cppdoc-cc/cppdoc.git +cd cppdoc +``` + +Start a development server: + +```bash +npm i +npm run dev +``` + +## Contributing + +CppDoc is an open documentation. Everyone is more than welcomed to contibute! Any kinds of contribution are greatly appreciated, including _but not limited_ to bug reports, bug fixes, feature requests, translations, new pages, and new documentation features. + +You can report a bug or request a new feature by [opening a new GitHub issue](https://github.com/cppdoc-cc/cppdoc/issues/new). + +If you have made some changes, you can [open a new GitHub pull request](https://github.com/cppdoc-cc/cppdoc/compare). + +For more information on contributing to CppDoc, please refer to our [contribution guide](./CONTRIBUTING.md). + +## License + +The content of the documentation is licensed under the [Creative Commons Attribution-ShareAlike 4.0 International license](./LICENSE.CC-BY-SA-4.0) and the [GNU Free Documentation License](./LICENSE.GFDL). The underlying source code used to process, format, and display that content is licensed under the [MIT license](./LICENSE.MIT). diff --git a/astro.config.mjs b/astro.config.mjs new file mode 100644 index 00000000..103fef52 --- /dev/null +++ b/astro.config.mjs @@ -0,0 +1,67 @@ +// @ts-check +import process from "process"; +import { defineConfig } from "astro/config"; +import starlight from "@astrojs/starlight"; +import starlightUtils from "@lorenzo_lewis/starlight-utils"; +import starlightAutoSidebar from "starlight-auto-sidebar"; +import starlightHeadingBadges from "starlight-heading-badges"; + +// https://astro.build/config +export default defineConfig({ + site: process.env.CPPDOC_SITE, + base: process.env.CPPDOC_BASE, + trailingSlash: "never", + integrations: [ + starlight({ + title: "CppDoc", + social: [ + { + icon: "github", + label: "GitHub", + href: "https://github.com/cppdoc-cc/cppdoc", + }, + ], + sidebar: [ + { + label: "C++ Language Reference", + autogenerate: { directory: "cpp/language" }, + }, + { + label: "C++ Library Reference", + autogenerate: { directory: "cpp/library" }, + }, + { + label: "C Language Reference", + autogenerate: { directory: "c/language" }, + }, + { + label: "C Library Reference", + autogenerate: { directory: "c/library" }, + }, + { + label: "CppDoc Development Guide", + autogenerate: { directory: "development" }, + }, + ], + locales: { + root: { + label: "English", + lang: "en", + }, + }, + components: { + TableOfContents: "./src/components/starlight/TableOfContents.astro", + }, + plugins: [ + starlightAutoSidebar(), + starlightHeadingBadges(), + starlightUtils({ + multiSidebar: { + switcherStyle: "dropdown", + }, + }), + ], + customCss: ["./src/styles/custom.css"], + }), + ], +}); diff --git a/ec.config.mjs b/ec.config.mjs new file mode 100644 index 00000000..c03eb5af --- /dev/null +++ b/ec.config.mjs @@ -0,0 +1,7 @@ +// @ts-check +import { pluginCxxMark } from "./src/plugins/expressive-code/cxx-mark.ts"; + +/** @type {import('@astrojs/starlight/expressive-code').StarlightExpressiveCodeOptions} */ +export default { + plugins: [pluginCxxMark()], +}; diff --git a/migrate/PROMPT.md b/migrate/PROMPT.md new file mode 100644 index 00000000..bd7747a1 --- /dev/null +++ b/migrate/PROMPT.md @@ -0,0 +1,18 @@ +You are a professional C++ documentation writer. You are now migrating cppreference.com documentation from HTML format to MDX format. During this process, you must adhere to the following rules: +1. Only migrate the format, ensuring that the text of the migrated result is **exactly the same** as the original. Of course, you don't need to process text that was originally invisible. +2. Do not try to write your own component. Do not try to write your own component. Do not try to write your own component. DO NOT USE NORMAL HTML ELEMENTS. DO NOT USE , + + + + + + diff --git a/src/components/feature-test-macro/index.ts b/src/components/feature-test-macro/index.ts new file mode 100644 index 00000000..30b98f4a --- /dev/null +++ b/src/components/feature-test-macro/index.ts @@ -0,0 +1,2 @@ +export { default as FeatureTestMacro } from "./FeatureTestMacro.astro"; +export { default as FeatureTestMacroValue } from "./FeatureTestMacroValue.astro"; diff --git a/src/components/header/CHeader.astro b/src/components/header/CHeader.astro new file mode 100644 index 00000000..3ebd2bc0 --- /dev/null +++ b/src/components/header/CHeader.astro @@ -0,0 +1,8 @@ +--- +import Header from "./Header.astro"; +import type { Props as HeaderProps } from "./Header.astro"; + +type Props = Omit; +--- + +
diff --git a/src/components/header/CppHeader.astro b/src/components/header/CppHeader.astro new file mode 100644 index 00000000..13750763 --- /dev/null +++ b/src/components/header/CppHeader.astro @@ -0,0 +1,8 @@ +--- +import Header from "./Header.astro"; +import type { Props as HeaderProps } from "./Header.astro"; + +type Props = Omit; +--- + +
diff --git a/src/components/header/Header.astro b/src/components/header/Header.astro new file mode 100644 index 00000000..23bbe207 --- /dev/null +++ b/src/components/header/Header.astro @@ -0,0 +1,34 @@ +--- +import type { Language } from "@src/types"; +import DocLink from "../DocLink.astro"; + +export interface Props { + lang: Language; + name: string; + displayName?: string; + nolink?: boolean; +} + +const { lang, name, displayName, nolink } = Astro.props; +const langPrefix = lang == "C" ? "/c" : "/cpp"; +const src = `${langPrefix}/library/headers/${name}`; + +const extension = lang === "C" ? ".h" : ""; +const text = displayName ?? `<${name}${extension}>`; + +const As = nolink ? Fragment : DocLink; +const asProps = nolink ? {} : { src }; +--- + + + {text} + + + diff --git a/src/components/header/index.ts b/src/components/header/index.ts new file mode 100644 index 00000000..82cb85da --- /dev/null +++ b/src/components/header/index.ts @@ -0,0 +1,3 @@ +export { default as CHeader } from "./CHeader.astro"; +export { default as CppHeader } from "./CppHeader.astro"; +export { default as Header } from "./Header.astro"; diff --git a/src/components/index.ts b/src/components/index.ts new file mode 100644 index 00000000..8fddb908 --- /dev/null +++ b/src/components/index.ts @@ -0,0 +1,39 @@ +import Behavior from "@components/Behavior.astro"; +import { Decl, DeclDoc } from "@components/decl-doc"; +import { DescList, Desc } from "@components/desc-list"; +import NamedReq from "@components/NamedReq.astro"; +import { ParamDocList, ParamDoc } from "@components/param-doc"; +import DocLink from "@components/DocLink.astro"; +import { CHeader, CppHeader } from "@components/header"; +import { + FeatureTestMacro, + FeatureTestMacroValue, +} from "@components/feature-test-macro"; +import { DR, DRList } from "@components/defect-report"; +import { Revision, RevisionBlock } from "@components/revision"; +import AutoCollapse from "@components/AutoCollapse.astro"; +import FlexTable from "@components/FlexTable.astro"; +import WG21PaperLink from "@components/WG21PaperLink.astro"; + +export { + Behavior, + Decl, + DeclDoc, + DescList, + Desc, + NamedReq, + ParamDocList, + ParamDoc, + DocLink, + CHeader, + CppHeader, + FeatureTestMacro, + FeatureTestMacroValue, + DR, + DRList, + Revision, + RevisionBlock, + AutoCollapse, + FlexTable, + WG21PaperLink, +}; diff --git a/src/components/param-doc/ParamDoc.astro b/src/components/param-doc/ParamDoc.astro new file mode 100644 index 00000000..132173da --- /dev/null +++ b/src/components/param-doc/ParamDoc.astro @@ -0,0 +1,19 @@ +--- +interface Props { + name: string; +} + +const { name } = Astro.props; +--- + +
{name}
+
-
+
+ +
+ + diff --git a/src/components/param-doc/ParamDocList.astro b/src/components/param-doc/ParamDocList.astro new file mode 100644 index 00000000..1d4cc293 --- /dev/null +++ b/src/components/param-doc/ParamDocList.astro @@ -0,0 +1,16 @@ +--- + +--- + +
+ +
+ + diff --git a/src/components/param-doc/index.ts b/src/components/param-doc/index.ts new file mode 100644 index 00000000..ef5ed0d9 --- /dev/null +++ b/src/components/param-doc/index.ts @@ -0,0 +1,2 @@ +export { default as ParamDoc } from "./ParamDoc.astro"; +export { default as ParamDocList } from "./ParamDocList.astro"; diff --git a/src/components/revision/Revision.astro b/src/components/revision/Revision.astro new file mode 100644 index 00000000..1aba167d --- /dev/null +++ b/src/components/revision/Revision.astro @@ -0,0 +1,29 @@ +--- +import RevisionTags from "./RevisionTags.astro"; +import { autoRev } from "./autorev"; +import type { RevisionInfo } from "./types"; + +interface Props extends RevisionInfo { + noborder?: boolean; +} + +const { noborder, since, until } = Astro.props; +--- + + + + + + + + + diff --git a/src/components/revision/RevisionBlock.astro b/src/components/revision/RevisionBlock.astro new file mode 100644 index 00000000..8b1e0737 --- /dev/null +++ b/src/components/revision/RevisionBlock.astro @@ -0,0 +1,66 @@ +--- +import RevisionTags from "./RevisionTags.astro"; +import { autoRev } from "."; +import type { RevisionInfo } from "./types"; + +interface Props extends RevisionInfo { + noborder?: boolean; + vertical?: boolean; +} + +const { since, until, noborder } = Astro.props; +const vertical = Astro.props.vertical ?? false; +const horizontal = !vertical; +--- + +
+
+ +
+
+ +
+
+ + diff --git a/src/components/revision/RevisionSelector.astro b/src/components/revision/RevisionSelector.astro new file mode 100644 index 00000000..fad15260 --- /dev/null +++ b/src/components/revision/RevisionSelector.astro @@ -0,0 +1,82 @@ +--- +import type { CxxRevision } from "@src/types"; + +interface Props { + revisions: CxxRevision[]; +} + +const { revisions } = Astro.props; +--- + + + + + + + + diff --git a/src/components/revision/RevisionTags.astro b/src/components/revision/RevisionTags.astro new file mode 100644 index 00000000..08b77c04 --- /dev/null +++ b/src/components/revision/RevisionTags.astro @@ -0,0 +1,25 @@ +--- +import type { RevisionInfo } from "@src/components/revision/types"; + +interface Props extends RevisionInfo { + as: string; +} + +const { since, traits, until, removed } = Astro.props as Props; +const As = Astro.props.as; +--- + +{since && (since {since})} +{traits?.map(({ trait, since }) => ( + ({trait} in {since}) +))} +{until && (until {until})} +{removed && (removed in {removed})} + + diff --git a/src/components/revision/autorev.ts b/src/components/revision/autorev.ts new file mode 100644 index 00000000..28a37d56 --- /dev/null +++ b/src/components/revision/autorev.ts @@ -0,0 +1,18 @@ +import type { CxxRevision } from "@src/types"; + +interface HTMLAutoRevisionAttributes { + "data-autorev-since"?: CxxRevision; + "data-autorev-until"?: CxxRevision; +} + +export interface AutorevProps { + autorevSince?: CxxRevision; + autorevUntil?: CxxRevision; +} + +export function autoRev(props: AutorevProps): HTMLAutoRevisionAttributes { + return { + "data-autorev-since": props.autorevSince, + "data-autorev-until": props.autorevUntil, + }; +} diff --git a/src/components/revision/index.ts b/src/components/revision/index.ts new file mode 100644 index 00000000..2d3349a9 --- /dev/null +++ b/src/components/revision/index.ts @@ -0,0 +1,5 @@ +export { default as Revision } from "./Revision.astro"; +export { default as RevisionBlock } from "./RevisionBlock.astro"; +export { default as RevisionTags } from "./RevisionTags.astro"; +export { autoRev, type AutorevProps } from "./autorev"; +export type { RevisionInfo, RevisionTrait } from "./types"; diff --git a/src/components/revision/store.ts b/src/components/revision/store.ts new file mode 100644 index 00000000..f609e2c5 --- /dev/null +++ b/src/components/revision/store.ts @@ -0,0 +1,4 @@ +import { atom, type WritableAtom } from "nanostores"; +import type { CxxRevision } from "@src/types"; + +export const selectedRevision: WritableAtom = atom(null); diff --git a/src/components/revision/types.ts b/src/components/revision/types.ts new file mode 100644 index 00000000..52452d01 --- /dev/null +++ b/src/components/revision/types.ts @@ -0,0 +1,13 @@ +import type { CxxRevision } from "@src/types"; + +export interface RevisionTrait { + trait: string; + since: CxxRevision; +} + +export interface RevisionInfo { + since?: CxxRevision; + traits?: RevisionTrait[]; + until?: CxxRevision; + removed?: CxxRevision; +} diff --git a/src/components/starlight/TableOfContents.astro b/src/components/starlight/TableOfContents.astro new file mode 100644 index 00000000..083e2737 --- /dev/null +++ b/src/components/starlight/TableOfContents.astro @@ -0,0 +1,40 @@ +--- +import Default from "starlight-heading-badges/components/HeadingBadgesTableOfContents.astro"; +import RevisionSelector from "@components/revision/RevisionSelector.astro"; +import type { CxxRevision, Language } from "@src/types"; +import { getRevisions } from "@src/lib/revision"; + +const pageRevision = Astro.locals.starlightRoute.entry.data.cppdoc?.revision; +const since = pageRevision?.since as CxxRevision | undefined; +const until = pageRevision?.until as CxxRevision | undefined; + +// This may look hacky, but we now infer whether the current page is for C or +// C++ by examining the page's path in the file system. +const path = Astro.locals.starlightRoute.entry.filePath; +let language: Language | undefined = undefined; +if (pageRevision?.lang) { + language = pageRevision.lang as Language; +} else if (path.includes("src/content/docs/cpp/")) { + language = "C++"; +} else if (path.includes("src/content/docs/c/")) { + language = "C"; +} + +const revisions = language && getRevisions(language, { since, until }); +--- + +{ + revisions && revisions.length > 0 && ( +
+ +
+ ) +} + + + + diff --git a/src/content.config.ts b/src/content.config.ts new file mode 100644 index 00000000..b071242e --- /dev/null +++ b/src/content.config.ts @@ -0,0 +1,31 @@ +import { defineCollection, z } from "astro:content"; +import { docsLoader } from "@astrojs/starlight/loaders"; +import { docsSchema } from "@astrojs/starlight/schema"; +import { autoSidebarLoader } from "starlight-auto-sidebar/loader"; +import { autoSidebarSchema } from "starlight-auto-sidebar/schema"; + +export const collections = { + docs: defineCollection({ + loader: docsLoader(), + schema: docsSchema({ + extend: z.object({ + cppdoc: z + .object({ + keys: z.array(z.string()).optional(), + revision: z + .object({ + lang: z.string().optional(), + since: z.string().optional(), + until: z.string().optional(), + }) + .optional(), + }) + .optional(), + }), + }), + }), + autoSidebar: defineCollection({ + loader: autoSidebarLoader(), + schema: autoSidebarSchema(), + }), +}; diff --git a/src/content/docs/c/comment.mdx b/src/content/docs/c/comment.mdx new file mode 100644 index 00000000..e18b4062 --- /dev/null +++ b/src/content/docs/c/comment.mdx @@ -0,0 +1,156 @@ +--- +title: "Comments" +--- + +import { Desc, DescList, DocLink, Revision, RevisionBlock } from '@components/index'; + +Comments serve as a sort of in-code documentation. When inserted into a program, they are effectively ignored by the compiler; they are solely intended to be used as notes by the humans that read source code. + +### Syntax + +* (1) `/*` _comment_ `*/` +* (2) `//` _comment_   + +1) Often known as "C-style" or "multi-line" comments. +2) Often known as "C++-style" or "single-line" comments. + +All comments are removed from the program at translation phase 3 by replacing each comment with a single whitespace character. + +### C-style + +C-style comments are usually used to comment large blocks of text or small fragments of code; however, they can be used to comment single lines. To insert text as a C-style comment, simply surround the text with `/*` and `*/`. C-style comments tell the compiler to ignore all content between `/*` and `*/`. Although it is not part of the C standard, `/**` and `**/` are often used to indicate documentation blocks; this is legal because the second asterisk is simply treated as part of the comment. + +Except within a character constant, a string literal, or a comment, the characters `/*` introduce a comment. The contents of such a comment are examined only to identify multibyte characters and to find the characters `*/` that terminate the comment. C-style comments cannot be nested. + + + +### C++-style + +C++-style comments are usually used to comment single lines of text or code; however, they can be placed together to form multi-line comments. To insert text as a C++-style comment, simply precede the text with `//` and follow the text with the new line character. C++-style comments tell the compiler to ignore all content between `//` and a new line. + +Except within a character constant, a string literal, or a comment, the characters `//` introduce a comment that includes all multibyte characters up to, but not including, the next new-line character. The contents of such a comment are examined only to identify multibyte characters and to find the new-line character that terminates the comment. C++-style comments can be nested: + +```c +// y = f(x); // invoke algorithm +``` + +A C-style comment may appear within a C++-style comment: + +```c +// y = f(x); /* invoke algorithm */ +``` + +A C++-style comment may appear within a C-style comment; this is a mechanism for excluding a small block of source code: + +```c +/* + y = f(x); // invoke algorithms + z = g(x); +*/ +``` + + + +### Notes + +Because comments are removed before the preprocessor stage, a macro cannot be used to form a comment and an unterminated C-style comment doesn't spill over from an #include'd file. + +```c +/* An attempt to use a macro to form a comment. */ +/* But, a space replaces characters "//". */ +#ifndef DEBUG + #define PRINTF // +#else + #define PRINTF printf +#endif +... +PRINTF("Error in file%s at line%i\n", __FILE__, __LINE__); +``` + +Besides commenting out, other mechanisms used for source code exclusion are: + +```c +#if 0 + puts("this will not be compiled"); + /* no conflict with C-style comments */ + // no conflict with C++-style comments +#endif +``` + +and + +```c +if(0) { + puts("this will be compiled but not be executed"); + /* no conflict with C-style comments */ + // no conflict with C++-style comments +} +``` + +The introduction of // comments in C99 was a breaking change in some rare circumstances: + +```c +a = b //*divisor:*/ c ++ d; /* C89 compiles a = b / c + d; + C99 compiles a = b + d; */ +``` + +### Example + +```cpp +#include +/* +C-style comments can contain +multiple lines. +*/ + +/* Or, just one line. */ + +// C++-style comments can comment one line. + +// Or, they can +// be strung together. + +int main(void) +{ + // The below code won't be run + // puts("Hello"); + + // The below code will be run + puts("World"); + + // A note regarding backslash + newline. + // Despite belonging to translation phase 2 (vs phase 3 for comments), + // '\' still determines which portion of the source code is considered + // as 'comments': + // This comment will be promoted to the next line \ + puts("Won't be run"); // may issue a warning "multi-line comment" + puts("Hello, again"); +} +``` + +Output: + +```text +World +Hello, again +``` + +### References + +* C17 standard (ISO/IEC 9899:2018): + * 6.4.9 Comments (p: 54) +* C11 standard (ISO/IEC 9899:2011): + * 6.4.9 Comments (p: 75) +* C99 standard (ISO/IEC 9899:1999): + * 6.4.9 Comments (p: 66) +* C89/C90 standard (ISO/IEC 9899:1990): + * 3.1.9 Comments + +### See also + + + + C++ documentation for Comments + + diff --git a/src/content/docs/c/header/index.mdx b/src/content/docs/c/header/index.mdx new file mode 100644 index 00000000..5d185169 --- /dev/null +++ b/src/content/docs/c/header/index.mdx @@ -0,0 +1,379 @@ +--- +title: Overview +sidebar: + order: 1 +cppdoc: + keys: ["c.library.headers"] +--- + +import { CHeader } from "@components/header"; +import { Desc, DescList } from "@src/components/desc-list"; +import { + FeatureTestMacro, + FeatureTestMacroValue, +} from "@components/feature-test-macro"; +import Missing from "@components/Missing.astro"; +import { Revision, RevisionBlock } from "@components/revision"; + +The interface of C standard library is defined by the following collection of headers. + + + + + Conditionally compiled macro that compares its argument to zero + + + + + + + Complex number arithmetic + + + + + Functions to determine the type contained in character data + + + + + Macros reporting error conditions + + + + + + + Floating-point environment + + + + + Limits of floating-point types + + + + + + + Format conversion of integer types + + + + + + + Alternative operator spellings + + + + + Ranges of integer types + + + + + Localization utilities + + + + + Common mathematical functions + + + + + Nonlocal jumps + + + + + Signal handling + + + + + + + alignas and alignof convenience macros + + + + + Variable arguments + + + + + + + Atomic operations + + + + + + + Macros to work with the byte and bit representations of types + + + + + + + Macros for boolean type + + + + + + + Macros for performing checked integer arithmetic + + + + + Common macro definitions + + + + + + + Fixed-width integer types + + + + + Input/output + + + + + General utilities: memory management, program utilities, string conversions, random numbers, algorithms + + + + + + + Text transcode + + + + + + + noreturn convenience macro + + + + + String handling + + + + + + + Type-generic math (macros wrapping and ) + + + + + + + Thread library + + + + + Time/date utilities + + + + + + + UTF-16 and UTF-32 character utilities + + + + + + + Extended multibyte and wide character utilities + + + + + + + Functions to determine the type contained in wide character data + + + +## Feature test macros :badge[C23] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +## References + +- C23 standard (ISO/IEC 9899:2024): + - 7.1.2 Standard headers (p: 191-192) +- C17 standard (ISO/IEC 9899:2018): + - 7.1.2 Standard headers (p: 131-132) +- C11 standard (ISO/IEC 9899:2011): + - 7.1.2 Standard headers (p: 181-182) +- C99 standard (ISO/IEC 9899:1999): + - 7.1.2 Standard headers (p: 165) +- C89/C90 standard (ISO/IEC 9899:1990): + - 4.1.2 Standard headers diff --git a/src/content/docs/c/language/_meta.yml b/src/content/docs/c/language/_meta.yml new file mode 100644 index 00000000..9eb9fa32 --- /dev/null +++ b/src/content/docs/c/language/_meta.yml @@ -0,0 +1 @@ +label: C Language Reference diff --git a/src/content/docs/c/language/basic_concepts.mdx b/src/content/docs/c/language/basic_concepts.mdx new file mode 100644 index 00000000..2ead7b90 --- /dev/null +++ b/src/content/docs/c/language/basic_concepts.mdx @@ -0,0 +1,23 @@ +--- +title: Overview +sidebar: + order: 1 +cppdoc: + keys: ["c.lang.basic"] +--- + +import DocLink from "@components/DocLink.astro"; + +# Basic concepts + +This section provides definitions for the specific terminology and the concepts used when describing the C programming language. + +A C program is a sequence of text files (typically header and source files) that contain declarations. They undergo translation to become an executable program, which is executed when the OS calls its main function (unless it is itself the OS or another *freestanding* program, in which case the entry point is implementation-defined). + +Certain words in a C program have special meaning, they are keywords. Others can be used as identifiers, which may be used to identify objects, functions, struct, union, or enumeration tags, their members, typedef names, labels, or macros. + +Each identifier (other than macro) is only valid within a part of the program called its scope and belongs to one of four kinds of name spaces. Some identifiers have linkage which makes them refer to the same entities when they appear in different scopes or translation units. + +Definitions of functions include sequences of statements and declarations, some of which include expressions, which specify the computations to be performed by the program. + +Declarations and expressions create, destroy, access, and manipulate objects. Each object, function, and expression in C is associated with a type. diff --git a/src/content/docs/c/library/_meta.yml b/src/content/docs/c/library/_meta.yml new file mode 100644 index 00000000..6d626be7 --- /dev/null +++ b/src/content/docs/c/library/_meta.yml @@ -0,0 +1 @@ +label: C Library Reference diff --git a/src/content/docs/c/library/strings/_meta.yml b/src/content/docs/c/library/strings/_meta.yml new file mode 100644 index 00000000..d56cd8ec --- /dev/null +++ b/src/content/docs/c/library/strings/_meta.yml @@ -0,0 +1 @@ +label: Strings library diff --git a/src/content/docs/c/library/strings/byte/_meta.yml b/src/content/docs/c/library/strings/byte/_meta.yml new file mode 100644 index 00000000..e1de5036 --- /dev/null +++ b/src/content/docs/c/library/strings/byte/_meta.yml @@ -0,0 +1 @@ +label: Null-terminate byte strings diff --git a/src/content/docs/c/library/strings/byte/memcpy.mdx b/src/content/docs/c/library/strings/byte/memcpy.mdx new file mode 100644 index 00000000..894fd31c --- /dev/null +++ b/src/content/docs/c/library/strings/byte/memcpy.mdx @@ -0,0 +1,188 @@ +--- +title: memcpy, memcpy_s +cppdoc: + keys: ["c.library.memcpy", "c.library.memcpy_s"] +--- + +import Behavior from "@components/Behavior.astro"; +import { CHeader } from "@components/header"; +import { Decl, DeclDoc } from "@components/decl-doc"; +import { Desc, DescItem, DescList } from "@components/desc-list"; +import Missing from "@components/Missing.astro"; +import { ParamDoc, ParamDocList } from "@components/param-doc"; +import { Revision, RevisionBlock } from "@components/revision"; + +Defined in header . + + + + + ```c + void* memcpy(void *dest, const void *src, size_t count); + ``` + + + + + ```c + void* memcpy(void *restrict dest, const void *restrict src, + size_t count); + ``` + + + + Copies `count` characters from the object pointed to by `src` to the object pointed to by `dest`. Both objects are interpreted as arrays of `unsigned char`. + + The behavior is undefined if access occurs beyond the end of the dest array. If the objects overlap (which is a violation of the `restrict` contract), the behavior is undefined. The behavior is undefined if either dest or src is an invalid or null pointer. + + + + + + ```c + errno_t memcpy_s(void *restrict dest, rsize_t destsz, + const void *restrict src, rsize_t count); + ``` + + + + Same as #1, except that the following errors are detected at runtime and cause the entire destination range `[dest, dest+destsz)` to be zeroed out (if both `dest` and `destsz` are valid), as well as call the currently installed constraint handler function: + + - `dest` or `src` is a null pointer + - `destsz` or `count` is greater than `RSIZE_MAX` + - `count` is greater than `destsz` (buffer overflow would occur) + - the source and the destination objects overlap + + The behavior is undefined if the size of the character array pointed to by `dest` < `count` \<= `destsz`; in other words, an erroneous value of `destsz` does not expose the impending buffer overflow. + + As with all bounds-checked functions, `memcpy_s` is only guaranteed to be available if `__STDC_LIB_EXT1__` is defined by the implementation and if the user defines `__STDC_WANT_LIB_EXT1__` to the integer constant `1` before including . + + +## Parameters + + + + pointer to the object to copy to + + + max number of bytes to modify in the destination (typically the size of the destination object) + + + pointer to the object to copy from + + + number of bytes to copy + + + +## Return value + +1. Returns a copy of `dest` +2. Returns zero on success and non-zero value on error. Also on error, if `dest` is not a null pointer and `destsz` is valid, writes `destsz` zero bytes in to the destination array. + +## Notes + +`memcpy` may be used to set the effective type of an object obtained by an allocation function. + +`memcpy` is the fastest library routine for memory-to-memory copy. It is usually more efficient than `strcpy`, which must scan the data it copies or `memmove`, which must take precautions to handle overlapping inputs. + +Several C compilers transform suitable memory-copying loops to `memcpy` calls. + +Where strict aliasing prohibits examining the same memory as values of two different types, `memcpy` may be used to convert the values. + +## Example + +```c +#define __STDC_WANT_LIB_EXT1__ 1 +#include +#include +#include +#include +#include + +int main(void) { + // simple usage + char source[] = "once upon a midnight dreary..."; + char dest[4]; + memcpy(dest, source, sizeof(dest)); + for (size_t n = 0; n < sizeof(dest); ++n) + putchar(dest[n]); + + // setting effective type of allocated memory to be int + int *p = malloc(3 * sizeof(int)); // allocated memory has no effective type + int arr[3] = {1, 2, 3}; + memcpy(p, arr, 3 * sizeof(int)); // allocated memory now has an effective type + + // reinterpreting data + double d = 0.1; + // int64_t n = *(int64_t *)(&d); // strict aliasing violation + int64_t n; + memcpy(&n, &d, sizeof d); // OK + printf("\n%a is %" PRIx64 " as an int64_t\n", d, n); + +#ifdef __STDC_LIB_EXT1__ + set_constraint_handler_s(ignore_handler_s); + char src[] = "aaaaaaaaaa"; + char dst[] = "xyxyxyxyxy"; + int r = memcpy_s(dst, sizeof(dst), src, 5); + printf("dst = \"%s\", r = %d\n", dst,r); + r = memcpy_s(dst, 5, src, 10); // count is greater than destsz + printf("dst = \""); + for (size_t ndx = 0; ndx + + + `memccpy` + + copies one buffer to another, stopping after the specified delimiter + + + + + `memmove` + + + `memmove_s` + + moves one buffer to another + + + + + `wmemcpy` + + + `wmemcpy_s` + + copies a certain amount of wide characters between two non-overlapping arrays + + diff --git a/src/content/docs/cpp/keywords.mdx b/src/content/docs/cpp/keywords.mdx new file mode 100644 index 00000000..dd6477b8 --- /dev/null +++ b/src/content/docs/cpp/keywords.mdx @@ -0,0 +1,53 @@ +--- +title: C++ keywords +description: Auto‑generated from cppreference +--- + +import { Desc, DescList, DocLink, Revision, RevisionBlock } from '@components/index'; + +This is a list of reserved keywords in C++. Since they are used by the language, these keywords are not available for re-definition or overloading. As an exception, they are not considered reserved in attributes (excluding attribute argument lists). + +| A – C | D – P | R – Z | +| :---- | :---- | :---- | +| `alignas` (C++11)
`alignof` (C++11)
`and`
`and_eq`
`asm`
`atomic_cancel` (TM TS)
`atomic_commit` (TM TS)
`atomic_noexcept` (TM TS)
`auto` (1) (3) (4) (5)
`bitand`
`bitor`
`bool`
`break`
`case`
`catch`
`char`
`char8_t` (C++20)
`char16_t` (C++11)
`char32_t` (C++11)
`class` (1)
`compl`
`concept` (C++20)
`const`
`consteval` (C++20) (5)
`constexpr` (C++11) (3)
`constinit` (C++20)
`const_cast`
`continue`
`contract_assert` (C++26)
`co_await` (C++20)
`co_return` (C++20)
`co_yield` (C++20)
| `decltype` (C++11) (2)
`default` (1)
`delete` (1)
`do`
`double`
`dynamic_cast`
`else`
`enum` (1)
`explicit`
`export` (1) (4)
`extern` (1)
`false`
`float`
`for` (1)
`friend`
`goto`
`if` (3) (5)
`inline` (1) (3)
`int` (1)
`long`
`mutable` (1)
`namespace`
`new`
`noexcept` (C++11)
`not`
`not_eq`
`nullptr` (C++11)
`operator` (1)
`or`
`or_eq`
`private` (4)
`protected`
`public`
| `reflexpr` (reflection TS)
`register` (3)
`reinterpret_cast`
`requires` (C++20)
`return`
`short`
`signed`
`sizeof` (1)
`static`
`static_assert` (C++11)
`static_cast`
`struct` (1)
`switch`
`synchronized` (TM TS)
`template`
`this` (5)
`thread_local` (C++11)
`throw` (3) (4)
`true`
`try`
`typedef`
`typeid`
`typename` (3) (4)
`union`
`unsigned`
`using` (1) (4)
`virtual`
`void`
`volatile`
`wchar_t`
`while`
`xor`
`xor_eq` | + +* (1) — meaning changed or new meaning added in C++11. +* (2) — new meaning added in C++14. +* (3) — meaning changed or new meaning added in C++17. +* (4) — meaning changed or new meaning added in C++20. +* (5) — new meaning added in C++23. + +Note that: `and`, `bitor`, `or`, `xor`, `compl`, `bitand`, `and_eq`, `or_eq`, `xor_eq`, `not` and `not_eq` (along with digraphs: `%`, `%<`, `<:`, `:>`, `%:`, `%:%:` and trigraphs: `??<`, `??>`, `??(`, `??)`, `??=`, `??/`, `??'`, `??!`, `??-`) provide an alternative way to represent standard tokens. These keywords are also considered reserved in attributes (excluding attribute argument lists), but some implementations handle them the same as the others. + +In addition to keywords, there are _identifiers with special meaning_, which may be used as names of objects or functions, but have special meaning in certain contexts. + +| | +| :---- | +| `final` (C++11)
`override` (C++11)
`transaction_safe` (TM TS)
`transaction_safe_dynamic` (TM TS)
`import` (C++20)
`module` (C++20)
`pre` (C++26)
`post` (C++26)
`trivially_relocatable_if_eligible` (C++26)
`replaceable_if_eligible` (C++26) | + +Also, all identifiers that contain a double underscore `__` in any position and each identifier that begins with an underscore followed by an uppercase letter is always reserved, and all identifiers that begin with an underscore are reserved for use as names in the global namespace. See identifiers for more details. + +The namespace `std` is used to place names of the standard C++ library. See Extending namespace std for the rules about adding names to it. + + +The name `posix` is reserved for a future top-level namespace. The behavior is undefined if a program declares or defines anything in that namespace. + + +The following tokens are recognized by the preprocessor when in context of a preprocessor directive: +| | | +| :---- | :---- | +| `if`
`elif`
`else`
`endif`
`ifdef`
`ifndef`
`elifdef` (C++23)
`elifndef` (C++23)
`define`
`undef` | `include`
`embed` (C++26)
`line`
`error`
`warning` (C++23)
`pragma`
`defined`
`__has_include` (C++17)
`__has_cpp_attribute` (C++20)
`__has_embed` (C++26)
`export` (C++20)
`import` (C++20)
`module` (C++20) | + +The following tokens are recognized by the preprocessor _outside_ the context of a preprocessor directive: + +| | +| :---- | +| `_Pragma` (C++11) | + +### See also + + + +C documentation for keywords + + diff --git a/src/content/docs/cpp/language/_meta.yml b/src/content/docs/cpp/language/_meta.yml new file mode 100644 index 00000000..d7438be5 --- /dev/null +++ b/src/content/docs/cpp/language/_meta.yml @@ -0,0 +1 @@ +label: C++ Language Reference diff --git a/src/content/docs/cpp/language/basic_concepts/_meta.yml b/src/content/docs/cpp/language/basic_concepts/_meta.yml new file mode 100644 index 00000000..7d5b7f43 --- /dev/null +++ b/src/content/docs/cpp/language/basic_concepts/_meta.yml @@ -0,0 +1 @@ +label: Basic Concepts diff --git a/src/content/docs/cpp/language/basic_concepts/modules.mdx b/src/content/docs/cpp/language/basic_concepts/modules.mdx new file mode 100644 index 00000000..54a5d7fd --- /dev/null +++ b/src/content/docs/cpp/language/basic_concepts/modules.mdx @@ -0,0 +1,502 @@ +--- +title: Modules +cppdoc: + revision: + lang: C++ + since: C++20 +--- + +import Behavior from "@components/Behavior.astro"; +import { Decl, DeclDoc } from "@components/decl-doc"; +import DocLink from "@components/DocLink.astro"; +import { DR, DRList } from "@components/defect-report"; +import { FeatureTestMacro, FeatureTestMacroValue } from "@components/feature-test-macro"; + +Most C++ projects use multiple translation units, and so they need to share declarations and definitions across those units. The usage of headers is prominent for this purpose, an example being the standard library whose declarations can be provided by including the corresponding header. + +Modules are a language feature to share declarations and definitions across translation units. They are an alternative to some use cases of headers. + +Modules are orthogonal to namespaces. + +```cpp +// helloworld.cpp +export module helloworld; // module declaration + +import ; // import declaration + +export void hello() { // export declaration + std::cout << "Hello world!\n"; +} +``` + +```cpp +// main.cpp +import helloworld; // import declaration + +int main() { + hello(); +} +``` + +## Syntax + + + + ```cpp cxx-mark + export/*$opt*/ module /*$s:module-name*/ /*$s:module-partition*//*$opt*/ /*$s:attr*//*$opt*/; + ``` + + + Module declaration. Declares that the current translation unit is a _module unit_. + + + + + ```cpp cxx-mark + export /*$s:declaration*/ + ``` + + + ```cpp cxx-mark + export { /*$s:declaration-seq*//*$opt*/ } + ``` + + + Export declaration. Export all namespace-scope declarations in `declaration` or `declaration-seq`. + + + + + ```cpp cxx-mark + export/*$opt*/ import /*$s:module-name*/ /*$s:attr*//*$opt*/; + ``` + + + ```cpp cxx-mark + export/*$opt*/ import /*$s:module-partition*/ /*$s:attr*//*$opt*/; + ``` + + + ```cpp cxx-mark + export/*$opt*/ import /*$s:header-name*/ /*$s:attr*//*$opt*/; + ``` + + + Import declaration. Import a module unit/module partition/header unit. + + + + + ```cpp + module; + ``` + + + Starts a [global module fragment](#global-module-fragment). + + + + + ```cpp + module : private; + ``` + + + Starts a [private module fragment](#private-module-fragment). + + +## Module declarations + +A translation unit may have a module declaration, in which case it is considered a module unit. The module declaration, if provided, must be the first declaration of the translation unit (excepted the global module fragment, which is covered later on). Each module unit is associated to a module name (and optionally a partition), provided in the module declaration. + +```cpp cxx-mark +export/*$opt*/ module /*$s:module-name*/ /*$s:module-partition*//*$opt*/ /*$s:attr*//*$opt*/; +``` + +The module name consists of one or more identifiers separated by dots (for example: `mymodule`, `mymodule.mysubmodule`, `mymodule2`, etc.). Dots have no intrinsic meaning, however they are used informally to represent hierarchy. + +If any identifier in the module name or module partition is defined as an object-like macro, the program is ill-formed. + +A _named module_ is the collection of module units with the same module name. + +Module units whose declaration has the keyword export are termed _module interface units_; all other module units are termed _module implementation units_. + +For every named module, there must be exactly one module interface unit that specifies no module partition; this module unit is termed the _primary module interface unit_. Its exported content will be available when importing the corresponding named module. + +```cpp +// (each line represents a separate translation unit) + +export module A; // declares the primary module interface unit for named module 'A' +module A; // declares a module implementation unit for named module 'A' +module A; // declares another module implementation unit for named module 'A' +export module A.B; // declares the primary module interface unit for named module 'A.B' +module A.B; // declares a module implementation unit for named module 'A.B' +``` + +## Exporting declarations and definitions + +Module interface units can export declarations (including definitions), which can be imported by other translation units. To export a declaration, either prefix it with the export keyword, or else place it inside an export block. + +```cpp cxx-mark +export /*$s:declaration*/ +``` + +```cpp cxx-mark +export { /*$s:declaration-seq*//*$opt*/ } +``` + +```cpp +export module A; // declares the primary module interface unit for named module 'A' + +// hello() will be visible by translations units importing 'A' +export char const* hello() { return "hello"; } + +// world() will NOT be visible. +char const* world() { return "world"; } + +// Both one() and zero() will be visible. +export { + int one() { return 1; } + int zero() { return 0; } +} + +// Exporting namespaces also works: hi::english() and hi::french() will be visible. +export namespace hi { + char const* english() { return "Hi!"; } + char const* french() { return "Salut!"; } +} +``` + +## Importing modules and header units + +Modules are imported via an _import declaration_: + +```cpp cxx-mark +export/*$opt*/ import /*$s:module-name*/ /*$s:attr*//*$opt*/; +``` + +All declarations and definitions exported in the module interface units of the given named module will be available in the translation unit using the import declaration. + +Import declarations can be exported in a module interface unit. That is, if module B export-imports A, then importing B will also make visible all exports from A. + +In module units, all import declarations (including export-imports) must be grouped after the module declaration and before all other declarations. + +```cpp +// A.cpp +// Primary module interface unit of 'A' +export module A; + +export char const* hello() { return "hello"; } +``` + +```cpp +// B.cpp +// Primary module interface unit of 'B' +export module B; + +export import A; + +export char const* world() { return "world"; } +``` + +```cpp +// main.cpp +// not a module unit +#include +import B; + +int main() { + std::cout << hello() << ' ' << world() << '\n'; +} +``` + +`#include` should not be used in a module unit (outside the _global module fragment_), because all included declarations and definitions would be considered part of the module. Instead, headers can also be imported as _header units_ with an _import declaration_: + +```cpp cxx-mark +export/*$opt*/ import /*$s:header-name*/ /*$s:attr*//*$opt*/; +``` + +A header unit is a separate translation unit synthesized from a header. Importing a header unit will make accessible all its definitions and declarations. Preprocessor macros are also accessible (because import declarations are recognized by the preprocessor). + +However, contrary to `#include`, preprocessing macros already defined at the point of the import declaration will not affect the processing of the header. This may be inconvenient in some cases (some headers use preprocessing macros as a form of configuration), in which case the usage of _global module fragment_ is needed. + +```cpp +// A.cpp +// primary module interface unit of 'A' +export module A; + +import ; +export import ; + +export void print(std::string_view message) { + std::cout << message << std::endl; +} +``` + +```cpp +// main.cpp +// not a module unit +import A; + +int main() { + std::string_view message = "Hello, world!"; + print(message); +} +``` + +## Global module fragment + +Module units can be prefixed by a global module fragment, which can be used to include headers when importing the headers is not possible (notably when the header uses preprocessing macros as configuration). + +```cpp cxx-mark +module; +/*$s:preprocessing-directives*//*$opt*/ +/*$s:module-declaration*/ +``` + +If a module-unit has a global module fragment, then its first declaration must be `module;`. Then, only preprocessing directives can appear in the global module fragment. Then, a standard module declaration marks the end of the global module fragment and the start of the module content. + +```cpp +// A.cpp +// primary module interface unit of 'A' +module; + +// Defining _POSIX_C_SOURCE adds functions to standard headers, +// according to the POSIX standard. +#define _POSIX_C_SOURCE 200809L +#include + +export module A; + +import ; + +// Only for demonstration (bad source of randomness). +// Use C++ instead. +export double weak_random() { + std::timespec ts; + std::timespec_get(&ts, TIME_UTC); // from + + // Provided in according to the POSIX standard. + srand48(ts.tv_nsec); + + // drand48() returns a random number between 0 and 1. + return drand48(); +} +``` + +```cpp +// main.cpp +// not a module unit +import ; +import A; + +int main() { + std::cout << "Random value between 0 and 1: " << weak_random() << '\n'; +} +``` + +## Private module fragment + +Primary module interface unit can be suffixed by a _private module fragment_, which allows a module to be represented as a single translation unit without making all of the contents of the module reachable to importers. + +```cpp cxx-mark +module : private; +/*$s:declaration-seq*//*$opt*/ +``` + +_Private module fragment_ ends the portion of the module interface unit that can affect the behavior of other translation units. If a module unit contains a _private module fragment_, it will be the only module unit of its module. + +```cpp +export module foo; + +export int f(); + +module : private; // ends the portion of the module interface unit that + // can affect the behavior of other translation units + // starts a private module fragment + +int f() { // definition not reachable from importers of foo + return 42; +} +``` + +## Module partitions + +A module can have _module partition units_. They are module units whose module declarations include a module partition, which starts with a colon `:` and is placed after the module name. + +```cpp +export module A:B; // Declares a module interface unit for module 'A', partition ':B'. +``` + +A module partition represents exactly one module unit (two module units cannot designate the same module partition). They are visible only from inside the named module (translation units outside the named module cannot import a module partition directly). + +A module partition can be imported by module units of the same named module. + +```cpp cxx-mark +export/*$opt*/ import /*$s:module-partition*/ /*$s:attr*//*$opt*/; +``` + +```cpp +// A-B.cpp +export module A:B; +// ... +``` + +```cpp +// A-C.cpp +module A:C; +// ... +``` + +```cpp +// A.cpp +export module A; + +import :C; +export import :B; + +// ... +``` + +All definitions and declarations in a module partition are visible by the importing module unit, whether exported or not. + +Module partitions can be module interface units (when their module declarations have `export`). They must be export-imported by the primary module interface unit, and their exported statements will be visible when the module is imported. + +```cpp cxx-mark +export/*$opt*/ import /*$s:module-partition*/ /*$s:attr*//*$opt*/; +``` + +```cpp +// A.cpp +export module A; // primary module interface unit + +export import :B; // Hello() is visible when importing 'A'. +import :C; // WorldImpl() is now visible only for 'A.cpp'. +// export import :C; // ERROR: Cannot export a module implementation unit. + +// World() is visible by any translation unit importing 'A'. +export char const* World() { + return WorldImpl(); +} +``` + +```cpp +// A-B.cpp +export module A:B; // partition module interface unit + +// Hello() is visible by any translation unit importing 'A'. +export char const* Hello() { return "Hello"; } +``` + +```cpp +// A-C.cpp +module A:C; // partition module implementation unit + +// WorldImpl() is visible by any module unit of 'A' importing ':C'. +char const* WorldImpl() { return "World"; } +``` + +```cpp +// main.cpp +import A; +import ; + +int main() { + std::cout << Hello() << ' ' << World() << '\n'; + // WorldImpl(); // ERROR: WorldImpl() is not visible. +} +``` + +## Module ownership + +In general, if a declaration appears after the module declaration in a module unit, it is _attached_ to that module. + +If a declaration of an entity is attached to a named module, that entity can only be defined in that module. All declarations of such an entity must be attached to the same module. + +If a declaration is attached to a named module, and it is not exported, the declared name has module linkage. + +```cpp +export module lib_A; + +int f() { return 0; } // f has module linkage +export int x = f(); // x equals 0 +``` + +```cpp +export module lib_B; + +int f() { return 1; } // OK, f in lib_A and f in lib_B refer to different entities +export int y = f(); // y equals 1 +``` + +If two declarations of an entity are attached to different modules, the program is ill-formed; no diagnostic is required if neither is reachable from the other. + +```cpp +// decls.h +int f(); // #1, attached to the global module +int g(); // #2, attached to the global module +``` + +```cpp +// M.cpp +// Module interface of M +module; +#include "decls.h" +export module M; +export using ::f; // OK, does not declare an entity, exports #1 +int g(); // Error: matches #2, but attached to M +export int h(); // #3 +export int k(); // #4 +``` + +```cpp +// Foo.cpp +import M; +static int h(); // Error: matches #3 +int k(); // Error: matches #4 +``` + +The following declarations are not attached to any named module (and thus the declared entity can be defined outside the module): + +- namespace definitions with external linkage; +- declarations within a language linkage specification. + +```cpp +export module lib_A; + +namespace ns { // ns is not attached to lib_A. + export extern "C++" int f(); // f is not attached to lib_A. + extern "C++" int g(); // g is not attached to lib_A. + export int h(); // h is attached to lib_A. +} +// ns::h must be defined in lib_A, but ns::f and ns::g can be defined elsewhere +// (e.g. in a traditional source file). +``` + +## Notes + + + + Modules — core language support + + + + + + Standard library modules `std` and `std.compat` + + + +## Defect reports + + + + + + it was unclear whether importable headers can react to preprocessor state from the point of import + + + no reaction + + + diff --git a/src/content/docs/cpp/language/basics.mdx b/src/content/docs/cpp/language/basics.mdx new file mode 100644 index 00000000..0056ea08 --- /dev/null +++ b/src/content/docs/cpp/language/basics.mdx @@ -0,0 +1,34 @@ +--- +title: Overview +sidebar: + order: 1 +cppdoc: + keys: ["cpp.lang.basic"] +--- + +import { Revision } from "@components/revision"; +import DocLink from "@components/DocLink.astro"; + +# Basic concepts + +This section provides definitions for the specific terminology and the concepts used when describing the C++ programming language. + +A C++ program is a sequence of text files (typically header and source files) that contain declarations. They undergo translation to become an executable program, which is executed when the C++ implementation calls its main function. + +Certain words in a C++ program have special meaning, and these are known as keywords. Others can be used as identifiers. Comments are ignored during translation. C++ programs also contain literals, the values of characters inside them are determined by character sets and encodings. Certain characters in the program have to be represented with escape sequences. + +The *entities* of a C++ program are values, objects, references, structured bindings, result bindings, functions, enumerators, types, class members, templates, template specializations, packs, and namespaces. Preprocessor macros are not C++ entities. + +Declarations may introduce entities, associate them with names and define their properties. The declarations that define all properties required to use an entity are definitions. A program must contain only one definition of any non-inline function or variable that is odr-used. + +Definitions of functions usually include sequences of statements, some of which include expressions, which specify the computations to be performed by the program. + +Names encountered in a program are associated with the declarations that introduced them using name lookup. Each name is only valid within a part of the program called its scope. Some names have linkage which makes them refer to the same entities when they appear in different scopes or translation units. + +Each object, reference, function, expression in C++ is associated with a type, which may be fundamental, compound, or user-defined, complete or incomplete, etc. + +Declared objects and declared references that are not non-static data members are *variables ​*. + +## See also + +C documentation for Basic concepts \ No newline at end of file diff --git a/src/content/docs/cpp/language/comments.mdx b/src/content/docs/cpp/language/comments.mdx new file mode 100644 index 00000000..681f233f --- /dev/null +++ b/src/content/docs/cpp/language/comments.mdx @@ -0,0 +1,112 @@ +--- +title: Comments +description: Auto‑generated from cppreference +cppdoc: + keys: ["cpp.lang.comments"] +--- + +import { Desc, DescList, DocLink } from '@components/index'; +import { Decl, DeclDoc } from "@components/decl-doc"; + +Comments serve as a sort of in-code documentation. When inserted into a program, they are effectively ignored by the compiler; they are solely intended to be used as notes by the humans that read source code. Although specific documentation is not part of the C++ standard, several utilities exist that parse comments with different documentation formats. + +## Syntax + + + + ```cpp + /* comment */ + ``` + + + Often known as "C-style" or "multi-line" comments. + + + + + ```cpp + // comment + ``` + + Often known as "C++-style" or "single-line" comments. + + +All comments are removed from the program at translation phase 3 by replacing each comment with a single whitespace character. + +## C-style + +C-style comments are usually used to comment large blocks of text, however, they can be used to comment single lines. To insert a C-style comment, simply surround text with `/*` and `*/`; this will cause the contents of the comment to be ignored by the compiler. Although it is not part of the C++ standard, `/**` and `*/` are often used to indicate documentation blocks; this is legal because the second asterisk is simply treated as part of the comment. C-style comments cannot be nested. + +## C++-style + +C++-style comments are usually used to comment single lines, however, multiple C++-style comments can be placed together to form multi-line comments. C++-style comments tell the compiler to ignore all content between `//` and a new line. + +## Notes + +Because comments are removed before the preprocessor stage, a macro cannot be used to form a comment and an unterminated C-style comment doesn't spill over from an #include'd file. + +Besides commenting out, other mechanisms used for source code exclusion are + +```cpp +#if 0 + std::cout << "this will not be executed or even compiled\n"; +#endif +``` + +and + +```cpp +if (false) +{ + std::cout << "this will not be executed\n"; +} +``` + +## Example + +```cpp +#include + +/* C-style comments can contain +multiple lines */ +/* or just one */ + +/************** + * you can insert any *, but + * you can't make comments nested + */ + +// C++-style comments can comment one line + +// or, they can +// be strung together + +int main() +{ + // comments are removed before preprocessing, + // so ABC is "1", not "1//2134", and "1 hello world" + // will be printed +#define ABC 1//2134 + std::cout << ABC << " hello world\n"; + + // The below code won't be run + // return 1; + + // The below code will be run + return 0; +} +``` + +Output: + +```text +1 hello world +``` + +## See also + + + +C documentation for comment + + diff --git a/src/content/docs/cpp/language/main_function.mdx b/src/content/docs/cpp/language/main_function.mdx new file mode 100644 index 00000000..576a6d35 --- /dev/null +++ b/src/content/docs/cpp/language/main_function.mdx @@ -0,0 +1,194 @@ +--- +title: Main function +cppdoc: + keys: ["cpp.lang.main"] +--- + +import Code from "@astrojs/starlight/components"; + +import Behavior from "@components/Behavior.astro"; +import { Decl, DeclDoc } from "@components/decl-doc"; +import { DR, DRList } from "@components/defect-report"; +import { Desc, DescList, DocLink } from '@components/index'; +import Missing from "@components/Missing.astro"; +import { ParamDoc, ParamDocList } from "@components/param-doc"; +import { Revision } from "@components/revision"; +import WG21PaperLink from "@components/WG21PaperLink.astro"; + +A program shall contain a global namespace function named `main`, which is the designated start of the program in hosted environment. It shall have one of the following forms: + + + + ```cpp + int main() { /* body */ } + ``` + + + A `main` function running independently of environment-provided arguments. + + + + + ```cpp + int main(int argc, char *argv[]) { /* body */ } + ``` + + + A `main` function accepting environment-provided arguments. + + The names of `argc` and `argv` are arbitrary, as well as the representation of the types of the parameters: `int main(int ac, char** av)` is equally valid. + + + + + ```cpp + int main(/* implementation-defined */) { /* body */ } + ``` + + + A main function of implement-defined type, returning `int`. + + +The C++ standard recommends implementation-defined main functions to place the extra (optional) parameters after `argv`. + + + + Non-negative value representing the number of arguments passed to the program from the environment in which the program is run. + + + Pointer to the first element of an array of `argc + 1` pointers, of which the last one is null and the previous ones, if any, point to null-terminated multibyte strings that represent the arguments passed to the program from the execution environment. If `argv[0]` is not a null pointer (or, equivalently, if `argc > 0`), it points to a string that represents the name used to invoke the program, or to an empty string. + + + The body of the `main` function. + + + +## Explanation + +The `main` function is called at program startup after initialization of the non-local objects with static storage duration. It is the designated entry point to a program that is executed in hosted environment (that is, with an operating system). The entry points to freestanding programs (boot loaders, OS kernels, etc) are implementation-defined. + +The parameters of the two-parameter form of the `main` function allow arbitrary multibyte character strings to be passed from the execution environment (these are typically known as _command line arguments_), the pointers [`argv[1]`, `argv[argc - 1]`] point at the first characters in each of these strings. `argv[0]` (if non-null) is the pointer to the initial character of a null-terminated multibyte string that represents the name used to invoke the program itself (or an empty string `""` if this is not supported by the execution environment). The strings are modifiable, although these modifications do not propagate back to the execution environment: they can be used, for example, with `std::strtok`. The size of the array pointed to by `argv` is at least `argc + 1`, and the last element, `argv[argc]`, is guaranteed to be a null pointer. + +The `main` function has the following several special properties: + +- The body of the `main` function does not need to contain the `return` statement: if control reaches the end of main without encountering a `return` statement, the effect is that of executing `return 0;`. +- Execution of the return (or the implicit return upon reaching the end of main) is equivalent to first leaving the function normally (which destroys the objects with automatic storage duration and evaluates any postcondition assertions of main) and then calling `std::exit` with the same argument as the argument of the return (`std::exit` then destroys static objects and terminates the program). + +The `main` function has several restrictions (violation of which renders the program ill-formed): + +- It cannot be named anywhere in the program + - in particular, it cannot be called recursively + - its address cannot be taken + - it cannot be used in a `typeid` expression or a `decltype` specifier +- It cannot be predefined and cannot be overloaded: effectively, the name `main` in the global namespace is reserved for functions (although it can be used to name classes, namespaces, enumerations, and any entity in a non-global namespace, except that an entity named `main` cannot be declared with C language linkage in any namespace). +- It cannot be defined as deleted or declared with any language linkage, constexpr, consteval, inline, or static. +- The return type of the `main` function cannot be deduced (`auto main() {...}` is not allowed). +- The `main` function cannot be a coroutine. +- The `main` function cannot attach to a named module. + +## Notes + +If the `main` function is defined with a function `try` block, the exceptions thrown by the destructors of static objects (which are destroyed by the implied `std::exit`) are not caught by it. + +The manner in which the arguments given at the OS command line are converted into the multibyte character arrays referenced by `argv` may involve implementation-defined processing: + +- MSDN: [Parsing C++ Command-Line Arguments](https://docs.microsoft.com/en-us/cpp/cpp/main-function-command-line-args) +- POSIX: [Shell Introduction](https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_01) + +A very common implementation-defined form of `main()` has a third argument (in addition to `argc` and `argv`), of type `char**`, pointing at [an array of pointers to the execution environment variables](https://pubs.opengroup.org/onlinepubs/9699919799/functions/exec.html). + +## Example + +Demonstrates how to inform a program about where to find its input and where to write its results. A possible invocation: `./convert table_in.dat table_out.dat` + +```cpp +#include +#include +#include + +int main(int argc, char *argv[]) { + std::cout << "argc == " << argc << '\n'; + + for (int ndx{}; ndx != argc; ++ndx) + std::cout << "argv[" << ndx << "] == " << std::quoted(argv[ndx]) << '\n'; + std::cout << "argv[" << argc << "] == " + << static_cast(argv[argc]) << '\n'; + + /* ... */ + + return argc == 3 ? EXIT_SUCCESS : EXIT_FAILURE; // optional return value +} +``` + +Possible output: + +``` +argc == 3 +argv[0] == "./convert" +argv[1] == "table_in.dat" +argv[2] == "table_out.dat" +argv[3] == 0 +``` + +## References + + + +
+ Extended Content +
+
+ +- C++23 standard (ISO/IEC 14882:2024) + - 6.9.3.1 main function [basic.start.main] +
+ +## Defect reports + +The following behavior-changing defect reports were applied retroactively to previously published C++ standards. + + + + + supported parameter names of `main` were overly restricted + + + all valid parameter names are supported + + + + + + the `main` function could be declared with a language linkage + + + prohibited + + + + + + the `main` function could be declared `consteval` + + + prohibited + + + + + + whether the `main` function is used after was unclear + + + it is considered used when named + + + + +## See also + + + + C documentation for **main function** + + diff --git a/src/content/docs/cpp/library/_meta.yml b/src/content/docs/cpp/library/_meta.yml new file mode 100644 index 00000000..8b142a65 --- /dev/null +++ b/src/content/docs/cpp/library/_meta.yml @@ -0,0 +1 @@ +label: C++ Library Reference diff --git a/src/content/docs/cpp/library/index.mdx b/src/content/docs/cpp/library/index.mdx new file mode 100644 index 00000000..2c05e0a5 --- /dev/null +++ b/src/content/docs/cpp/library/index.mdx @@ -0,0 +1,745 @@ +--- +title: Overview +sidebar: + order: 1 +cppdoc: + keys: ["cpp.library"] +--- + +import { Card } from "@astrojs/starlight/components"; + +import Behavior from "@components/Behavior.astro"; +import { CppHeader } from "@components/header"; +import { DR, DRList } from "@components/defect-report"; +import { + FeatureTestMacro, + FeatureTestMacroValue, +} from "@components/feature-test-macro"; +import FlexTable from "@components/FlexTable.astro"; +import Missing from "@components/Missing.astro"; +import { Revision, RevisionBlock } from "@components/revision"; + +The C++ standard library provides a wide range of facilities that are usable in standard C++. + +## Category + +The language support library provides components that are required by certain parts of the C++ language, such as memory allocation (new/delete) and exception processing. + + + The concepts library describes library components that C++ programs may use to perform compile-time validation of template arguments and perform function dispatch based on properties of types. + + +The diagnostics library provides a consistent framework for reporting errors in a C++ program, including predefined exception classes. + +The memory management library provides components for memory management, including smart pointers and scoped allocator. + + + The metaprogramming library describes facilities for use in templates and during constant evaluation, including type traits, integer sequence, and rational arithmetic. + + +The general utilities library includes components used by other library elements, such as a predefined storage allocator for dynamic storage management, and components used as infrastructure in C++ programs, such as tuples and function wrappers. + +The containers, iterators, ranges, and algorithms libraries provide a C++ program with access to a subset of the most widely used algorithms and data structures. + +The strings library provides support for manipulating text represented as homogeneous sequences of following types: `char`, `char8_t`, `char16_t`, `char32_t`, `wchar_t`, and any other character-like types. + +The text processing library provides regular expression matching and searching, utilities for text formatting, identifying text encodings, and localization facilities. + +The numerics library provides numeric algorithms and complex number components that extend support for numeric processing. The valarray component provides support for n-at-a-time processing, potentially implemented as parallel operations on platforms that support such processing. The random number component provides facilities for generating pseudo-random numbers. + +The time library provides generally useful time utilities. + +The input/output library provides the iostream components that are the primary mechanism for C++ program input and output. They can be used with other elements of the library, particularly strings, locales, and iterators. + + + The thread support library provides components to create and manage threads, including atomic operations, mutual exclusion, and inter-thread communication. + + + + The execution support library provides a framework for managing asynchronous execution on generic execution resources. + + +## Library contents + +The C++ standard library provides definitions for the entities and macros described in the synopses of the C++ standard library headers, unless otherwise specified. + +All library entities except `operator new` and `operator delete` are defined within the namespace `std` or namespaces nested within namespace `std` (except the entities for the C standard library facilities, see below). It is unspecified whether names declared in a specific namespace are declared directly in that namespace or in an inline namespace inside that namespace. + +### Headers + +Each element of the C++ standard library is declared or defined (as appropriate) in a _header_. A header is not necessarily a source file, nor are the sequences delimited by `<` and `>` in header names necessarily valid source file names. + +The C++ standard library provides the _C++ library headers_ and _additional C++ headers for C library facilities_ (see "headers" page for descriptions): + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Removed headers + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Removed headers + + + + + + + + + + + + + + + + + + + + +
+
+ +A freestanding implementation has an implementation-defined set of headers, see here for the minimal requirement on the set of headers. + +## C standard library + +The C++ standard library also makes available the facilities of the C standard library, suitably adjusted to ensure static type safety. The descriptions of many library functions rely on the C standard library for the semantics of those functions. + +In some cases, the signatures specified in standard C++ may be different from the signatures in the C standard library, and additional overloads may be declared, but the behavior and the preconditions (including those implied by C's restrict) are the same unless otherwise stated. + +For compatibility with the C standard library, the C++ standard library provides the C headers listed below. The intended use of these headers is for interoperability only. It is possible that C++ source files need to include one of these headers in order to be valid ISO C. Source files that are not intended to also be valid ISO C should not use any of the C headers. See here for descriptions. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Except otherwise noted, the contents of each header `cxxx` is the same as that of the corresponding header `xxx.h` as specified in the C standard library. In the C++ standard library, however, the declarations (except for names which are defined as macros in C) are within namespace scope of the namespace `std`. It is unspecified whether these names (including any overloads added) are first declared within the global namespace scope and are then injected into namespace `std` by explicit using-declarations. + +Names which are defined as macros in C (`assert`, `offsetof`, `setjmp`, `va_arg`, `va_end`, and `va_start`) must be defined as macros in the C++ standard library, even if C grants license for implementation as functions. + +Names that are defined as functions in C must be defined as functions in the C++ standard library. This disallows the practice, allowed in C, of providing a masking macro in addition to the function prototype. The only way to achieve equivalent inline behavior in C++ is to provide a definition as an extern inline function. + +Identifiers that are keywords or operators in C++ cannot be defined as macros in C++ standard library headers. In particular, including the standard header has no effect. + +### Names associated with safe functions in standard C :badge[C++17] + +If any C++ header is included, it is implementation-defined whether any of the following C standard Annex K names is declared in the global namespace (none of them is declared in namespace `std`): + + + `abort_handler_s` + `abort_handler_s` + `asctime_s` + `bsearch_s` + `constraint_handler_t` + `ctime_s` + `errno_t` + `fopen_s` + `fprintf_s` + `freopen_s` + `fscanf_s` + `fwprintf_s` + `fwscanf_s` + `gets_s` + `gmtime_s` + `ignore_handler_s` + `L_tmpnam_s` + `localtime_s` + `mbsrtowcs_s` + `mbstowcs_s` + `mbstowcs_s` + `memcpy_s` + `memmove_s` + `memset_s` + `printf_s` + `qsort_s` + `RSIZE_MAX` + `rsize_t` + `scanf_s` + `set_constraint_handler_s` + `snprintf_s` + `snwprintf_s` + `sscanf_s` + `strcat_s` + `strcpy_s` + `strerror_s` + `strerrorlen_s` + `strlen_s` + `strncat_s` + `strncpy_s` + `strtok_s` + `swprintf_s` + `swscanf_s` + `TMP_MAX_S` + `tmpfile_s` + `tmpnam_s` + `vfprintf_s` + `vfscanf_s` + `vfwprintf_s` + `vfwscanf_s` + `vprintf_s` + `vscanf_s` + `vsnprintf_s` + `vsnwprintf_s` + `vsprintf_s` + `vsscanf_s` + `vswprintf_s` + `vswscanf_s` + `vswscanf_s` + `vwprintf_s` + `vwscanf_s` + `wcrtomb_s` + `wcscat_s` + `wcscpy_s` + `wcsncat_s` + `wcsncpy_s` + `wcsnlen_s` + `wcsrtombs_s` + `wcstok_s` + `wcstombs_s` + `wmemcpy_s` + `wmemmove` + `wprintf_s` + `wscanf_s` + + +## Using the library + +### Including headers + +The entities in the C++ standard library are defined in headers, whose contents are made available to a translation unit when it contains the appropriate `#include` preprocessing directive. + +A translation unit may include library headers in any order. Each may be included more than once, with no effect different from being included exactly once, except that the effect of including either or depends each time on the lexically current definition of `NDEBUG`. + +A translation unit can only include a header outside of any declaration or definition, and lexically before the first reference in that translation unit to any of the entities declared in that header. No diagnostic is required. + + + In module units, headers can only be included in global module fragments. + + +### Importing headers :badge[C++20] + +The C++ library headers, or, for a freestanding implementation, the subset of such headers that are provided by the implementation, are collectively known as the _importable C++ library headers_. + +The contents of importable C++ library headers are made available to a translation unit when it contains the appropriate import declaration. + +### Importing modules :badge[C++23] + +The C++ standard library provides the following _C++ library modules_: + +- The named module `std` exports declarations in namespace std that are provided by the importable C++ library headers (e.g. `std::rotr` from ) and the C++ headers for C library facilities (e.g. `std::puts` from ). It additionally exports declarations in the global namespace for the storage allocation and deallocation functions that are provided by (e.g. `::operator new`). +- The named module `std.compat` exports the same declarations as the named module `std`, and additionally exports declarations in the global namespace corresponding to the declarations in namespace std that are provided by the C++ headers for C library facilities (e.g. `::fclose`). + +For each declaration in the standard library, + +- the module it attaches to is unspecified, and +- it denotes the same entity regardless of whether it was made reachable through including a header, importing a header unit, or importing a C++ library module. + +### Linkage + +Entities in the C++ standard library have external linkage. Unless otherwise specified, objects and functions have the default `extern "C++"` linkage. + +Whether a name from the C standard library declared with external linkage has `extern "C"` or `extern "C++"` linkage is implementation-defined. The C++ standard recommends using `extern "C++"` in this case. + +Objects and functions defined in the library and required by a C++ program are included in the program prior to program startup. + +## Requirements on standard library implementations + +### Guarantees + +A C++ header must provide declarations and definitions that appear in + + - the synopsis of that header, or + - the synopsis of another header which is appeared to be included in the synopsis of that header. + +For types and macros defined in multiple headers (such as `NULL`), including any number of these headers in any order never violates the one definition rule. + +Unless otherwise specified, all object-like macros defined by the C standard library that expand to integral constant expressions can be used in `#if` preprocessing directives. + +Calling a standard library non-member function signature always results in actually calling that function. Therefore a conforming standard library implementation cannot define additional non-member functions that may be called by a valid C++ program. + +Non-member function signatures are never declared with additional default arguments. + +Unless otherwise specified, calls made by functions in the standard library to non-operator, non-member functions do not use functions from another namespace which are found through argument-dependent name lookup. + +For each friend declaration of a function (template) within a class (template) definition, no other declaration is provided for that function (template). + + + Standard library function signatures can only be declared as `constexpr` if they are required to be constexpr (libstdc++ cmath [is notably non-conforming](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102916) here). If a header provides any non-defining declarations of constexpr functions or constructors, the corresponding definitions should also be provided within that header. + + Unless otherwise specified, each standard library function should meet each of the following requirements to prevent data races: + + - A C++ standard library function cannot (directly or indirectly) access objects accessible by threads other than the current thread unless the objects are accessed (directly or indirectly) via the function’s arguments, including `this`. + - A C++ standard library function cannot (directly or indirectly) modify objects accessible by threads other than the current thread unless the objects are accessed (directly or indirectly) via the function’s non-const arguments, including `this`. + - For example, an object with static storage duration cannot be used for internal purposes without synchronization because doing so can cause a data race even in programs that do not explicitly share objects between threads. + - A C++ standard library function cannot access objects indirectly accessible via its arguments or via elements of its container arguments except by invoking functions required by its specification on those container elements. + - An operation on iterators obtained by calling a standard library container or string member function can access, but not modify, the underlying container. + - In particular, container operations that invalidate iterators conflict with operations on iterators associated with that container. + - A C++ standard library function can only perform all operations solely within the current thread if those operations have effects that are visible to users. + - Operations without visible side effects can be parallelized. + + +For each class defined in the C++ standard library required to be derived from another class defined in the C++ standard library, + +- the base class must be virtual if it is specified as `virtual`, +- the base class cannot be virtual if it is not specified as `virtual`, and +- unless otherwise specified, types with distinct names shall be distinct types. + + + Unless otherwise specified, all types specified in the C++ standard library are non-final types. + + +If a function defined in the C++ standard library is specified to throw an exception (in a particular situation) of a given type, the exception thrown can only have that type or a type derived from that type so that an exception handler for the base type can catch it. + +Functions from the C standard library can only throw exceptions when such a function calls a program-supplied function that throws an exception (`qsort()` and `bsearch()` meet this condition). + +Destructor operations defined in the C++ standard library never throw exceptions. Every destructor in the C++ standard library behaves as if it had a non-throwing exception specification. + + + If a function in the C++ standard library report errors via a `std::error_code` object, that object's `category()` member must return `std::system_category()` for errors originating from the operating system, or a reference to an implementation-defined `std::error_category` object for errors originating elsewhere. The possible values of `value()` for each of these error categories should be defined. + + Objects of types defined in the C++ standard library may be moved from. Move operations can either be explicitly specified or implicitly generated. Unless otherwise specified, such moved-from objects will be placed in a valid but unspecified state. + + An object of a type defined in the C++ standard library may be move-assigned to itself. Unless otherwise specified, such an assignment places the object in a valid but unspecified state. + + +### Implementation freedom + +It is unspecified whether any member or non-member functions in the C++ standard library are defined as inline. + +For a non-virtual C++ standard library member function, a different set of member function signatures can be declared, provided that any call to that member function that would select an overload from the given set of declarations behaves as if that overload was selected. This allows, for instance: + +- adding parameters with default arguments, +- replacing a member function with default arguments with two or more member functions with equivalent behavior, or +- adding additional signatures for a member function name. + +Unless otherwise specified, it is implementation-defined which functions in the C++ standard library may be recursively reentered. + + + C++ standard library implementations can share their own internal objects between threads if the objects are not visible to users and are protected against data races. + + +It is unspecified whether any function signature or class in the C++ standard library is a friend of another class in the C++ standard library. + +The names and global function signatures described here are reserved to the implementation. + +Any class in the C++ standard library can be derived from a class with a name reserved to the implementation. If a class defined in the C++ standard library is required to be derived from other classes in the C++ standard library, that class can be derived directly from the required base or indirectly through a hierarchy of base classes with names reserved to the implementation. + +If a function defined in the C++ standard library is not specified to throw an exception but does not have a non-throwing exception specification, the exception thrown is implementation-defined, but its type should be `std::exception` or any type derived from `std::exception`. + +The exception specification for a non-virtual function can be strengthened by adding a non-throwing exception specification. + + ## Standard library hardening :badge[C++26] + +An implementation can be a _hardened implementation_, whether the implementation is hardened is implementation-defined. + +Some standard library member functions (and member function templates) have _hardened precondition_. When such a function is invoked: + +- If the implementation is hardened, prior to any other observable side effects of the function, one or more contract assertions whose predicates are as described in the hardened precondition are evaluated with a checking semantic. If any of these assertions is evaluated with a non-terminating semantic and the contract-violation handler returns, the behavior is undefined. +- If the implementation is not hardened, when a hardened precondition is violated, the behavior is undefined. + +## Notes + +[libstdc++](https://www.gnu.org/software/gcc/gcc-15/changes.html#libstdcxx), [libc++](https://releases.llvm.org/19.1.0/projects/libcxx/docs/UsingLibcxx.html#extensions-to-the-c-23-modules-std-and-std-compat), and [STL](https://github.com/microsoft/STL/issues/3945) all support using standard library modules in C++20 mode. + + + + Standard library modules `std` and `std.compat` + + + + + + Hardened `std::array` + + + + + + Hardened `std::basic_string` + + + + + + Hardened `std::basic_string_view` + + + + + + Hardened `std::bitset` + + + + + + Hardened `std::deque` + + + + + + Hardened `std::expected` + + + + + + Hardened `std::forward_list` + + + + + + Hardened `std::inplace_vector` + + + + + + Hardened `std::list` + + + + + + Hardened `std::mdspan` + + + + + + Hardened `std::optional` + + + + + + Hardened `std::span` + + + + + + Hardened `std::valarray` + + + + + + Hardened `std::vector` + + + +## Defect reports + +The following behavior-changing defect reports were applied retroactively to previously published C++ standards. + + + + + the language linkages of the names from the C standard library were unspecified + + + they are implementation-defined + + + + + + the exception specifications of virtual functions could be strengthened + + + only allowed for non-virtual functions + + + + + + the specification on non-member functions only considered global functions + + + also considers non-global functions + + + + + + standard library functions might call non-member functions from other namespaces due to argument-dependent lookup + + + prohibited unless otherwise specified + + + + + + was not a C++ library header + + + it is a C++ library header + + + + + + library header dependencies were not specified + + + specified (listed in synopses) + + + + + + C++ headers for C library facilities could only provide definitions in namespace `std` + + + allowed to define in global namespace and then inject into namespace `std` + + + + + + identifiers that are keywords or operators in C++ could be defined as macros in C++ standard library headers (only is required not to define them as macros) + + + all C++ standard library headers cannot define them as macros + + + + + + C++ headers must include a C++ header that contains any needed definition + + + C++ headers must provide declarations and definitions that are directly or indirectly included in its synopsis + + + + + + it was unspecified whether the functions not required by the standard to be constexpr can be declared `constexpr` by the standard library + + + prohibited + + + + + + a diagnostic was required if a header is included at an incorrect position + + + no diagnostic is required in this case + + + diff --git a/src/content/docs/cpp/library/utilities/_meta.yml b/src/content/docs/cpp/library/utilities/_meta.yml new file mode 100644 index 00000000..d6c55018 --- /dev/null +++ b/src/content/docs/cpp/library/utilities/_meta.yml @@ -0,0 +1 @@ +label: Utilities library diff --git a/src/content/docs/cpp/library/utilities/move.mdx b/src/content/docs/cpp/library/utilities/move.mdx new file mode 100644 index 00000000..40755f21 --- /dev/null +++ b/src/content/docs/cpp/library/utilities/move.mdx @@ -0,0 +1,154 @@ +--- +title: std::move +cppdoc: + keys: ["cpp.library.utilities.move"] + revision: + since: C++11 +--- + +import { CppHeader } from "@components/header"; +import { Decl, DeclDoc } from "@components/decl-doc"; +import { Desc, DescList } from "@components/desc-list"; +import Missing from "@components/Missing.astro"; +import { ParamDoc, ParamDocList } from "@components/param-doc"; +import { Revision, RevisionBlock } from "@components/revision"; + +Defined in header . + + + + + ```cpp + template + typename std::remove_reference::type&& move(T&& t) noexcept; + ``` + + + + + ```cpp + template + constexpr std::remove_reference_t&& move(T&& t) noexcept; + ``` + + + + `std::move` is used to _indicate_ that an object `t` may be "moved from", i.e. allowing the efficient transfer of resources from `t` to another object. + + In particular, `std::move` produces an xvalue expression that identifies its argument `t`. It is exactly equivalent to a `static_cast` to an rvalue reference type. + + +## Parameters + + + + the object to be moved + + + +## Return value + +`static_cast::type&&>(t)` + +## Notes + +The functions that accept rvalue reference parameters (including move constructors, move assignment operators, and regular member functions such as `std::vector::push_back`) are selected, by overload resolution, when called with rvalue arguments (either prvalues such as a temporary object or xvalues such as the one produced by `std::move`). If the argument identifies a resource-owning object, these overloads have the option, but aren't required, to _move_ any resources held by the argument. For example, a move constructor of a linked list might copy the pointer to the head of the list and store `nullptr` in the argument instead of allocating and copying individual nodes. + +Names of rvalue reference variables are lvalues and have to be converted to xvalues to be bound to the function overloads that accept rvalue reference parameters, which is why move constructors and move assignment operators typically use `std::move`: + +```cpp +// Simple move constructor +// the expression "arg.member" is lvalue +A(A&& arg) : member(std::move(arg.member)) {} + +// Simple move assignment operator +A& operator=(A&& other) { + member = std::move(other.member); + return *this; +} +``` + +One exception is when the type of the function parameter is a forwarding reference (which looks like an rvalue reference to type template parameter), in which case `std::forward` is used instead. + +Unless otherwise specified, all standard library objects that have been moved from are placed in a "valid but unspecified state", meaning the object's class invariants hold (so functions without preconditions, such as the assignment operator, can be safely used on the object after it was moved from): + +```cpp +std::vector v; +std::string str = "example"; +v.push_back(std::move(str)); // str is now valid but unspecified +str.back(); // undefined behavior if size() == 0: back() has a precondition !empty() +if (!str.empty()) + str.back(); // OK, empty() has no precondition and back() precondition is met + +str.clear(); // OK, clear() has no preconditions +``` + +Also, the standard library functions called with xvalue arguments may assume the argument is the only reference to the object; if it was constructed from an lvalue with std::move, no aliasing checks are made. However, self-move-assignment of standard library types is guaranteed to place the object in a valid (but usually unspecified) state: + +```cpp +std::vector v = {2, 3, 3}; +v = std::move(v); // the value of v is unspecified +``` + +## Example + +```cpp +#include +#include +#include +#include +#include + +int main() { + std::string str = "Salut"; + std::vector v; + + // uses the push_back(const T&) overload, which means + // we'll incur the cost of copying str + v.push_back(str); + std::cout << "After copy, str is " << std::quoted(str) << '\n'; + + // uses the rvalue reference push_back(T&&) overload, + // which means no strings will be copied; instead, the contents + // of str will be moved into the vector. This is less + // expensive, but also means str might now be empty. + v.push_back(std::move(str)); + std::cout << "After move, str is " << std::quoted(str) << '\n'; + + std::cout << "The contents of the vector are {" << std::quoted(v[0]) + << ", " << std::quoted(v[1]) << "}\n"; +} +``` + +Possible output: + +``` +After copy, str is "Salut" +After move, str is "" +The contents of the vector are {"Salut", "Salut"} +``` + +## See also + + + + + `forward` + + forwards a function argument and use the type template argument to preserve its value category + + + + + `move_if_noexcept` + + converts the argument to an xvalue if the move constructor does not throw + + + + + `move` + + moves a range of elements to a new location + + diff --git a/src/content/docs/development/_meta.yml b/src/content/docs/development/_meta.yml new file mode 100644 index 00000000..7b64f33d --- /dev/null +++ b/src/content/docs/development/_meta.yml @@ -0,0 +1 @@ +label: CppDoc Development Guide diff --git a/src/content/docs/development/guide/_meta.yml b/src/content/docs/development/guide/_meta.yml new file mode 100644 index 00000000..cd35b4f2 --- /dev/null +++ b/src/content/docs/development/guide/_meta.yml @@ -0,0 +1,2 @@ +label: Development Guideline +order: 3 diff --git a/src/content/docs/development/guide/component-docs-for-llm.mdx b/src/content/docs/development/guide/component-docs-for-llm.mdx new file mode 100644 index 00000000..804eeb29 --- /dev/null +++ b/src/content/docs/development/guide/component-docs-for-llm.mdx @@ -0,0 +1,563 @@ +--- +title: Component Documentation for LLM +sidebar: + order: 4 +--- + +This document provides comprehensive documentation for all custom components used in CppDoc. Each section includes a description, props, and usage examples. + +## Behavior + +The `Behavior` component gives highlight colors to its content, used for emphasizing keywords related to program behaviors. + +### Props + +- `kind` (required): One of `"well-def"`, `"impl-def"`, `"unspec"`, `"undef"`, `"ill-formed"`, `"ifndr"`. + +### Usage + + +import Behavior from "@components/Behavior.astro"; + +It is well-defined to do this. + +It is implementation-defined how this is achieved. + +It is unspecified which function argument will be evaluated first. + +The behavior is undefined to add two signed integers that overflows the result. + +It is ill-formed to use an undefined identifier. + +The program is ill-formed no diagnostics required if it violates the one-definition rule. + +## Declaration Documentation + +### DeclDoc + +The `DeclDoc` component gives brief introduction to a C/C++ declaration. It can contain multiple `Decl` components. + +#### Props + +- `autorevSince` (optional): The revision since which the declaration is available (e.g., `"C++11"`). Enables autorev. +- `id` (optional): A numeric identifier to display as "Declaration #id". + +#### Slots + +- `decl` (named): One or more `Decl` components. +- Default slot: The description text. + +#### Usage + + +import { Decl, DeclDoc } from "@components/decl-doc"; + + + + ```cpp + int main() { /* body */ } + ``` + + A `main` function running independently of environment-provided arguments. + + +Multiple declarations: + + + + + ```cpp + int main() { /* body */ } + ``` + + + ```cpp + int main(int argc, char *argv[]) { /* body */ } + ``` + + A `main` function is the entry point of a program. + + +With revision: + + +import { RevisionBlock } from "@components/revision"; + + + + + ```cpp + template + typename std::remove_reference::type&& move(T&& t) noexcept; + ``` + + + + + ```cpp + template + constexpr std::remove_reference_t&& move(T&& t) noexcept; + ``` + + + `std::move` is used to _indicate_ that an object `t` may be "moved from". + + + +### Decl + +The `Decl` component wraps a code block inside a `DeclDoc`. It has no props. + +#### Usage + +See above. + +## Description List + +### DescList + +The `DescList` component is a general component for displaying a list of items and their descriptions. + +#### Props + +None. + +#### Slots + +- Default slot: One or more `Desc` components. + +#### Usage + + +import { DescList, Desc } from "@components/desc-list"; +import { CHeader } from "@components/header"; + + + + + Conditionally compiled macro that compares its argument to zero + + + + Functions to determine the type contained in character data + + + +### Desc + +The `Desc` component represents a single item in a description list. + +#### Props + +- `autorevSince` (optional): Enables autorev for this item. +- `kind` (optional): A string displayed in parentheses after the description. + +#### Slots + +- `item` (named): The item being described (e.g., a header link). +- Default slot: The description text. + +#### Usage + + + + + Conditionally compiled macro that compares its argument to zero + + + +With revision: + + + + + + + Complex number arithmetic + + + +### DescItem + +Internal component used by `Desc`. Not typically used directly. + +## Parameters + +### ParamDocList + +The `ParamDocList` component displays a list of function or template parameters. + +#### Props + +None. + +#### Slots + +- Default slot: One or more `ParamDoc` components. + +#### Usage + + +import { ParamDocList, ParamDoc } from "@components/param-doc"; + + + + Non-negative value representing the number of arguments passed to the program. + + + Pointer to the first element of an array of `argc + 1` pointers. + + + + +### ParamDoc + +The `ParamDoc` component documents a single parameter. + +#### Props + +- `name` (required): The parameter name. + +#### Slots + +- Default slot: The parameter description. + +#### Usage + +See above. + +## Links + +### DocLink + +The `DocLink` component renders an inline link to a page associated with a doc key or absolute path. + +#### Props + +- `src` (required): The absolute path (e.g., `"/cpp/library/utilities/move"`). +- `section` (optional): The `id` of the HTML element to jump to, typically the `id` of heading tags generated from Markdown headings. + +#### Slots + +- Default slot: The link text. + +#### Usage + + +import DocLink from "@components/DocLink.astro"; + +Check out this page for more information. + +Check out this page for more information. + + +If the doc key does not exist, the component renders as plain text with missing styling. + +### CHeader + +The `CHeader` component renders an inline link to a C standard library header. + +#### Props + +- `name` (required): The header name without the `.h` suffix (e.g., `"stdio"`). +- `displayName` (optional): Custom display text. +- `nolink` (optional): If `true`, renders as plain text without a link. + +#### Usage + + + is a C standard library header. + + +### CppHeader + +The `CppHeader` component renders an inline link to a C++ standard library header. + +#### Props + +Same as `CHeader`. + +#### Usage + + +import { CppHeader } from "@components/header"; + + is a C++ standard library header. + + +### Header + +Base component for `CHeader` and `CppHeader`. Not used directly. + +### NamedReq + +The `NamedReq` component renders an inline link to a named requirement. + +#### Props + +- `name` (required): The name of the requirement. +- `bold` (optional): If `true`, the text renders bold. +- `displayName` (optional): Custom display text. +- `nolink` (optional): If `true`, renders as plain text without a link. + +#### Usage + + +import NamedReq from "@components/NamedReq.astro" + +A type is the type of an object +that can be used on the left of the function call operator. + + +## Feature Test Macros + +### FeatureTestMacro + +The `FeatureTestMacro` component renders a box that shows information about a feature test macro. + +#### Props + +- `name` (required): The macro name (e.g., `"__cpp_consteval"`). + +#### Slots + +- Default slot: One or more `FeatureTestMacroValue` components. + +#### Usage + + +import { FeatureTestMacro, FeatureTestMacroValue } from "@components/feature-test-macro"; + + + + Immediate functions + + + Making `consteval` propagate up + + + + +### FeatureTestMacroValue + +The `FeatureTestMacroValue` component represents a single value of a feature test macro. + +#### Props + +- `value` (required): The macro value (e.g., `"201811L"`). +- `since` (required): The revision since which this value is defined (e.g., `"C++20"`). + +#### Slots + +- Default slot: The feature description. + +#### Usage + +See above. + +## Defect Reports + +### DRList + +The `DRList` component shows a list of defect reports. + +#### Props + +None. + +#### Slots + +- Default slot: One or more `DR` components. + +#### Usage + + +import { DR, DRList } from "@components/defect-report"; + + + + + supported parameter names of `main` were overly restricted + + + all valid parameter names are supported + + + + + +### DR + +The `DR` component renders a single defect report. + +#### Props + +- `kind` (required): Either `"cwg"` (Core Working Group) or `"lwg"` (Library Working Group). +- `id` (required): The defect report number. +- `std` (required): The standard revision to which the defect applies (e.g., `"C++98"`). + +#### Slots + +- `behavior-published` (named): Description of the behavior as published. +- `correct-behavior` (named): Description of the correct behavior. + +#### Usage + +See above. + +## Missing Content + +### Missing + +The `Missing` component marks content that is still missing. + +#### Props + +None. + +#### Slots + +- Default slot: The text to mark as missing. + +#### Usage + + +import Missing from "@components/Missing.astro"; + +See this page for more information. + + +## Revision Components + +### Revision + +The `Revision` component renders an inline span with revision-specific content. + +#### Props + +- `since` (optional): The revision since which the content applies. +- `until` (optional): The revision until which the content applies. +- `removed` (optional): Alternative to `until`, indicates removal revision. +- `traits` (optional): Array of `{ trait: string, since: CxxRevision }` for traits like "deprecated". + +#### Slots + +- Default slot: The revision-specific content. + +#### Usage + + +import { Revision } from "@components/revision"; + +Some words here. This is introduced in C++20. Some more words here. + +This is removed in C++20. + +This applies from C++11 to C++17. + + + This is introduced in C++11 and deprecated since C++17. + + + +### RevisionBlock + +The `RevisionBlock` component renders a block-level container with revision-specific content. + +#### Props + +- `since`, `until`, `removed`, `traits`: Same as `Revision`. +- `noborder` (optional): If `true`, removes the border. +- `vertical` (optional): If `true`, uses vertical layout. + +#### Slots + +- Default slot: The content. + +#### Usage + + + This paragraph applies from C++11 to C++17. + + + + This paragraph is introduced in C++11, deprecated in C++20. + + + +### RevisionSelector + +The `RevisionSelector` component renders a dropdown for selecting a revision. + +#### Props + +- `revisions` (required): Array of `CxxRevision` strings. + +#### Usage + +Typically used automatically by the TableOfContents component. + +### RevisionTags + +Internal component used by `Revision` and `RevisionBlock`. Not used directly. + +## AutoCollapse + +The `AutoCollapse` component automatically collapses content that exceeds a maximum height, with an expand button. + +#### Props + +- `maxHeight` (optional): Maximum height in pixels before collapsing (default: 200). + +#### Slots + +- Default slot: The content to collapse. + +#### Usage + + +import AutoCollapse from "@components/AutoCollapse.astro"; + + + Long content here... + + + +## FlexTable + +The `FlexTable` component creates a flexible table layout using CSS flexbox. + +#### Props + +None. + +#### Slots + +- Default slot: The table cells. + +#### Usage + + +import FlexTable from "@components/FlexTable.astro"; + + +
Cell 1
+
Cell 2
+
Cell 3
+
+ + +## WG21PaperLink + +The `WG21PaperLink` component renders a link to a WG21 paper. + +#### Props + +- `paper` (required): The paper identifier (e.g., `"P1234R0"`). + +#### Usage + + +import WG21PaperLink from "@components/WG21PaperLink.astro"; + +See for details. diff --git a/src/content/docs/development/guide/doc-everything.mdx b/src/content/docs/development/guide/doc-everything.mdx new file mode 100644 index 00000000..dbe63e52 --- /dev/null +++ b/src/content/docs/development/guide/doc-everything.mdx @@ -0,0 +1,553 @@ +--- +title: Documenting Everything +sidebar: + order: 3 +--- + +import { Aside, Card, Code } from "@astrojs/starlight/components"; +import Behavior from "@components/Behavior.astro"; +import { CHeader, CppHeader } from "@components/header"; +import { Decl, DeclDoc } from "@components/decl-doc"; +import { Desc, DescList } from "@components/desc-list"; +import DocLink from "@components/DocLink.astro"; +import { DR, DRList } from "@components/defect-report"; +import { FeatureTestMacro, FeatureTestMacroValue } from "@components/feature-test-macro"; +import Missing from "@components/Missing.astro"; +import NamedReq from "@components/NamedReq.astro" +import { ParamDoc, ParamDocList } from "@components/param-doc"; +import { RevisionBlock } from "@components/revision"; + +This page contains guidelines for creating documents for various language or library entities. + +## Behavior + +The `Behavior` component gives highlight colors to its content, which could be used for emphasizing keywords related to program behaviors. + +```mdx +import Behavior from "@components/Behavior.astro"; + +It is well-defined to do this. + +It is implementation-defined +how this is achieved. + +It is unspecified +which function argument will be evaluated first. + +The behavior is undefined +to add two signed integers that overflows the result. + +It is ill-formed +to use an undefined identifier. + +The program is +ill-formed no diagnostics required +if it violates the one-definition rule. +``` + + + It is well-defined to do this. + + It is implementation-defined how this is achieved. + + It is unspecified which function argument will be evaluated first. + + The behavior is undefined to add two signed integers that overflows the result. + + It is ill-formed to use an undefined identifier. + + The program is ill-formed no diagnostics required if it violates the one-definition rule. + + +## Declaration + +### Basic Usage + +The `DeclDoc` component gives brief introduction to a C/C++ declaration. + +import declDocExample1 from "@src/assets/examples/development/guide/decl-doc-1.mdx?raw"; + + + + + + + ```cpp + int main() { /* body */ } + ``` + + + A `main` function running independently of environment-provided arguments. + + + +A `DeclDoc` component can contain multiple `Decl` as well: + +import declDocExample2 from "@src/assets/examples/development/guide/decl-doc-2.mdx?raw"; + + + + + + + ```cpp + int main() { /* body */ } + ``` + + + ```cpp + int main(int argc, char *argv[]) { /* body */ } + ``` + + + A `main` function is the entry point of a program. + + + +### Specifying Revisions + +You could specify revisions for each declaration with the `RevisionBlock` component: + +import declDocExample3 from "@src/assets/examples/development/guide/decl-doc-3.mdx?raw"; + + + + + + + + ```cpp + template + typename std::remove_reference::type&& move(T&& t) noexcept; + ``` + + + + + ```cpp + template + constexpr std::remove_reference_t&& move(T&& t) noexcept; + ``` + + + + `std::move` is used to _indicate_ that an object `t` may be "moved from", i. + e. allowing the efficient transfer of resources from `t` to another object. + + + + + +## Code block inline markers + +Special comments can be embedded within Markdown code blocks to specify part of codes has special meanings. Enable this feature by adding `cxx-mark` after the language name of code block's opening fence: + +import cxxMarkExample1 from "@src/assets/examples/development/guide/cxx-mark-1.mdx?raw"; + + + + + ```cpp cxx-mark + // syntax of for statement + /*$s:attr*//*$opt*/ for ( /*$s:init-statement*/ /*$s:condition*//*$opt*/ ; /*$s:expression*//*$opt*/ ) /*$s:statement*/ + + // exposition only alias template of conditionally const type + template< bool Const, class T > + using /*$e:maybe-const*/ = std::conditional_t; + ``` + + +Three kinds of markers are supported: + + + + ``` + /*$s:something*/ + ``` + + + Marks part of code to be a syntax notation. + + Rendered as: + + ```cpp cxx-mark + /*$s:something*/ + ``` + + + + + ``` + /*$e:something*/ + ``` + + + Marks part of code to be exposition only. + + Rendered as: + + ```cpp cxx-mark + /*$e:something*/ + ``` + + + + + ``` + something/*$opt*/ + ``` + + + Mark the previous part of code (often a syntax notation) to be optional. + + Rendered as: + + ```cpp cxx-mark + something/*$opt*/ + ``` + + +## Description list + +### Basic Usage + +The `DescList` component is a general component for displaying a list of items and their descriptions. It could be used for listing headers, functions, classes, members, etc. while giving each of them a brief introduction. + +```mdx +import { DescList, Desc } from "@components/desc-list"; + + + + + Conditionally compiled macro that compares its argument to zero + + + + + Functions to determine the type contained in character data + + + + + Macros reporting error conditions + + +``` + + + + + + Conditionally compiled macro that compares its argument to zero + + + + + Functions to determine the type contained in character data + + + + + Macros reporting error conditions + + + + +### Specifying Revisions + +You could attach revision information to each description list item with a combination of `RevisionBlock` and autorev attributes. + +```mdx +import { CHeader } from "@components/header"; +import { Desc, DescList } from "@components/desc-list"; +import { RevisionBlock } from "@components/revision"; + + + + + Conditionally compiled macro that compares its argument to zero + + + + + + + Complex number arithmetic + + + + + Functions to determine the type contained in character data + + +``` + + + + + + Conditionally compiled macro that compares its argument to zero + + + + + + + Complex number arithmetic + + + + + Functions to determine the type contained in character data + + + + + + + + +## Parameters + +The `ParamDocList` component can be used to document function or template parameters. + +```mdx + + + Non-negative value representing the number of arguments passed to the program. + + + Pointer to the first element of an array of `argc + 1` pointers. + + +``` + + + + + Non-negative value representing the number of arguments passed to the program. + + + Pointer to the first element of an array of `argc + 1` pointers. + + + + +## Links + +### Link to Another CppDoc Page + +The `DocLink` component allows you to render an inline link to a specified CppDoc page. The path to the target page must be an absolute path. + +```mdx +import DocLink from "@components/DocLink.astro"; + +Check out +this page +for more information about `std::move`. +``` + + + Check out this page for more information about `std::move`. + + +By setting the `section` attribute, you can link to a specific section (or any HTML elements with corresponding `id` attribute) of a CppDoc page. + +```mdx +import DocLink from "@components/DocLink.astro"; + +Standard library hardening +allows turning some instances of undefined behavior in the standard library +into a contract violation. +``` + + + Standard library hardening + allows turning some instances of undefined behavior in the standard library + into a contract violation. + + + + +### Link to Header + +The `CHeader` and the `CppHeader` component renders an inline link to the documentation page of a header file. + +```mdx +import { CHeader, CppHeader } from "@components/header"; + + is a C standard library header. +Entities in it can be used in a C++ program by including the header +. + + is a C++ standard library header. +``` + + + is a C standard library header. Entities in it can be used in a C++ program by including the header . + + is a C++ standard library header. + + + + +### Link to Named Requirement + +The `NamedReq` component renders an inline link to the documentation page of a named requirement. + +```mdx +import NamedReq from "@components/NamedReq.astro"; + +A type is the type of an object +that can be used on the left of the function call operator. +``` + + + A type is the type of an object + that can be used on the left of the function call operator. + + +You can set the `bold` attribute to `true`, to make the requirement name appear in bold. + +```mdx +import NamedReq from "@components/NamedReq.astro"; + +A type is the type of an object +that can be used on the left of the function call operator. +``` + + + A type is the type of an object + that can be used on the left of the function call operator. + + + + +## Feature Test Macros + +The `FeatureTestMacro` component renders to a box that shows information about a feature test macro. + +```mdx +import { + FeatureTestMacro, + FeatureTestMacroValue +} from "@components/feature-test-macro"; + + + + Immediate functions + + + Making `consteval` propagate up + + +``` + + + + + Immediate functions + + + Making `consteval` propagate up + + + + +## Defect Reports + +The `DRList` component shows a list of defect reports (DRs). Each defect report is rendered by a `DR` component. + +```mdx +import { DR, DRList } from "@components/defect-report"; + + + + + supported parameter names of `main` were overly restricted + + + all valid parameter names are supported + + + + + + the `main` function could be declared with a language linkage + + + prohibited + + + + + + the `main` function could be declared `consteval` + + + prohibited + + + +``` + + + + + + supported parameter names of `main` were overly restricted + + + all valid parameter names are supported + + + + + + the `main` function could be declared with a language linkage + + + prohibited + + + + + + the `main` function could be declared `consteval` + + + prohibited + + + + + +## Missing Content + +The `Missing` component could be used for marking content that is still missing. + +```mdx +import { Missing } from "@components/missing"; + +See this page for more information. +``` + + + See this page for more information. + diff --git a/src/content/docs/development/guide/index.mdx b/src/content/docs/development/guide/index.mdx new file mode 100644 index 00000000..da72aeb6 --- /dev/null +++ b/src/content/docs/development/guide/index.mdx @@ -0,0 +1,7 @@ +--- +title: Overview +sidebar: + order: 1 +--- + +This section gives guidelines on developing CppDoc documentation pages. Click a specific topic on the left sidebar to continue. diff --git a/src/content/docs/development/guide/new-component.mdx b/src/content/docs/development/guide/new-component.mdx new file mode 100644 index 00000000..3e8c7e8f --- /dev/null +++ b/src/content/docs/development/guide/new-component.mdx @@ -0,0 +1,11 @@ +--- +title: Adding New Components +sidebar: + order: 6 +--- + +import { Aside } from "@astrojs/starlight/components"; + + diff --git a/src/content/docs/development/guide/revision.mdx b/src/content/docs/development/guide/revision.mdx new file mode 100644 index 00000000..2fced990 --- /dev/null +++ b/src/content/docs/development/guide/revision.mdx @@ -0,0 +1,235 @@ +--- +title: Revision-Specific Content +sidebar: + order: 2 +--- + +import { Aside, Card } from "@astrojs/starlight/components"; +import { Revision, RevisionBlock } from "@components/revision"; + +CppDoc hosts documentation for all historic revisions of the C and C++ programming languages. This guide helps you create CppDoc content for multiple C/C++ revisions while keeping it easily readable by our readers. + +## Revision-Specific Spans + +### Basic Usage + +The `Revision` component renders to an inline-level `` that contains revision-specific content. + +```mdx {4} +import { Revision } from "@components/revision"; + +Some words here. +This is introduced in C++20. +Some more words here. +``` + + + Some words here. This is introduced in C++20. Some more words here. + + +The `until` attribute specifies the revision from which the content is removed from the language standard: + +```mdx {4} +import { Revision } from "@components/revision"; + +Some words here. +This is removed in C++20. +Some more words here. +``` + + + Some words here. This is removed in C++20. Some more words here. + + +You can specify `since` and `until` attributes simultaneously for content that applies to a range of revisions: + +```mdx {4} +import { Revision } from "@components/revision"; + +Some words here. +This applies from C++11 to C++17. +Some more words here. +``` + + + Some words here. This applies from C++11 to C++17. Some more words here. + + +In some context, it may be more fluent to use "removed" rather than "until". You can achieve this by changing the `until` attribute to `removed`: + +```mdx {4} +import { Revision } from "@components/revision"; + +Some words here. +This is removed in C++20. +Some more words here. +``` + + + Some words here. This is removed in C++20.Some more words here. + + +### Traits + +Some content may have _traits_ since a specific revision. For example, a wording may be depracated since a specific revision. Here, "deprecated" is a trait. You can specify arbitrary numbers of traits to the `Revision` component: + +```mdx {4-9} +import { Revision } from "@components/revision"; + +Some words here. + + This is introduced in C++11 and deprecated since C++17. + +Some more words here. +``` + + + Some words here.This is introduced in C++11 and deprecated since C++17. Some more words here. + + +## Revision-Specific Blocks + +### Basic Usage + +The `RevisionBlock` component renders to a block-level `
` that contains revision-specific content. Its basic usage is the same as the `Revision` component. + +```mdx {5-7,9-16} +import { RevisionBlock } from "@components/revision"; + +Some words in this paragraph. + + + This paragraph applies from C++11 to C++17. + + + + This paragraph is introduced in C++11, deprecated in C++20, and removed in + C++26. + + +Some more paragraphs. +``` + + + Some words in this paragraph. + + + This paragraph applies from C++11 to C++17. + + + + This paragraph is introduced in C++11, deprecated in C++20, and removed in + C++26. + + + Some more paragraphs. + + +### Vertical Layout + +By default, `RevisionBlock` has a left-to-right layout: the content sits at the left, and the revision information sits at the right. In addition, you can set the layout direction of `RevisionBlock` to top-to-bottom by setting the `vertical` attribute to `true`: + +```mdx {2} + + This paragraph is introduced in C++11, deprecated in C++20, and removed in + C++26. + +``` + + + + This paragraph is introduced in C++11, deprecated in C++20, and removed in + C++26. + + + +This layout is useful when embedding revision-related content into a [description list](./doc-everything#description-list). + +## Revision-Specific Sections + + + +## Autorev + +CppDoc users could pin CppDoc content to a specific revision by selecting from the dropdown list above the table-of-contents area on each page. For example, if the user selects and pins its view to C++17, it will hide all content that does not apply to C++17. + +The `Revision` and the `RevisionBlock` components work out-of-the-box with this feature. Besides, you can opt-in to this feature for arbitrary HTML elements by attaching revision information to them. + +### Specifying revision info for pages + +Each page could advertise its applied revision through its frontmatter. The advertised revision range will be picked up by the revision selector on the page to show the user a list of applicable revisions it could pin to. For example, this frontmatter indicates the content in the page applies from C++11 to C++17: + +```mdx +--- +title: My page +cppdoc: + revision: + lang: C++ + since: C++11 + until: C++20 +--- +``` + +Both of `since` and `until` are optional in the frontmatter. + +### Attach revision info to arbitrary HTML elements + +The `autoRev` helper function returns an object that contains a collection of HTML element attributes that, when applied to an HTML element, let autorev show and hide the HTML element according to the selected revision: + +```mdx +import { autoRev } from "@components/revision"; + +
+ This div will display only when user selects C++11, C++14, or C++17. +
+``` + + + +### Advanced usage + +In rare circumstances you may want to listen for revision changes and perform actions accordingly. This could be achieved by subscribing to the `selectedRevision` [nanostore](https://github.com/nanostores/nanostores) state: + +```astro +--- +--- + +
+ Your content here. +
+ + +``` diff --git a/src/content/docs/development/guide/translation.mdx b/src/content/docs/development/guide/translation.mdx new file mode 100644 index 00000000..b5a72cce --- /dev/null +++ b/src/content/docs/development/guide/translation.mdx @@ -0,0 +1,11 @@ +--- +title: Translation and i18n +sidebar: + order: 5 +--- + +import { Aside } from "@astrojs/starlight/components"; + + diff --git a/src/content/docs/development/guide/xref.mdx b/src/content/docs/development/guide/xref.mdx new file mode 100644 index 00000000..5cb173e1 --- /dev/null +++ b/src/content/docs/development/guide/xref.mdx @@ -0,0 +1,11 @@ +--- +title: Cross References +sidebar: + order: 4 +--- + +import { Aside } from "@astrojs/starlight/components"; + + diff --git a/src/content/docs/development/migration/_meta.yml b/src/content/docs/development/migration/_meta.yml new file mode 100644 index 00000000..b0c3353c --- /dev/null +++ b/src/content/docs/development/migration/_meta.yml @@ -0,0 +1,2 @@ +label: Migration Guide +order: 2 diff --git a/src/content/docs/development/migration/guideline.mdx b/src/content/docs/development/migration/guideline.mdx new file mode 100644 index 00000000..1947450f --- /dev/null +++ b/src/content/docs/development/migration/guideline.mdx @@ -0,0 +1,38 @@ +--- +title: Migration Guidelines +sidebar: + order: 2 +--- + +import { Aside } from "@astrojs/starlight/components"; + +This document gives guidelines to migrate content from cppreference to CppDoc. + + + + + +## Page Revisions + +If the entire page is associated with specific C/C++ standard revisions, make sure the revisions are specified in the `cppdoc.revision` frontmatter: + +```mdx +--- +title: Page Title +cppdoc: + revision: + lang: C++ + since: C++11 + until: C++20 +--- +``` + +The `since` and `until` fields are both optional. + +## Cross References + +Cross references are links within a CppDoc page that point to another CppDoc page. Please make sure all cross references are established using the [`DocLink` component](../guide/doc-everything#link-to-another-cppdoc-page). diff --git a/src/content/docs/development/migration/index.mdx b/src/content/docs/development/migration/index.mdx new file mode 100644 index 00000000..58f63228 --- /dev/null +++ b/src/content/docs/development/migration/index.mdx @@ -0,0 +1,75 @@ +--- +title: Migration Workflow +sidebar: + order: 1 +--- + +import { Aside, LinkCard } from "@astrojs/starlight/components"; + +We're now in the process of migrating pages from [cppreference] to CppDoc. To start, check out our live-updated [migration progress document](https://github.com/cppdoc-cc/cppdoc/blob/migrate-progress/CPPREF_MIGRATE_PROGRESS.md) on GitHub. This document lists all pages on cppreference and their migration status. Choose a page that has not been migrated yet, and you could start migrating it. You could either migrate the page [manually](#migrate-a-page-manually) or [with the help of an AI agent](#migrate-a-page-with-the-help-of-an-ai-agent). + +[cppreference]: https://en.cppreference.com/index.html + +Here are pages that you may constantly find useful during migration. + + + + + +## Migrate a page manually + +Once you selected a cppreference page to migrate, check out the file [`slug_map.json`](https://github.com/cppdoc-cc/cppdoc/blob/main/migrate/slug_map.json), which provides a mapping from cppreference slugs to CppDoc slugs, to find the slug of the corresponding page in CppDoc. This file is rather large, you could use your browser's search function to locate the entry for the cppreference page you want to migrate. + +For example, if the cppreference page you want to migrate is `cpp/concepts/integral`, you could find the following entry in `slug_map.json` related to the page: + +```json +{ + "cppref": "cpp/concepts/integral", + "cppdoc": "cpp/library/concepts/integral" +} +``` + +So the slug of the migrated CppDoc page should be `cpp/library/concepts/integral`. This is where you should create the new CppDoc page. + + + +After determining the CppDoc slug of the migrated page, you could create the page and start migrating page contents from cppreference to CppDoc. Please follow our documentation convention during migration. + +When everything is finished, [create a pull request](https://github.com/cppdoc-cc/cppdoc/compare) to submit your changes. The community will review your changes and provide feedback. If everything goes well, your changes will be merged and deployed to the live website immediately after merge. + +## Migrate a page with the help of an AI agent + +To make our life easier, we have an experimental AI agent that could help you migrate a page. Its usage is completely optional. + +The agent is embedded into the GitHub actions pipeline. It grabs a cppreference page you specified, try hard to rewrite it in CppDoc convention, and eventually creates a pull request. Once the pull request is opened, you and other community members could review it and make further changes on it. + + + + + +To start, select a cppreference page which has not been migrated in the [migration progress document](https://github.com/cppdoc-cc/cppdoc/blob/migrate-progress/CPPREF_MIGRATE_PROGRESS.md). + +Then click the "create" link in the "CppDoc Link" table column. This will take you to a pre-filled "new GitHub issue" page. The new issue's title is the URL to the cppreference page, and the new issue has an issue label `migrate-cppref-page`. After filling in any descriptive text for the new issue, click the "Create" button to create the issue. + +Creation of the new issue will trigger the execution of an GitHub Action workflow. The workflow will invoke the AI agent to migrate the page. After the agent finishes, it will automatically create a draft pull request with the migrated page. Review the migrated content, make any necessary changes, and mark the pull request ready when done. The community will review your changes and provide feedback. If everything goes well, your changes will be merged and deployed to the live website immediately after merge. + + diff --git a/src/content/docs/development/start.mdx b/src/content/docs/development/start.mdx new file mode 100644 index 00000000..c56a3e76 --- /dev/null +++ b/src/content/docs/development/start.mdx @@ -0,0 +1,86 @@ +--- +title: Getting Started +sidebar: + order: 1 +--- + +import { Aside, FileTree, Tabs, TabItem } from "@astrojs/starlight/components"; + +**Thanks for your interest in contributing to CppDoc!** + +CppDoc is an open documentation for the C/C++ programming languages and their standard libraries. It is built on top of the [Starlight] [Astro] theme, and maintained by C/C++ enthusiasts in an open community. + +[Starlight]: https://starlight.astro.build/ +[Astro]: https://astro.build/ + + + +## Quick Start + +### Clone the source + +The source code of CppDoc is hosted on [GitHub](https://github.com/cppdoc-cc/cppdoc). You can clone the repository to your local by running the following command in your terminal: + +```bash +git clone https://github.com/cppdoc-cc/cppdoc.git +``` + +### Start the development server + +When working locally, a development server allows you to preview your changes and automatically refreshes your browser when you make changes. + +Inside the `cppdoc` project directory, run the following command to start the development server: + + + + ```bash + npm i + npm run dev + ``` + + + +### Add content and make changes + +Documentation pages are typically written in MDX files. All these files are kept under the `src/content/docs` directory, which has a directory hierarchy as follows: + + + +- src/content/docs + - c + - language Documentation for the C programming language + - … + - library Documentation for the C standard library + - … + - cpp + - language Documentation for the C++ programming language + - … + - library Documentation for the C++ standard library + - … + + + +Read more about our documentation development guidelines in the [Development Guideline](./guide) section. + +### Next steps + +Once you have made a change, you can [issue a pull request](https://github.com/cppdoc-cc/cppdoc/compare) to submit your change to the CppDoc community. Community members will review your change, and deploy it to the live CppDoc site. + +## Build Static Website + +CppDoc is a static website. To build a static site from the source code, run the following commands in the project directory: + + + + ```bash + npm i + npm run build + ``` + + + +## Troubleshooting + +If you met any problems, please check out our [Development Guideline](./guide). If you cannot find what you're looking for, feel free to ask for help in our community. diff --git a/src/content/docs/index.mdx b/src/content/docs/index.mdx new file mode 100644 index 00000000..beaba508 --- /dev/null +++ b/src/content/docs/index.mdx @@ -0,0 +1,29 @@ +--- +title: CppDoc +# Remove the following line to display the site sidebar on this page. +template: splash +hero: + tagline: An open documentation for the C/C++ programming languages and their standard libraries. + image: + file: ../../assets/cpp-logo.svg + actions: + - text: Reference + link: /cpp/language/basics + variant: primary + icon: right-arrow + - text: GitHub Repository + link: https://github.com/cppdoc-cc/cppdoc + icon: github + variant: minimal +banner: + content: We're looking for your contributions! +--- + +import { LinkCard, CardGrid } from '@astrojs/starlight/components'; + + + + + + + diff --git a/src/lib/doc-index.ts b/src/lib/doc-index.ts new file mode 100644 index 00000000..cb82b72d --- /dev/null +++ b/src/lib/doc-index.ts @@ -0,0 +1,80 @@ +import { getCollection } from "astro:content"; + +/** + * Build an index mapping keys to their associated pages. + * + * @returns A map from keys to page slugs. + */ +async function buildKeyIndex(): Promise> { + const docs = await getCollection("docs"); + const index = new Map(); + + for (const doc of docs) { + const keys = doc.data.cppdoc?.keys; + if (keys === undefined) continue; + if (!Array.isArray(keys)) { + console.warn("Frontmatter 'cppdoc.keys' should be an array"); + continue; + } + + if (!keys.every((item) => typeof item === "string")) + console.warn("Elements in frontmatter 'cppdoc.keys' should be strings"); + + for (const key of keys) { + if (typeof key !== "string") continue; + + if (index.has(key)) { + console.warn( + `Key "${key}" is already assigned to "${index.get(key)}", cannot reassign it to "${doc.id}"` + ); + continue; + } + + index.set(key, doc.id); + } + } + + return index; +} + +let KEY_INDEX: Map | undefined = undefined; + +/** + * Build and cache an index mapping keys to their associated pages. If the index + * has already been built, return the cached one. + * + * @returns A map from keys to page slugs. + */ +async function getOrBuildKeyIndex(): Promise> { + if (KEY_INDEX === undefined) KEY_INDEX = await buildKeyIndex(); + return KEY_INDEX; +} + +/** + * Get the link to the page associated with the given key. + * + * @returns The link to the page, or undefined if the key is not found. + */ +export async function getLinkToKey(key: string): Promise { + const index = await getOrBuildKeyIndex(); + if (key?.startsWith("/")) { + if ( + index.values().some((slug) => `/${slug}/` === key || `/${slug}` === key) + ) + return key; + else return undefined; + } + const slug = index.get(key); + if (!slug) return undefined; + return `/${slug}/`; +} + +/** + * Get a list of all keys in the key index. + * + * @returns An array of all keys. + */ +export async function getKeys(): Promise { + const index = await getOrBuildKeyIndex(); + return Array.from(index.keys()); +} diff --git a/src/lib/revision.ts b/src/lib/revision.ts new file mode 100644 index 00000000..c5ffb942 --- /dev/null +++ b/src/lib/revision.ts @@ -0,0 +1,89 @@ +import type { + Language, + CRevision, + CppRevision, + CxxRevision, + RevisionRange, +} from "../types"; + +const C_REVISIONS: CRevision[] = [ + "C89", + "C95", + "C99", + "C11", + "C17", + "C23", + "C29", +]; + +const CPP_REVISIONS: CppRevision[] = [ + "C++98", + "C++11", + "C++14", + "C++17", + "C++20", + "C++23", + "C++26", + "C++29", +]; + +const ALL_REVISIONS: CxxRevision[] = [...C_REVISIONS, ...CPP_REVISIONS]; + +export function getLanguageFromRevision(rev: CxxRevision): Language { + if (rev.startsWith("C++")) { + return "C++"; + } + return "C"; +} + +export function getRevisions( + lang: Language, + range?: RevisionRange +): CxxRevision[] { + const revisions: CxxRevision[] = lang === "C++" ? CPP_REVISIONS : C_REVISIONS; + + const sinceIndex = range?.since ? revisions.indexOf(range.since) : 0; + const untilIndex = range?.until + ? revisions.indexOf(range.until) + : revisions.length; + + return revisions.slice(sinceIndex, untilIndex); +} + +export function compareRevisions( + lhs: CxxRevision, + rhs: CxxRevision +): number | undefined { + const lhsLang = getLanguageFromRevision(lhs); + const rhsLang = getLanguageFromRevision(rhs); + if (lhsLang !== rhsLang) { + return undefined; + } + + const lhsCode = ALL_REVISIONS.indexOf(lhs); + const rhsCode = ALL_REVISIONS.indexOf(rhs); + return lhsCode - rhsCode; +} + +export function isRevisionInRange( + rev: CxxRevision, + range: RevisionRange +): boolean | undefined { + const lang = getLanguageFromRevision(rev); + if (range.since && lang !== getLanguageFromRevision(range.since)) { + return undefined; + } + if (range.until && lang !== getLanguageFromRevision(range.until)) { + return undefined; + } + + const revCode = ALL_REVISIONS.indexOf(rev); + if (range.since && revCode < ALL_REVISIONS.indexOf(range.since)) { + return false; + } + if (range.until && revCode >= ALL_REVISIONS.indexOf(range.until)) { + return false; + } + + return true; +} diff --git a/src/plugins/expressive-code/cxx-mark.ts b/src/plugins/expressive-code/cxx-mark.ts new file mode 100644 index 00000000..5155d4fb --- /dev/null +++ b/src/plugins/expressive-code/cxx-mark.ts @@ -0,0 +1,63 @@ +import { + definePlugin, + InlineStyleAnnotation, + type ExpressiveCodePlugin, +} from "@astrojs/starlight/expressive-code"; + +export function pluginCxxMark(): ExpressiveCodePlugin { + return definePlugin({ + name: "CXX mark", + hooks: { + postprocessAnalyzedCode: (context) => { + context.codeBlock.getLines().forEach((line) => { + if (context.codeBlock.meta.includes("cxx-mark")) { + const matches = [ + ...line.text.matchAll(/\/\*\$(.+?)\*\//g), + ].reverse(); + matches.forEach((match) => { + const begin = match.index; + const end = begin + match[0].length; + if (match[1].startsWith("s:")) { + line.addAnnotation( + new InlineStyleAnnotation({ + inlineRange: { + columnStart: begin, + columnEnd: end, + }, + // color of syntax notation should be same with comments + italic: true, + }) + ); + line.editText(begin, end, match[0].slice(5, -2)); + } else if (match[1].startsWith("e:")) { + line.addAnnotation( + new InlineStyleAnnotation({ + inlineRange: { + columnStart: begin, + columnEnd: end, + }, + color: "var(--cppdoc-color-cxx-mark-exposition)", + italic: true, + }) + ); + line.editText(begin + 2, begin + 5, ""); + } else if (match[1] == "opt") { + const newStr = "(optional)"; + line.editText(begin, end, newStr); + line.addAnnotation( + new InlineStyleAnnotation({ + inlineRange: { + columnStart: begin, + columnEnd: begin + newStr.length, + }, + color: "var(--cppdoc-color-cxx-mark-optional)", + }) + ); + } + }); + } + }); + }, + }, + }); +} diff --git a/src/styles/custom.css b/src/styles/custom.css new file mode 100644 index 00000000..aff9dbd2 --- /dev/null +++ b/src/styles/custom.css @@ -0,0 +1,73 @@ +:root[data-theme="light"] { + --sl-color-green: hsl(var(--sl-hue-green) 50% 40%); +} + +:root { + --cppdoc-color-revision: var(--sl-color-green); + --cppdoc-font-size-revision: 0.8em; + + --cppdoc-color-desc-kind: var(--sl-color-green); + --cppdoc-font-size-desc-kind: 0.8em; + + --cppdoc-color-missing-link: #cc6633; + --cppdoc-color-well-def: var(--sl-color-green); + --cppdoc-color-impl-def: var(--sl-color-blue); + --cppdoc-color-unspec: var(--sl-color-orange); + --cppdoc-color-undef: var(--sl-color-red); + --cppdoc-color-ill-formed: var(--sl-color-red); + --cppdoc-color-ifndr: var(--sl-color-red); + + --cppdoc-color-cxx-mark-exposition: #ff0000; + --cppdoc-color-cxx-mark-optional: var(--sl-color-green); + + --sl-sidebar-width: 22rem; +} + +.sl-markdown-content code { + font-size: 0.9em; + border-radius: 2px; +} + +.sl-markdown-content pre > code { + font-size: 1em; +} + +/* Custom scrollbar */ +::-webkit-scrollbar { + width: 4px; +} + +::-webkit-scrollbar-track { + background-color: #e6f3ff; + border-radius: 2px; +} + +::-webkit-scrollbar-thumb { + background-color: #87ceeb; + border-radius: 2px; +} + +::-webkit-scrollbar-thumb:hover { + background-color: #4682b4; +} + +:root[data-theme="dark"] ::-webkit-scrollbar-track { + background-color: #1e3a5f; +} + +:root[data-theme="dark"] ::-webkit-scrollbar-thumb { + background-color: #4a90e2; +} + +:root[data-theme="dark"] ::-webkit-scrollbar-thumb:hover { + background-color: #5b9bd5; +} + +* { + scrollbar-width: thin; + scrollbar-color: #87ceeb #e6f3ff; +} + +:root[data-theme="dark"] * { + scrollbar-color: #4a90e2 #1e3a5f; +} diff --git a/src/types.ts b/src/types.ts new file mode 100644 index 00000000..df27913b --- /dev/null +++ b/src/types.ts @@ -0,0 +1,20 @@ +export type Language = "C" | "C++"; + +export type CppRevision = + | "C++98" + | "C++11" + | "C++14" + | "C++17" + | "C++20" + | "C++23" + | "C++26" + | "C++29"; +export type CRevision = "C89" | "C95" | "C99" | "C11" | "C17" | "C23" | "C29"; +export type CxxRevision = CppRevision | CRevision; + +export interface RevisionRange { + since?: CxxRevision; + until?: CxxRevision; +} + +export type DRKind = "cwg" | "lwg"; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..9deeab8f --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,11 @@ +{ + "extends": "astro/tsconfigs/strict", + "include": [".astro/types.d.ts", "**/*"], + "exclude": ["dist"], + "compilerOptions": { + "paths": { + "@src/*": ["./src/*"], + "@components/*": ["./src/components/*"] + } + } +}
. Replace them with our MDX component or markdown table. +3. For links, take the URL part, remove `/w/` and the latter part `.html`, and then wrap it with `DocLink`. For example: +If the current path is: `/w/cpp/language/basics.html` +Link: `declarations` +You should, based on the current link, change it to: `declarations` +4. Currently available components: +```mdx +{{LLM_DOCS}} +``` +## Note: The above content is all part of the component library examples. Do not confuse it with the actual content that needs to be migrated. + +The original content will be provided in the following format: +// URL: Original page link +Original page content + +5. Remember **NOT** to use ordinary HTML elements, or your answer will be **REJECTED**. USE OUR COMPONENTS. \ No newline at end of file diff --git a/migrate/cleanup-branches.ts b/migrate/cleanup-branches.ts new file mode 100644 index 00000000..13f0af03 --- /dev/null +++ b/migrate/cleanup-branches.ts @@ -0,0 +1,113 @@ +import { Octokit } from "@octokit/rest"; +import { execSync } from "child_process"; + +const GITHUB_TOKEN = process.env.GITHUB_TOKEN; +const REPO_OWNER = process.env.GITHUB_REPOSITORY_OWNER || "owner"; +const REPO_NAME = process.env.GITHUB_REPOSITORY?.split("/")[1] || "cppdoc"; + +if (!GITHUB_TOKEN) { + console.error("Missing GITHUB_TOKEN"); + process.exit(1); +} + +const octokit = new Octokit({ auth: GITHUB_TOKEN }); + +async function getAllOpenPRs() { + const prs = []; + let page = 1; + const perPage = 100; + + while (true) { + const { data } = await octokit.pulls.list({ + owner: REPO_OWNER, + repo: REPO_NAME, + state: "open", + per_page: perPage, + page, + }); + if (data.length === 0) break; + prs.push(...data); + if (data.length < perPage) break; + page++; + } + + console.log(`Found ${prs.length} open PRs`); + return prs; +} + +async function getAllBranches() { + const branches = []; + let page = 1; + const perPage = 100; + + while (true) { + const { data } = await octokit.repos.listBranches({ + owner: REPO_OWNER, + repo: REPO_NAME, + per_page: perPage, + page, + }); + if (data.length === 0) break; + branches.push(...data); + if (data.length < perPage) break; + page++; + } + + console.log(`Found ${branches.length} branches`); + return branches; +} + +function filterMigrateBranches(branches: { name: string }[]) { + return branches.filter((b) => b.name.startsWith("migrate/")); +} + +async function deleteBranch(branchName: string) { + try { + await octokit.git.deleteRef({ + owner: REPO_OWNER, + repo: REPO_NAME, + ref: `heads/${branchName}`, + }); + console.log(`Deleted remote branch ${branchName}`); + } catch (error) { + console.error(`Failed to delete branch ${branchName}:`, error); + } +} + +async function main() { + console.log("Starting cleanup of migrate branches without open PRs..."); + + const [prs, branches] = await Promise.all([ + getAllOpenPRs(), + getAllBranches(), + ]); + + const prBranchNames = new Set(prs.map((pr) => pr.head.ref)); + console.log("PR branches:", Array.from(prBranchNames)); + + const migrateBranches = filterMigrateBranches(branches); + console.log( + "Migrate branches:", + migrateBranches.map((b) => b.name) + ); + + const toDelete = migrateBranches.filter((b) => !prBranchNames.has(b.name)); + console.log(`Found ${toDelete.length} branches to delete:`); + toDelete.forEach((b) => console.log(` - ${b.name}`)); + + if (toDelete.length === 0) { + console.log("No branches to delete."); + return; + } + + for (const branch of toDelete) { + await deleteBranch(branch.name); + } + + console.log("Cleanup completed."); +} + +main().catch((err) => { + console.error(err); + process.exit(1); +}); diff --git a/migrate/migrate-bot.ts b/migrate/migrate-bot.ts new file mode 100644 index 00000000..6df8c1fb --- /dev/null +++ b/migrate/migrate-bot.ts @@ -0,0 +1,546 @@ +import { Octokit } from "@octokit/rest"; +import { parseHTML } from "linkedom"; +import fs, { readFile } from "fs/promises"; +import path, { join } from "path"; +import { fileURLToPath } from "url"; +import { execSync, spawnSync } from "child_process"; +import { visualizeTextDiff } from "./text-diff-visualizer"; + +const __dirname = path.dirname(fileURLToPath(import.meta.url)); + +const GITHUB_TOKEN = process.env.GITHUB_TOKEN; +const OPENROUTER_API_KEY = process.env.OPENROUTER_API_KEY; +const IMGBB_API_KEY = process.env.IMGBB_API_KEY || ""; +const REPO_OWNER = process.env.GITHUB_REPOSITORY_OWNER || "owner"; +const REPO_NAME = process.env.GITHUB_REPOSITORY?.split("/")[1] || "cppdoc"; +const LABEL = "migrate-cppref-page"; +const MODEL_NAME = "google/gemini-2.5-flash"; + +if (!GITHUB_TOKEN) { + console.error("Missing GITHUB_TOKEN"); + process.exit(1); +} +if (!OPENROUTER_API_KEY) { + console.error("Missing OPENROUTER_API_KEY"); + process.exit(1); +} + +const octokit = new Octokit({ auth: GITHUB_TOKEN }); + +let slugMapCache: Map | null = null; + +async function retry( + fn: () => Promise, + retries = 3, + delay = 1000 +): Promise { + let lastError: unknown; + for (let attempt = 1; attempt <= retries; attempt++) { + try { + return await fn(); + } catch (error) { + lastError = error; + console.warn( + `Attempt ${attempt} failed: ${error instanceof Error ? error.message : String(error)}` + ); + if (attempt < retries) { + await new Promise((res) => setTimeout(res, delay)); + } + } + } + throw lastError; +} + +function extractLink(title: string): string | null { + const urlRegex = /https?:\/\/.*?cppreference\.com\/w\/[^\s]+/g; + const match = title.match(urlRegex); + return match ? match[0] : null; +} + +function hasPRReference(title: string): boolean { + return /\[#\d+\]/.test(title); +} + +async function fetchPageContent( + url: string +): Promise<{ html: string; title: string; url: string; innerText: string }> { + const response = await fetch(url); + if (!response.ok) { + throw new Error(`Failed to fetch ${url}: ${response.status}`); + } + const html = await response.text(); + const document = parseHTML(html).document; + const contentElement = document.querySelector("#mw-content-text"); + + const selectorsToRemove = [ + ".t-navbar", + ".t-example-live-link", + ".editsection", + "#toc", + ]; + for (const selector of selectorsToRemove) { + const elements = contentElement?.querySelectorAll(selector); + elements?.forEach((el) => el.remove()); + } + const headingElement = document.querySelector("#firstHeading"); + if (!contentElement) { + throw new Error("Could not find #mw-content-text"); + } + + const title = headingElement?.textContent?.trim() || ""; + + return { + html: contentElement.innerHTML, + title, + url, + innerText: title + "\n" + (contentElement as HTMLDivElement).innerText, + }; +} + +async function loadSlugMap(): Promise> { + const mapPath = path.join(__dirname, "slug_map.json"); + const data = await readFile(mapPath, "utf8"); + const arr = JSON.parse(data) as Array<{ + cppref: string; + cppdoc: string | null; + }>; + const map = new Map(); + for (const entry of arr) { + map.set(entry.cppref, entry.cppdoc); + } + return map; +} + +function replaceDocLinks( + content: string, + slugMap: Map +): string { + const docLinkRegex = /]*)>/g; + return content.replace(docLinkRegex, (match, attributes) => { + const srcMatch = attributes.match(/src\s*=\s*["']([^"']+)["']/); + if (!srcMatch) { + return match; + } + const src = srcMatch[1]; + if (!src.startsWith("/")) { + return match; + } + const key = src.slice(1).replace(/\.html$/, ""); + const mapped = slugMap.get(key); + let newSrc: string; + if (mapped === undefined) { + return match; + } else if (mapped === null) { + newSrc = `/not-migrated-url#${src}`; + } else { + newSrc = `/${mapped}`; + } + const newAttributes = attributes.replace(srcMatch[0], `src="${newSrc}"`); + return ``; + }); +} + +async function convertToMDX( + html: string, + title: string, + url: string +): Promise { + const prompt = (await readFile(__dirname + "/PROMPT.md", "utf8")).replace( + "{{LLM_DOCS}}", + await readFile( + __dirname + + "/../src/content/docs/development/guide/component-docs-for-llm.mdx", + "utf8" + ) + ); + + console.log("Prompt:", prompt); + + const response = await fetch( + "https://openrouter.ai/api/v1/chat/completions", + { + method: "POST", + headers: { + Authorization: `Bearer ${OPENROUTER_API_KEY}`, + "Content-Type": "application/json", + "HTTP-Referer": "https://github.com/cppdoc/cppdoc", + "X-Title": "CppDoc Migration Bot", + }, + body: JSON.stringify({ + model: MODEL_NAME, + messages: [ + { role: "user", content: prompt }, + { + role: "user", + content: ` +// URL: ${url} +// HTML Content: +${html} + +// Converted MDX Content without using html tags, only using CppDoc components and markdown syntax: +`, + }, + ], + }), + } + ); + + if (!response.ok) { + const error = await response.text(); + throw new Error(`OpenRouter API error: ${error}`); + } + + const data = (await response.json()) as { + choices: Array<{ message: { content: string } }>; + }; + let content = data.choices[0].message.content.trim(); + + console.log("Raw content:", content); + + if (content.includes("```mdx")) { + content = content + .slice(content.indexOf("```mdx") + 6, content.lastIndexOf("```")) + .trim(); + } + + // Auto Import + const components = [ + "Behavior", + "Decl", + "DeclDoc", + "DescList", + "Desc", + "ParamDocList", + "ParamDoc", + "DocLink", + "CHeader", + "CppHeader", + "FeatureTestMacro", + "FeatureTestMacroValue", + "DR", + "DRList", + "Revision", + "RevisionBlock", + "AutoCollapse", + "FlexTable", + "WG21PaperLink", + ]; + + const usedComponents = components.filter( + (comp: string) => + content.includes(`<${comp} `) || content.includes(`<${comp}>`) + ); + + // Remove all existing import statements + content = content + .split("\n") + .filter((line: string) => !line.startsWith("import ")) + .join("\n"); + + // Sort used components alphabetically + usedComponents.sort(); + + if (usedComponents.length > 0) { + const importStatements = `import { ${usedComponents.join(", ")} } from '@components/index';\n\n`; + content = importStatements + content; + } + + // Replace DocLink src attributes based on slug_map.json + content = replaceDocLinks(content, slugMapCache!); + + // Verify content + const normalElements = [ + " 4) { + throw new Error( + "The generated content contains too many native HTML elements, conversion may have failed." + ); + } + + return content; +} + +// https://cppreference.com/w/cpp/comments => src/content/docs/cpp/comments.mdx +function getRelativeMDXPath(url: string): string { + const match = url.match(/https?:\/\/.*?cppreference\.com\/w\/(.+)\.html$/); + if (!match) { + throw new Error(`Unable to parse path from URL: ${url}`); + } + const relative = match[1]; // "cpp/comments" + const mapped = slugMapCache!.get(relative); + if (mapped) { + return `src/content/docs/${mapped}.mdx`; + } + throw new Error(`No mapping found for cppreference path: ${relative}`); +} + +function getRelativeHTMLPath(url: string): string { + const match = url.match(/https?:\/\/.*?cppreference\.com\/w\/(.+)\.html$/); + if (!match) { + throw new Error(`Unable to parse path from URL: ${url}`); + } + const relative = match[1]; // "cpp/comments" + return `dist/${relative}/index.html`; +} + +function getLocalMDXPath(url: string): string { + return path.join(__dirname, "..", getRelativeMDXPath(url)); +} + +async function writeMDXFile( + filePath: string, + content: string, + title: string, + cpprefUrl: string +): Promise { + const dir = path.dirname(filePath); + await fs.mkdir(dir, { recursive: true }); + const frontmatter = `--- +title: ${JSON.stringify(title)} +cppref-url: ${cpprefUrl ? JSON.stringify(cpprefUrl) : "null"} +---\n\n`; + await fs.writeFile(filePath, frontmatter + content, "utf8"); + console.log(`Written to ${filePath}`); +} + +// curl --location --request POST "https://api.imgbb.com/1/upload?expiration=600&key=YOUR_CLIENT_API_KEY" --form "image=R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" +async function uploadImageToImgBB(imageBuffer: Buffer): Promise { + const formData = new FormData(); + formData.append( + "image", + new Blob([new Uint8Array(imageBuffer)]), + "diff.webp" + ); + formData.append("name", "diff.webp"); + + const response = await fetch( + `https://api.imgbb.com/1/upload?key=${IMGBB_API_KEY}&name=diff.webp`, + { + method: "POST", + body: formData, + } + ); + + if (!response.ok) { + const error = await response.text(); + throw new Error(`ImgBB API error: ${error}`); + } + + const data = (await response.json()) as { data: { url: string } }; + return data.data.url; +} + +async function createPullRequest( + issue: { number: number; title: string }, + filePath: string, + url: string, + originalInnerText: string +): Promise { + const branchName = `migrate/${issue.number}-${Date.now().toString(36)}`; + const page = url.split("/w/").pop(); + const pageName = page ? page.replace(".html", "") : "unknown"; + const prTitle = `feat: migrate ${pageName} from cppref [#${issue.number}]`; + const commitMessage = prTitle; + + const newInnerText = await readFile(getRelativeHTMLPath(url), "utf8") + .then((data) => { + const document = parseHTML(data).document; + const contentElement = document.querySelector("main"); + const selectorsToRemove = [".sl-anchor-link"]; + for (const selector of selectorsToRemove) { + const elements = contentElement?.querySelectorAll(selector); + elements?.forEach((el) => el.remove()); + } + + if (!contentElement) return ""; + return (contentElement as HTMLDivElement).innerText; + }) + .catch(() => ""); + + let imageUrl = null; + if (originalInnerText && newInnerText) { + const webp = visualizeTextDiff(originalInnerText, newInnerText); + if (webp) { + imageUrl = await uploadImageToImgBB(webp); + console.log(`Uploaded text diff image to ImgBB: ${imageUrl}`); + } + } + + const prBody = `> Automatically migrated from ${url} by ${MODEL_NAME} +> +> 📝 [Edit this page](https://github.com/cppdoc-cc/cppdoc/edit/${branchName}/${getRelativeMDXPath(url)}) + +Close #${issue.number} + +${imageUrl ? `![Text Diff](${imageUrl})` : "(No text diff image)"} +Green: word count increased after migration; Red: word count decreased after migration. +`; + + const { execSync } = await import("child_process"); + try { + execSync(`git config user.name "github-actions[bot]"`); + execSync( + `git config user.email "github-actions[bot]@users.noreply.github.com"` + ); + execSync(`git checkout -b ${branchName}`); + execSync(`git add "${filePath}"`); + execSync(`git commit -m "${commitMessage}"`); + execSync(`git push origin ${branchName}`); + } catch (error) { + console.error( + "Git operation failed:", + error instanceof Error ? error.message : String(error) + ); + throw error; + } + + const { data: pr } = await octokit.pulls.create({ + owner: REPO_OWNER, + repo: REPO_NAME, + title: prTitle, + body: prBody, + head: branchName, + base: "main", + draft: true, + }); + + console.log(`Created PR #${pr.number}`); + return pr.number; +} + +async function updateIssue( + issue: { number: number; title: string }, + prNumber: number | null, + error: unknown = null +): Promise { + const newTitle = `[#${prNumber}] ${issue.title.replace(/\[#\d+\]\s*/, "")}`; + await octokit.issues.update({ + owner: REPO_OWNER, + repo: REPO_NAME, + issue_number: issue.number, + title: newTitle, + }); + + if (error) { + const message = error instanceof Error ? error.message : String(error); + await octokit.issues.createComment({ + owner: REPO_OWNER, + repo: REPO_NAME, + issue_number: issue.number, + body: `Migration failed: ${message}\n\nIssue closed.`, + }); + await octokit.issues.update({ + owner: REPO_OWNER, + repo: REPO_NAME, + issue_number: issue.number, + state: "closed", + }); + } else { + await octokit.issues.createComment({ + owner: REPO_OWNER, + repo: REPO_NAME, + issue_number: issue.number, + body: `Migration completed! Created PR [#${prNumber}].`, + }); + } +} + +async function main() { + slugMapCache = await loadSlugMap(); + + console.log("Fetching issues with label", LABEL, "..."); + const { data: issues } = await octokit.issues.listForRepo({ + owner: REPO_OWNER, + repo: REPO_NAME, + labels: LABEL, + state: "open", + per_page: 50, + }); + + console.log(`Found ${issues.length} issues`); + + for (const issue of issues) { + console.log(`Processing issue #${issue.number}: ${issue.title}`); + try { + if (hasPRReference(issue.title)) { + continue; + } + + const url = extractLink(issue.title); + if (!url) { + throw new Error("No valid cppreference link found in title"); + } + + console.log(` Fetching ${url}`); + const { html, title, innerText } = await retry( + () => fetchPageContent(url), + 3, + 2000 + ); + + console.log(` Converting HTML to MDX...`); + const mdx = await retry(() => convertToMDX(html, title, url), 3, 2000); + + const filePath = getLocalMDXPath(url); + console.log(` Writing to ${filePath}`); + await writeMDXFile(filePath, mdx, title, url); + + console.log(` Re-formatting...`); + spawnSync(`npm`, ["run", "format"], { + stdio: "inherit", + shell: true, + }); + + console.log(` Building...`); + const res = spawnSync(`npm`, ["run", "build"], { + stdio: "inherit", + shell: true, + }); + if (res.status !== 0) { + throw new Error( + "Build failed, possibly due to issues with the generated MDX:" + + res.stderr?.toString() + + res.stdout?.toString() + + res.error?.toString() + + " exit code " + + res.status + ); + } + + console.log(` Creating PR...`); + const prNumber = await createPullRequest(issue, filePath, url, innerText); + + console.log(` Updating issue...`); + await updateIssue(issue, prNumber); + + console.log(` Issue #${issue.number} completed`); + } catch (error) { + console.error(` Issue #${issue.number} error:`, error); + await updateIssue(issue, null, error); + } + } + + console.log("All completed"); +} + +main().catch((err) => { + console.error(err); + process.exit(1); +}); diff --git a/migrate/slug_map.json b/migrate/slug_map.json new file mode 100644 index 00000000..7c6cbb2a --- /dev/null +++ b/migrate/slug_map.json @@ -0,0 +1,26586 @@ +[ + { + "cppref": "index", + "cppdoc": null + }, + { + "cppref": "c", + "cppdoc": null + }, + { + "cppref": "Main_Page", + "cppdoc": null + }, + { + "cppref": "cpp", + "cppdoc": null + }, + { + "cppref": "cpp/ranges", + "cppdoc": "cpp/library/ranges" + }, + { + "cppref": "cpp/atomic", + "cppdoc": "cpp/library/atomic" + }, + { + "cppref": "cpp/freestanding", + "cppdoc": "cpp/library/freestanding" + }, + { + "cppref": "cpp/index", + "cppdoc": "cpp/library/index" + }, + { + "cppref": "cpp/11", + "cppdoc": "cpp/language/11" + }, + { + "cppref": "cpp/thread", + "cppdoc": "cpp/library/thread" + }, + { + "cppref": "cpp/numeric", + "cppdoc": "cpp/library/numeric" + }, + { + "cppref": "cpp/container", + "cppdoc": "cpp/library/container" + }, + { + "cppref": "cpp/17", + "cppdoc": "cpp/language/17" + }, + { + "cppref": "cpp/string", + "cppdoc": "cpp/library/string" + }, + { + "cppref": "cpp/filesystem", + "cppdoc": "cpp/library/filesystem" + }, + { + "cppref": "cpp/26", + "cppdoc": "cpp/language/26" + }, + { + "cppref": "cpp/compiler_support", + "cppdoc": "cpp/library/compiler_support" + }, + { + "cppref": "cpp/headers", + "cppdoc": "cpp/library/headers" + }, + { + "cppref": "cpp/standard_library", + "cppdoc": "cpp/library/standard_library" + }, + { + "cppref": "cpp/error", + "cppdoc": "cpp/library/error" + }, + { + "cppref": "cpp/memory", + "cppdoc": "cpp/library/memory" + }, + { + "cppref": "cpp/current_status", + "cppdoc": null + }, + { + "cppref": "cpp/feature_test", + "cppdoc": "cpp/library/feature_test" + }, + { + "cppref": "cpp/20", + "cppdoc": "cpp/language/20" + }, + { + "cppref": "cpp/iterator", + "cppdoc": "cpp/library/iterator" + }, + { + "cppref": "cpp/io", + "cppdoc": "cpp/library/io" + }, + { + "cppref": "cpp/23", + "cppdoc": "cpp/language/23" + }, + { + "cppref": "cpp/experimental", + "cppdoc": "cpp/library/experimental" + }, + { + "cppref": "cpp/chrono", + "cppdoc": "cpp/library/chrono" + }, + { + "cppref": "cpp/text", + "cppdoc": "cpp/library/text" + }, + { + "cppref": "cpp/named_req", + "cppdoc": "cpp/library/named_req" + }, + { + "cppref": "cpp/language", + "cppdoc": "cpp/language" + }, + { + "cppref": "cpp/execution", + "cppdoc": "cpp/library/execution" + }, + { + "cppref": "cpp/links", + "cppdoc": "cpp/library/links" + }, + { + "cppref": "cpp/meta", + "cppdoc": "cpp/library/meta" + }, + { + "cppref": "cpp/header", + "cppdoc": "cpp/library/header" + }, + { + "cppref": "cpp/14", + "cppdoc": "cpp/language/14" + }, + { + "cppref": "cpp/locale", + "cppdoc": "cpp/library/text/locale" + }, + { + "cppref": "cpp/concepts", + "cppdoc": "cpp/library/concepts" + }, + { + "cppref": "cpp/algorithm", + "cppdoc": "cpp/library/algorithm" + }, + { + "cppref": "cpp/symbol_index", + "cppdoc": null + }, + { + "cppref": "cpp/utility", + "cppdoc": "cpp/library/utility" + }, + { + "cppref": "cpp/preprocessor", + "cppdoc": "cpp/language/preprocessor" + }, + { + "cppref": "cpp/preprocessor/replace", + "cppdoc": "cpp/language/preprocessor/replace" + }, + { + "cppref": "cpp/preprocessor/impl", + "cppdoc": "cpp/language/preprocessor/impl" + }, + { + "cppref": "cpp/preprocessor/conditional", + "cppdoc": "cpp/language/preprocessor/conditional" + }, + { + "cppref": "cpp/preprocessor/line", + "cppdoc": "cpp/language/preprocessor/line" + }, + { + "cppref": "cpp/preprocessor/error", + "cppdoc": "cpp/language/preprocessor/error" + }, + { + "cppref": "cpp/preprocessor/include", + "cppdoc": "cpp/language/preprocessor/include" + }, + { + "cppref": "cpp/concepts/floating_point", + "cppdoc": "cpp/library/concepts/floating_point" + }, + { + "cppref": "cpp/concepts/copy_constructible", + "cppdoc": "cpp/library/concepts/copy_constructible" + }, + { + "cppref": "cpp/concepts/default_initializable", + "cppdoc": "cpp/library/concepts/default_initializable" + }, + { + "cppref": "cpp/concepts/integral", + "cppdoc": "cpp/library/concepts/integral" + }, + { + "cppref": "cpp/concepts/equivalence_relation", + "cppdoc": "cpp/library/concepts/equivalence_relation" + }, + { + "cppref": "cpp/concepts/movable", + "cppdoc": "cpp/library/concepts/movable" + }, + { + "cppref": "cpp/concepts/invocable", + "cppdoc": "cpp/library/concepts/invocable" + }, + { + "cppref": "cpp/concepts/swappable", + "cppdoc": "cpp/library/concepts/swappable" + }, + { + "cppref": "cpp/concepts/predicate", + "cppdoc": "cpp/library/concepts/predicate" + }, + { + "cppref": "cpp/concepts/totally_ordered", + "cppdoc": "cpp/library/concepts/totally_ordered" + }, + { + "cppref": "cpp/concepts/semiregular", + "cppdoc": "cpp/library/concepts/semiregular" + }, + { + "cppref": "cpp/concepts/relation", + "cppdoc": "cpp/library/concepts/relation" + }, + { + "cppref": "cpp/concepts/constructible_from", + "cppdoc": "cpp/library/concepts/constructible_from" + }, + { + "cppref": "cpp/concepts/unsigned_integral", + "cppdoc": "cpp/library/concepts/unsigned_integral" + }, + { + "cppref": "cpp/concepts/copyable", + "cppdoc": "cpp/library/concepts/copyable" + }, + { + "cppref": "cpp/concepts/same_as", + "cppdoc": "cpp/library/concepts/same_as" + }, + { + "cppref": "cpp/concepts/signed_integral", + "cppdoc": "cpp/library/concepts/signed_integral" + }, + { + "cppref": "cpp/concepts/destructible", + "cppdoc": "cpp/library/concepts/destructible" + }, + { + "cppref": "cpp/concepts/boolean-testable", + "cppdoc": "cpp/library/concepts/boolean-testable" + }, + { + "cppref": "cpp/concepts/convertible_to", + "cppdoc": "cpp/library/concepts/convertible_to" + }, + { + "cppref": "cpp/concepts/common_with", + "cppdoc": "cpp/library/concepts/common_with" + }, + { + "cppref": "cpp/concepts/equality_comparable", + "cppdoc": "cpp/library/concepts/equality_comparable" + }, + { + "cppref": "cpp/concepts/strict_weak_order", + "cppdoc": "cpp/library/concepts/strict_weak_order" + }, + { + "cppref": "cpp/concepts/derived_from", + "cppdoc": "cpp/library/concepts/derived_from" + }, + { + "cppref": "cpp/concepts/move_constructible", + "cppdoc": "cpp/library/concepts/move_constructible" + }, + { + "cppref": "cpp/concepts/assignable_from", + "cppdoc": "cpp/library/concepts/assignable_from" + }, + { + "cppref": "cpp/concepts/common_reference_with", + "cppdoc": "cpp/library/concepts/common_reference_with" + }, + { + "cppref": "cpp/concepts/regular", + "cppdoc": "cpp/library/concepts/regular" + }, + { + "cppref": "cpp/header/istream", + "cppdoc": "cpp/library/headers/istream" + }, + { + "cppref": "cpp/header/stack", + "cppdoc": "cpp/library/headers/stack" + }, + { + "cppref": "cpp/header/ranges", + "cppdoc": "cpp/library/headers/ranges" + }, + { + "cppref": "cpp/header/span", + "cppdoc": "cpp/library/headers/span" + }, + { + "cppref": "cpp/header/atomic", + "cppdoc": "cpp/library/headers/atomic" + }, + { + "cppref": "cpp/header/cinttypes", + "cppdoc": "cpp/library/headers/cinttypes" + }, + { + "cppref": "cpp/header/cuchar", + "cppdoc": "cpp/library/headers/cuchar" + }, + { + "cppref": "cpp/header/unordered_set", + "cppdoc": "cpp/library/headers/unordered_set" + }, + { + "cppref": "cpp/header/cwctype", + "cppdoc": "cpp/library/headers/cwctype" + }, + { + "cppref": "cpp/header/typeindex", + "cppdoc": "cpp/library/headers/typeindex" + }, + { + "cppref": "cpp/header/latch", + "cppdoc": "cpp/library/headers/latch" + }, + { + "cppref": "cpp/header/unordered_map", + "cppdoc": "cpp/library/headers/unordered_map" + }, + { + "cppref": "cpp/header/typeinfo", + "cppdoc": "cpp/library/headers/typeinfo" + }, + { + "cppref": "cpp/header/mdspan", + "cppdoc": "cpp/library/headers/mdspan" + }, + { + "cppref": "cpp/header/stdexcept", + "cppdoc": "cpp/library/headers/stdexcept" + }, + { + "cppref": "cpp/header/limits", + "cppdoc": "cpp/library/headers/limits" + }, + { + "cppref": "cpp/header/iomanip", + "cppdoc": "cpp/library/headers/iomanip" + }, + { + "cppref": "cpp/header/future", + "cppdoc": "cpp/library/headers/future" + }, + { + "cppref": "cpp/header/initializer_list", + "cppdoc": "cpp/library/headers/initializer_list" + }, + { + "cppref": "cpp/header/mutex", + "cppdoc": "cpp/library/headers/mutex" + }, + { + "cppref": "cpp/header/debugging", + "cppdoc": "cpp/library/headers/debugging" + }, + { + "cppref": "cpp/header/source_location", + "cppdoc": "cpp/library/headers/source_location" + }, + { + "cppref": "cpp/header/cerrno", + "cppdoc": "cpp/library/headers/cerrno" + }, + { + "cppref": "cpp/header/cstring", + "cppdoc": "cpp/library/headers/cstring" + }, + { + "cppref": "cpp/header/any", + "cppdoc": "cpp/library/headers/any" + }, + { + "cppref": "cpp/header/streambuf", + "cppdoc": "cpp/library/headers/streambuf" + }, + { + "cppref": "cpp/header/thread", + "cppdoc": "cpp/library/headers/thread" + }, + { + "cppref": "cpp/header/cstdarg", + "cppdoc": "cpp/library/headers/cstdarg" + }, + { + "cppref": "cpp/header/csetjmp", + "cppdoc": "cpp/library/headers/csetjmp" + }, + { + "cppref": "cpp/header/tuple", + "cppdoc": "cpp/library/headers/tuple" + }, + { + "cppref": "cpp/header/ostream", + "cppdoc": "cpp/library/headers/ostream" + }, + { + "cppref": "cpp/header/condition_variable", + "cppdoc": "cpp/library/headers/condition_variable" + }, + { + "cppref": "cpp/header/numeric", + "cppdoc": "cpp/library/headers/numeric" + }, + { + "cppref": "cpp/header/valarray", + "cppdoc": "cpp/library/headers/valarray" + }, + { + "cppref": "cpp/header/stdatomic.h", + "cppdoc": "cpp/library/headers/stdatomic.h" + }, + { + "cppref": "cpp/header/format", + "cppdoc": "cpp/library/headers/format" + }, + { + "cppref": "cpp/header/variant", + "cppdoc": "cpp/library/headers/variant" + }, + { + "cppref": "cpp/header/codecvt", + "cppdoc": "cpp/library/headers/codecvt" + }, + { + "cppref": "cpp/header/list", + "cppdoc": "cpp/library/headers/list" + }, + { + "cppref": "cpp/header/ratio", + "cppdoc": "cpp/library/headers/ratio" + }, + { + "cppref": "cpp/header/barrier", + "cppdoc": "cpp/library/headers/barrier" + }, + { + "cppref": "cpp/header/cfenv", + "cppdoc": "cpp/library/headers/cfenv" + }, + { + "cppref": "cpp/header/cstdio", + "cppdoc": "cpp/library/headers/cstdio" + }, + { + "cppref": "cpp/header/stdfloat", + "cppdoc": "cpp/library/headers/stdfloat" + }, + { + "cppref": "cpp/header/regex", + "cppdoc": "cpp/library/headers/regex" + }, + { + "cppref": "cpp/header/ccomplex", + "cppdoc": "cpp/library/headers/ccomplex" + }, + { + "cppref": "cpp/header/string", + "cppdoc": "cpp/library/headers/string" + }, + { + "cppref": "cpp/header/syncstream", + "cppdoc": "cpp/library/headers/syncstream" + }, + { + "cppref": "cpp/header/cmath", + "cppdoc": "cpp/library/headers/cmath" + }, + { + "cppref": "cpp/header/ciso646", + "cppdoc": "cpp/library/headers/ciso646" + }, + { + "cppref": "cpp/header/filesystem", + "cppdoc": "cpp/library/headers/filesystem" + }, + { + "cppref": "cpp/header/inplace_vector", + "cppdoc": "cpp/library/headers/inplace_vector" + }, + { + "cppref": "cpp/header/clocale", + "cppdoc": "cpp/library/headers/clocale" + }, + { + "cppref": "cpp/header/iostream", + "cppdoc": "cpp/library/headers/iostream" + }, + { + "cppref": "cpp/header/iosfwd", + "cppdoc": "cpp/library/headers/iosfwd" + }, + { + "cppref": "cpp/header/string_view", + "cppdoc": "cpp/library/headers/string_view" + }, + { + "cppref": "cpp/header/bitset", + "cppdoc": "cpp/library/headers/bitset" + }, + { + "cppref": "cpp/header/new", + "cppdoc": "cpp/library/headers/new" + }, + { + "cppref": "cpp/header/linalg", + "cppdoc": "cpp/library/headers/linalg" + }, + { + "cppref": "cpp/header/memory", + "cppdoc": "cpp/library/headers/memory" + }, + { + "cppref": "cpp/header/coroutine", + "cppdoc": "cpp/library/headers/coroutine" + }, + { + "cppref": "cpp/header/queue", + "cppdoc": "cpp/library/headers/queue" + }, + { + "cppref": "cpp/header/flat_set", + "cppdoc": "cpp/library/headers/flat_set" + }, + { + "cppref": "cpp/header/cstdalign", + "cppdoc": "cpp/library/headers/cstdalign" + }, + { + "cppref": "cpp/header/array", + "cppdoc": "cpp/library/headers/array" + }, + { + "cppref": "cpp/header/generator", + "cppdoc": "cpp/library/headers/generator" + }, + { + "cppref": "cpp/header/ctgmath", + "cppdoc": "cpp/library/headers/ctgmath" + }, + { + "cppref": "cpp/header/compare", + "cppdoc": "cpp/library/headers/compare" + }, + { + "cppref": "cpp/header/simd", + "cppdoc": "cpp/library/headers/simd" + }, + { + "cppref": "cpp/header/stacktrace", + "cppdoc": "cpp/library/headers/stacktrace" + }, + { + "cppref": "cpp/header/text_encoding", + "cppdoc": "cpp/library/headers/text_encoding" + }, + { + "cppref": "cpp/header/iterator", + "cppdoc": "cpp/library/headers/iterator" + }, + { + "cppref": "cpp/header/experimental", + "cppdoc": "cpp/library/headers/experimental" + }, + { + "cppref": "cpp/header/stop_token", + "cppdoc": "cpp/library/headers/stop_token" + }, + { + "cppref": "cpp/header/charconv", + "cppdoc": "cpp/library/headers/charconv" + }, + { + "cppref": "cpp/header/strstream", + "cppdoc": "cpp/library/headers/strstream" + }, + { + "cppref": "cpp/header/fstream", + "cppdoc": "cpp/library/headers/fstream" + }, + { + "cppref": "cpp/header/rcu", + "cppdoc": "cpp/library/headers/rcu" + }, + { + "cppref": "cpp/header/type_traits", + "cppdoc": "cpp/library/headers/type_traits" + }, + { + "cppref": "cpp/header/hazard_pointer", + "cppdoc": "cpp/library/headers/hazard_pointer" + }, + { + "cppref": "cpp/header/bit", + "cppdoc": "cpp/library/headers/bit" + }, + { + "cppref": "cpp/header/exception", + "cppdoc": "cpp/library/headers/exception" + }, + { + "cppref": "cpp/header/cstdbool", + "cppdoc": "cpp/library/headers/cstdbool" + }, + { + "cppref": "cpp/header/cfloat", + "cppdoc": "cpp/library/headers/cfloat" + }, + { + "cppref": "cpp/header/climits", + "cppdoc": "cpp/library/headers/climits" + }, + { + "cppref": "cpp/header/print", + "cppdoc": "cpp/library/headers/print" + }, + { + "cppref": "cpp/header/system_error", + "cppdoc": "cpp/library/headers/system_error" + }, + { + "cppref": "cpp/header/deque", + "cppdoc": "cpp/library/headers/deque" + }, + { + "cppref": "cpp/header/cstdint", + "cppdoc": "cpp/library/headers/cstdint" + }, + { + "cppref": "cpp/header/csignal", + "cppdoc": "cpp/library/headers/csignal" + }, + { + "cppref": "cpp/header/chrono", + "cppdoc": "cpp/library/headers/chrono" + }, + { + "cppref": "cpp/header/spanstream", + "cppdoc": "cpp/library/headers/spanstream" + }, + { + "cppref": "cpp/header/ctime", + "cppdoc": "cpp/library/headers/ctime" + }, + { + "cppref": "cpp/header/expected", + "cppdoc": "cpp/library/headers/expected" + }, + { + "cppref": "cpp/header/version", + "cppdoc": "cpp/library/headers/version" + }, + { + "cppref": "cpp/header/execution", + "cppdoc": "cpp/library/headers/execution" + }, + { + "cppref": "cpp/header/map", + "cppdoc": "cpp/library/headers/map" + }, + { + "cppref": "cpp/header/scoped_allocator", + "cppdoc": "cpp/library/headers/scoped_allocator" + }, + { + "cppref": "cpp/header/semaphore", + "cppdoc": "cpp/library/headers/semaphore" + }, + { + "cppref": "cpp/header/cstdlib", + "cppdoc": "cpp/library/headers/cstdlib" + }, + { + "cppref": "cpp/header/cwchar", + "cppdoc": "cpp/library/headers/cwchar" + }, + { + "cppref": "cpp/header/forward_list", + "cppdoc": "cpp/library/headers/forward_list" + }, + { + "cppref": "cpp/header/cctype", + "cppdoc": "cpp/library/headers/cctype" + }, + { + "cppref": "cpp/header/random", + "cppdoc": "cpp/library/headers/random" + }, + { + "cppref": "cpp/header/sstream", + "cppdoc": "cpp/library/headers/sstream" + }, + { + "cppref": "cpp/header/locale", + "cppdoc": "cpp/library/headers/locale" + }, + { + "cppref": "cpp/header/shared_mutex", + "cppdoc": "cpp/library/headers/shared_mutex" + }, + { + "cppref": "cpp/header/optional", + "cppdoc": "cpp/library/headers/optional" + }, + { + "cppref": "cpp/header/concepts", + "cppdoc": "cpp/library/headers/concepts" + }, + { + "cppref": "cpp/header/set", + "cppdoc": "cpp/library/headers/set" + }, + { + "cppref": "cpp/header/algorithm", + "cppdoc": "cpp/library/headers/algorithm" + }, + { + "cppref": "cpp/header/functional", + "cppdoc": "cpp/library/headers/functional" + }, + { + "cppref": "cpp/header/complex", + "cppdoc": "cpp/library/headers/complex" + }, + { + "cppref": "cpp/header/utility", + "cppdoc": "cpp/library/headers/utility" + }, + { + "cppref": "cpp/header/cassert", + "cppdoc": "cpp/library/headers/cassert" + }, + { + "cppref": "cpp/header/numbers", + "cppdoc": "cpp/library/headers/numbers" + }, + { + "cppref": "cpp/header/flat_map", + "cppdoc": "cpp/library/headers/flat_map" + }, + { + "cppref": "cpp/header/ios", + "cppdoc": "cpp/library/headers/ios" + }, + { + "cppref": "cpp/header/vector", + "cppdoc": "cpp/library/headers/vector" + }, + { + "cppref": "cpp/header/cstddef", + "cppdoc": "cpp/library/headers/cstddef" + }, + { + "cppref": "cpp/header/memory_resource", + "cppdoc": "cpp/library/headers/memory_resource" + }, + { + "cppref": "cpp/header/experimental/any", + "cppdoc": "cpp/library/headers/experimental/any" + }, + { + "cppref": "cpp/header/experimental/filesystem", + "cppdoc": "cpp/library/headers/experimental/filesystem" + }, + { + "cppref": "cpp/header/experimental/string_view", + "cppdoc": "cpp/library/headers/experimental/string_view" + }, + { + "cppref": "cpp/header/experimental/simd", + "cppdoc": "cpp/library/headers/experimental/simd" + }, + { + "cppref": "cpp/header/experimental/execution", + "cppdoc": "cpp/library/headers/experimental/execution" + }, + { + "cppref": "cpp/header/experimental/reflect", + "cppdoc": "cpp/library/headers/experimental/reflect" + }, + { + "cppref": "cpp/header/experimental/optional", + "cppdoc": "cpp/library/headers/experimental/optional" + }, + { + "cppref": "cpp/header/experimental/functional", + "cppdoc": "cpp/library/headers/experimental/functional" + }, + { + "cppref": "cpp/header/experimental/net", + "cppdoc": "cpp/library/headers/experimental/net" + }, + { + "cppref": "cpp/header/experimental/memory_resource", + "cppdoc": "cpp/library/headers/experimental/memory_resource" + }, + { + "cppref": "cpp/header/experimental/ranges/tuple", + "cppdoc": "cpp/library/headers/experimental/ranges/tuple" + }, + { + "cppref": "cpp/header/experimental/ranges/range", + "cppdoc": "cpp/library/headers/range" + }, + { + "cppref": "cpp/header/experimental/ranges/iterator", + "cppdoc": "cpp/library/headers/experimental/ranges/iterator" + }, + { + "cppref": "cpp/header/experimental/ranges/type_traits", + "cppdoc": "cpp/library/headers/experimental/ranges/type_traits" + }, + { + "cppref": "cpp/header/experimental/ranges/random", + "cppdoc": "cpp/library/headers/experimental/ranges/random" + }, + { + "cppref": "cpp/header/experimental/ranges/concepts", + "cppdoc": "cpp/library/headers/experimental/ranges/concepts" + }, + { + "cppref": "cpp/header/experimental/ranges/algorithm", + "cppdoc": "cpp/library/headers/experimental/ranges/algorithm" + }, + { + "cppref": "cpp/header/experimental/ranges/functional", + "cppdoc": "cpp/library/headers/experimental/ranges/functional" + }, + { + "cppref": "cpp/header/experimental/ranges/utility", + "cppdoc": "cpp/library/headers/experimental/ranges/utility" + }, + { + "cppref": "cpp/named_req/BidirectionalIterator", + "cppdoc": "cpp/library/named_req/BidirectionalIterator" + }, + { + "cppref": "cpp/named_req/MoveInsertable", + "cppdoc": "cpp/library/named_req/MoveInsertable" + }, + { + "cppref": "cpp/named_req/TrivialType", + "cppdoc": "cpp/library/named_req/TrivialType" + }, + { + "cppref": "cpp/named_req/ForwardIterator", + "cppdoc": "cpp/library/named_req/ForwardIterator" + }, + { + "cppref": "cpp/named_req/AccessorPolicy", + "cppdoc": "cpp/library/named_req/AccessorPolicy" + }, + { + "cppref": "cpp/named_req/Compare", + "cppdoc": "cpp/library/named_req/Compare" + }, + { + "cppref": "cpp/named_req/DefaultInsertable", + "cppdoc": "cpp/library/named_req/DefaultInsertable" + }, + { + "cppref": "cpp/named_req/StandardLayoutType", + "cppdoc": "cpp/library/named_req/StandardLayoutType" + }, + { + "cppref": "cpp/named_req/SeedSequence", + "cppdoc": "cpp/library/named_req/SeedSequence" + }, + { + "cppref": "cpp/named_req/FormattedInputFunction", + "cppdoc": "cpp/library/named_req/FormattedInputFunction" + }, + { + "cppref": "cpp/named_req/MoveAssignable", + "cppdoc": "cpp/library/named_req/MoveAssignable" + }, + { + "cppref": "cpp/named_req/RangeAdaptorObject", + "cppdoc": "cpp/library/named_req/RangeAdaptorObject" + }, + { + "cppref": "cpp/named_req/Hash", + "cppdoc": "cpp/library/named_req/Hash" + }, + { + "cppref": "cpp/named_req/LiteralType", + "cppdoc": "cpp/library/named_req/LiteralType" + }, + { + "cppref": "cpp/named_req/ValueSwappable", + "cppdoc": "cpp/library/named_req/ValueSwappable" + }, + { + "cppref": "cpp/named_req/Container", + "cppdoc": "cpp/library/named_req/Container" + }, + { + "cppref": "cpp/named_req/PODType", + "cppdoc": "cpp/library/named_req/PODType" + }, + { + "cppref": "cpp/named_req/SharedTimedLockable", + "cppdoc": "cpp/library/named_req/SharedTimedLockable" + }, + { + "cppref": "cpp/named_req/BinaryPredicate", + "cppdoc": "cpp/library/named_req/BinaryPredicate" + }, + { + "cppref": "cpp/named_req/BooleanTestable", + "cppdoc": "cpp/library/named_req/BooleanTestable" + }, + { + "cppref": "cpp/named_req/ContiguousContainer", + "cppdoc": "cpp/library/named_req/ContiguousContainer" + }, + { + "cppref": "cpp/named_req/CopyConstructible", + "cppdoc": "cpp/library/named_req/CopyConstructible" + }, + { + "cppref": "cpp/named_req/Allocator", + "cppdoc": "cpp/library/named_req/Allocator" + }, + { + "cppref": "cpp/named_req/FormattedOutputFunction", + "cppdoc": "cpp/library/named_req/FormattedOutputFunction" + }, + { + "cppref": "cpp/named_req/LayoutMapping", + "cppdoc": "cpp/library/named_req/LayoutMapping" + }, + { + "cppref": "cpp/named_req/UniformRandomBitGenerator", + "cppdoc": "cpp/library/named_req/UniformRandomBitGenerator" + }, + { + "cppref": "cpp/named_req/RandomAccessIterator", + "cppdoc": "cpp/library/named_req/RandomAccessIterator" + }, + { + "cppref": "cpp/named_req/AllocatorAwareContainer", + "cppdoc": "cpp/library/named_req/AllocatorAwareContainer" + }, + { + "cppref": "cpp/named_req/EqualityComparable", + "cppdoc": "cpp/library/named_req/EqualityComparable" + }, + { + "cppref": "cpp/named_req/Destructible", + "cppdoc": "cpp/library/named_req/Destructible" + }, + { + "cppref": "cpp/named_req/Erasable", + "cppdoc": "cpp/library/named_req/Erasable" + }, + { + "cppref": "cpp/named_req/RandomNumberEngineAdaptor", + "cppdoc": "cpp/library/named_req/RandomNumberEngineAdaptor" + }, + { + "cppref": "cpp/named_req/TransformationTrait", + "cppdoc": "cpp/library/named_req/TransformationTrait" + }, + { + "cppref": "cpp/named_req/Predicate", + "cppdoc": "cpp/library/named_req/Predicate" + }, + { + "cppref": "cpp/named_req/UnaryTypeTrait", + "cppdoc": "cpp/library/named_req/UnaryTypeTrait" + }, + { + "cppref": "cpp/named_req/Callable", + "cppdoc": "cpp/library/named_req/Callable" + }, + { + "cppref": "cpp/named_req/Lockable", + "cppdoc": "cpp/library/named_req/Lockable" + }, + { + "cppref": "cpp/named_req/BitmaskType", + "cppdoc": "cpp/library/named_req/BitmaskType" + }, + { + "cppref": "cpp/named_req/ScalarType", + "cppdoc": "cpp/library/named_req/ScalarType" + }, + { + "cppref": "cpp/named_req/TriviallyCopyable", + "cppdoc": "cpp/library/named_req/TriviallyCopyable" + }, + { + "cppref": "cpp/named_req/ReversibleContainer", + "cppdoc": "cpp/library/named_req/ReversibleContainer" + }, + { + "cppref": "cpp/named_req/Formatter", + "cppdoc": "cpp/library/named_req/Formatter" + }, + { + "cppref": "cpp/named_req/ConstexprIterator", + "cppdoc": "cpp/library/named_req/ConstexprIterator" + }, + { + "cppref": "cpp/named_req/RandomNumberEngine", + "cppdoc": "cpp/library/named_req/RandomNumberEngine" + }, + { + "cppref": "cpp/named_req/CharTraits", + "cppdoc": "cpp/library/named_req/CharTraits" + }, + { + "cppref": "cpp/named_req/SequenceContainer", + "cppdoc": "cpp/library/named_req/SequenceContainer" + }, + { + "cppref": "cpp/named_req/NumericType", + "cppdoc": "cpp/library/named_req/NumericType" + }, + { + "cppref": "cpp/named_req/UnformattedOutputFunction", + "cppdoc": "cpp/library/named_req/UnformattedOutputFunction" + }, + { + "cppref": "cpp/named_req/ContiguousIterator", + "cppdoc": "cpp/library/named_req/ContiguousIterator" + }, + { + "cppref": "cpp/named_req/SharedMutex", + "cppdoc": "cpp/library/named_req/SharedMutex" + }, + { + "cppref": "cpp/named_req/TimedMutex", + "cppdoc": "cpp/library/named_req/TimedMutex" + }, + { + "cppref": "cpp/named_req/TimedLockable", + "cppdoc": "cpp/library/named_req/TimedLockable" + }, + { + "cppref": "cpp/named_req/LessThanComparable", + "cppdoc": "cpp/library/named_req/LessThanComparable" + }, + { + "cppref": "cpp/named_req/SharedLockable", + "cppdoc": "cpp/library/named_req/SharedLockable" + }, + { + "cppref": "cpp/named_req/Clock", + "cppdoc": "cpp/library/named_req/Clock" + }, + { + "cppref": "cpp/named_req/BasicFormatter", + "cppdoc": "cpp/library/named_req/BasicFormatter" + }, + { + "cppref": "cpp/named_req/CopyAssignable", + "cppdoc": "cpp/library/named_req/CopyAssignable" + }, + { + "cppref": "cpp/named_req/EmplaceConstructible", + "cppdoc": "cpp/library/named_req/EmplaceConstructible" + }, + { + "cppref": "cpp/named_req/CopyInsertable", + "cppdoc": "cpp/library/named_req/CopyInsertable" + }, + { + "cppref": "cpp/named_req/UnformattedInputFunction", + "cppdoc": "cpp/library/named_req/UnformattedInputFunction" + }, + { + "cppref": "cpp/named_req/ImplicitLifetimeType", + "cppdoc": "cpp/library/named_req/ImplicitLifetimeType" + }, + { + "cppref": "cpp/named_req/RandomNumberDistribution", + "cppdoc": "cpp/library/named_req/RandomNumberDistribution" + }, + { + "cppref": "cpp/named_req/RegexTraits", + "cppdoc": "cpp/library/named_req/RegexTraits" + }, + { + "cppref": "cpp/named_req/LayoutMappingPolicy", + "cppdoc": "cpp/library/named_req/LayoutMappingPolicy" + }, + { + "cppref": "cpp/named_req/UnorderedAssociativeContainer", + "cppdoc": "cpp/library/named_req/UnorderedAssociativeContainer" + }, + { + "cppref": "cpp/named_req/BinaryTypeTrait", + "cppdoc": "cpp/library/named_req/BinaryTypeTrait" + }, + { + "cppref": "cpp/named_req/SharedTimedMutex", + "cppdoc": "cpp/library/named_req/SharedTimedMutex" + }, + { + "cppref": "cpp/named_req/AssociativeContainer", + "cppdoc": "cpp/library/named_req/AssociativeContainer" + }, + { + "cppref": "cpp/named_req/InputIterator", + "cppdoc": "cpp/library/named_req/InputIterator" + }, + { + "cppref": "cpp/named_req/RangeAdaptorClosureObject", + "cppdoc": "cpp/library/named_req/RangeAdaptorClosureObject" + }, + { + "cppref": "cpp/named_req/Swappable", + "cppdoc": "cpp/library/named_req/Swappable" + }, + { + "cppref": "cpp/named_req/Mutex", + "cppdoc": "cpp/library/named_req/Mutex" + }, + { + "cppref": "cpp/named_req/Iterator", + "cppdoc": "cpp/library/named_req/Iterator" + }, + { + "cppref": "cpp/named_req/MoveConstructible", + "cppdoc": "cpp/library/named_req/MoveConstructible" + }, + { + "cppref": "cpp/named_req/TrivialClock", + "cppdoc": "cpp/library/named_req/TrivialClock" + }, + { + "cppref": "cpp/named_req/DefaultConstructible", + "cppdoc": "cpp/library/named_req/DefaultConstructible" + }, + { + "cppref": "cpp/named_req/OutputIterator", + "cppdoc": "cpp/library/named_req/OutputIterator" + }, + { + "cppref": "cpp/named_req/BasicLockable", + "cppdoc": "cpp/library/named_req/BasicLockable" + }, + { + "cppref": "cpp/named_req/FunctionObject", + "cppdoc": "cpp/library/named_req/FunctionObject" + }, + { + "cppref": "cpp/named_req/NullablePointer", + "cppdoc": "cpp/library/named_req/NullablePointer" + }, + { + "cppref": "cpp/locale/time_put", + "cppdoc": "cpp/library/text/locale/time_put" + }, + { + "cppref": "cpp/locale/num_put", + "cppdoc": "cpp/library/text/locale/num_put" + }, + { + "cppref": "cpp/locale/ctype_byname", + "cppdoc": "cpp/library/text/locale/ctype_byname" + }, + { + "cppref": "cpp/locale/islower", + "cppdoc": "cpp/library/text/locale/islower" + }, + { + "cppref": "cpp/locale/iscntrl", + "cppdoc": "cpp/library/text/locale/iscntrl" + }, + { + "cppref": "cpp/locale/codecvt_base", + "cppdoc": "cpp/library/text/locale/codecvt_base" + }, + { + "cppref": "cpp/locale/toupper", + "cppdoc": "cpp/library/text/locale/toupper" + }, + { + "cppref": "cpp/locale/isprint", + "cppdoc": "cpp/library/text/locale/isprint" + }, + { + "cppref": "cpp/locale/collate_byname", + "cppdoc": "cpp/library/text/locale/collate_byname" + }, + { + "cppref": "cpp/locale/LC_categories", + "cppdoc": "cpp/library/text/locale/LC_categories" + }, + { + "cppref": "cpp/locale/localeconv", + "cppdoc": "cpp/library/text/locale/localeconv" + }, + { + "cppref": "cpp/locale/moneypunct", + "cppdoc": "cpp/library/text/locale/moneypunct" + }, + { + "cppref": "cpp/locale/messages", + "cppdoc": "cpp/library/text/locale/messages" + }, + { + "cppref": "cpp/locale/money_put", + "cppdoc": "cpp/library/text/locale/money_put" + }, + { + "cppref": "cpp/locale/ctype", + "cppdoc": "cpp/library/text/locale/ctype" + }, + { + "cppref": "cpp/locale/codecvt_byname", + "cppdoc": "cpp/library/text/locale/codecvt_byname" + }, + { + "cppref": "cpp/locale/money_base", + "cppdoc": "cpp/library/text/locale/money_base" + }, + { + "cppref": "cpp/locale/codecvt", + "cppdoc": "cpp/library/text/locale/codecvt" + }, + { + "cppref": "cpp/locale/codecvt_utf8_utf16", + "cppdoc": "cpp/library/text/locale/codecvt_utf8_utf16" + }, + { + "cppref": "cpp/locale/setlocale", + "cppdoc": "cpp/library/text/locale/setlocale" + }, + { + "cppref": "cpp/locale/isalpha", + "cppdoc": "cpp/library/text/locale/isalpha" + }, + { + "cppref": "cpp/locale/codecvt_utf16", + "cppdoc": "cpp/library/text/locale/codecvt_utf16" + }, + { + "cppref": "cpp/locale/time_get_byname", + "cppdoc": "cpp/library/text/locale/time_get_byname" + }, + { + "cppref": "cpp/locale/codecvt_mode", + "cppdoc": "cpp/library/text/locale/codecvt_mode" + }, + { + "cppref": "cpp/locale/wstring_convert", + "cppdoc": "cpp/library/text/locale/wstring_convert" + }, + { + "cppref": "cpp/locale/ispunct", + "cppdoc": "cpp/library/text/locale/ispunct" + }, + { + "cppref": "cpp/locale/lconv", + "cppdoc": "cpp/library/text/locale/lconv" + }, + { + "cppref": "cpp/locale/wbuffer_convert", + "cppdoc": "cpp/library/text/locale/wbuffer_convert" + }, + { + "cppref": "cpp/locale/time_base", + "cppdoc": "cpp/library/text/locale/time_base" + }, + { + "cppref": "cpp/locale/messages_base", + "cppdoc": "cpp/library/text/locale/messages_base" + }, + { + "cppref": "cpp/locale/num_get", + "cppdoc": "cpp/library/text/locale/num_get" + }, + { + "cppref": "cpp/locale/numpunct_byname", + "cppdoc": "cpp/library/text/locale/numpunct_byname" + }, + { + "cppref": "cpp/locale/ctype_char", + "cppdoc": "cpp/library/text/locale/ctype_char" + }, + { + "cppref": "cpp/locale/text_encoding", + "cppdoc": "cpp/library/text/text_encoding" + }, + { + "cppref": "cpp/locale/isdigit", + "cppdoc": "cpp/library/text/locale/isdigit" + }, + { + "cppref": "cpp/locale/isspace", + "cppdoc": "cpp/library/text/locale/isspace" + }, + { + "cppref": "cpp/locale/collate", + "cppdoc": "cpp/library/text/locale/collate" + }, + { + "cppref": "cpp/locale/money_get", + "cppdoc": "cpp/library/text/locale/money_get" + }, + { + "cppref": "cpp/locale/ctype_base", + "cppdoc": "cpp/library/text/locale/ctype_base" + }, + { + "cppref": "cpp/locale/codecvt_utf8", + "cppdoc": "cpp/library/text/locale/codecvt_utf8" + }, + { + "cppref": "cpp/locale/messages_byname", + "cppdoc": "cpp/library/text/locale/messages_byname" + }, + { + "cppref": "cpp/locale/time_get", + "cppdoc": "cpp/library/text/locale/time_get" + }, + { + "cppref": "cpp/locale/numpunct", + "cppdoc": "cpp/library/text/locale/numpunct" + }, + { + "cppref": "cpp/locale/isxdigit", + "cppdoc": "cpp/library/text/locale/isxdigit" + }, + { + "cppref": "cpp/locale/has_facet", + "cppdoc": "cpp/library/text/locale/has_facet" + }, + { + "cppref": "cpp/locale/locale", + "cppdoc": "cpp/library/text/locale/locale" + }, + { + "cppref": "cpp/locale/use_facet", + "cppdoc": "cpp/library/text/locale/use_facet" + }, + { + "cppref": "cpp/locale/isgraph", + "cppdoc": "cpp/library/text/locale/isgraph" + }, + { + "cppref": "cpp/locale/time_put_byname", + "cppdoc": "cpp/library/text/locale/time_put_byname" + }, + { + "cppref": "cpp/locale/tolower", + "cppdoc": "cpp/library/text/locale/tolower" + }, + { + "cppref": "cpp/locale/isblank", + "cppdoc": "cpp/library/text/locale/isblank" + }, + { + "cppref": "cpp/locale/isalnum", + "cppdoc": "cpp/library/text/locale/isalnum" + }, + { + "cppref": "cpp/locale/isupper", + "cppdoc": "cpp/library/text/locale/isupper" + }, + { + "cppref": "cpp/locale/moneypunct_byname", + "cppdoc": "cpp/library/text/locale/moneypunct_byname" + }, + { + "cppref": "cpp/locale/money_put/money_put", + "cppdoc": "cpp/library/text/locale/money_put/money_put" + }, + { + "cppref": "cpp/locale/money_put/put", + "cppdoc": "cpp/library/text/locale/money_put/put" + }, + { + "cppref": "cpp/locale/money_put/~money_put", + "cppdoc": "cpp/library/text/locale/money_put/~money_put" + }, + { + "cppref": "cpp/locale/messages/messages", + "cppdoc": "cpp/library/text/locale/messages/messages" + }, + { + "cppref": "cpp/locale/messages/get", + "cppdoc": "cpp/library/text/locale/messages/get" + }, + { + "cppref": "cpp/locale/messages/close", + "cppdoc": "cpp/library/text/locale/messages/close" + }, + { + "cppref": "cpp/locale/messages/~messages", + "cppdoc": "cpp/library/text/locale/messages/~messages" + }, + { + "cppref": "cpp/locale/messages/open", + "cppdoc": "cpp/library/text/locale/messages/open" + }, + { + "cppref": "cpp/locale/locale/global", + "cppdoc": "cpp/library/text/locale/locale/global" + }, + { + "cppref": "cpp/locale/locale/~locale", + "cppdoc": "cpp/library/text/locale/locale/~locale" + }, + { + "cppref": "cpp/locale/locale/combine", + "cppdoc": "cpp/library/text/locale/locale/combine" + }, + { + "cppref": "cpp/locale/locale/id", + "cppdoc": "cpp/library/text/locale/locale/id" + }, + { + "cppref": "cpp/locale/locale/operator()", + "cppdoc": "cpp/library/text/locale/locale/operator()" + }, + { + "cppref": "cpp/locale/locale/classic", + "cppdoc": "cpp/library/text/locale/locale/classic" + }, + { + "cppref": "cpp/locale/locale/name", + "cppdoc": "cpp/library/text/locale/locale/name" + }, + { + "cppref": "cpp/locale/locale/operator_cmp", + "cppdoc": "cpp/library/text/locale/locale/operator_cmp" + }, + { + "cppref": "cpp/locale/locale/encoding", + "cppdoc": "cpp/library/text/locale/locale/encoding" + }, + { + "cppref": "cpp/locale/locale/facet", + "cppdoc": "cpp/library/text/locale/locale/facet" + }, + { + "cppref": "cpp/locale/locale/operator=", + "cppdoc": "cpp/library/text/locale/locale/operator=" + }, + { + "cppref": "cpp/locale/locale/locale", + "cppdoc": "cpp/library/text/locale/locale/locale" + }, + { + "cppref": "cpp/locale/locale/facet/facet", + "cppdoc": "cpp/library/text/locale/locale/facet/facet" + }, + { + "cppref": "cpp/locale/locale/id/id", + "cppdoc": "cpp/library/text/locale/locale/id/id" + }, + { + "cppref": "cpp/locale/moneypunct/pos_format", + "cppdoc": "cpp/library/text/locale/moneypunct/pos_format" + }, + { + "cppref": "cpp/locale/moneypunct/moneypunct", + "cppdoc": "cpp/library/text/locale/moneypunct/moneypunct" + }, + { + "cppref": "cpp/locale/moneypunct/grouping", + "cppdoc": "cpp/library/text/locale/moneypunct/grouping" + }, + { + "cppref": "cpp/locale/moneypunct/~moneypunct", + "cppdoc": "cpp/library/text/locale/moneypunct/~moneypunct" + }, + { + "cppref": "cpp/locale/moneypunct/positive_sign", + "cppdoc": "cpp/library/text/locale/moneypunct/positive_sign" + }, + { + "cppref": "cpp/locale/moneypunct/thousands_sep", + "cppdoc": "cpp/library/text/locale/moneypunct/thousands_sep" + }, + { + "cppref": "cpp/locale/moneypunct/decimal_point", + "cppdoc": "cpp/library/text/locale/moneypunct/decimal_point" + }, + { + "cppref": "cpp/locale/moneypunct/frac_digits", + "cppdoc": "cpp/library/text/locale/moneypunct/frac_digits" + }, + { + "cppref": "cpp/locale/moneypunct/curr_symbol", + "cppdoc": "cpp/library/text/locale/moneypunct/curr_symbol" + }, + { + "cppref": "cpp/locale/numpunct/grouping", + "cppdoc": "cpp/library/text/locale/numpunct/grouping" + }, + { + "cppref": "cpp/locale/numpunct/~numpunct", + "cppdoc": "cpp/library/text/locale/numpunct/~numpunct" + }, + { + "cppref": "cpp/locale/numpunct/thousands_sep", + "cppdoc": "cpp/library/text/locale/numpunct/thousands_sep" + }, + { + "cppref": "cpp/locale/numpunct/decimal_point", + "cppdoc": "cpp/library/text/locale/numpunct/decimal_point" + }, + { + "cppref": "cpp/locale/numpunct/numpunct", + "cppdoc": "cpp/library/text/locale/numpunct/numpunct" + }, + { + "cppref": "cpp/locale/numpunct/truefalsename", + "cppdoc": "cpp/library/text/locale/numpunct/truefalsename" + }, + { + "cppref": "cpp/locale/ctype_char/classic_table", + "cppdoc": "cpp/library/text/locale/ctype/../ctype_char/classic_table" + }, + { + "cppref": "cpp/locale/ctype_char/ctype", + "cppdoc": "cpp/library/text/locale/ctype/../ctype_char/ctype" + }, + { + "cppref": "cpp/locale/ctype_char/~ctype", + "cppdoc": "cpp/library/text/locale/ctype/../ctype_char/~ctype" + }, + { + "cppref": "cpp/locale/ctype_char/scan_is", + "cppdoc": "cpp/library/text/locale/ctype/../ctype_char/scan_is" + }, + { + "cppref": "cpp/locale/ctype_char/is", + "cppdoc": "cpp/library/text/locale/ctype/../ctype_char/is" + }, + { + "cppref": "cpp/locale/ctype_char/table", + "cppdoc": "cpp/library/text/locale/ctype/../ctype_char/table" + }, + { + "cppref": "cpp/locale/ctype_char/scan_not", + "cppdoc": "cpp/library/text/locale/ctype/../ctype_char/scan_not" + }, + { + "cppref": "cpp/locale/collate/hash", + "cppdoc": "cpp/library/text/locale/collate/hash" + }, + { + "cppref": "cpp/locale/collate/compare", + "cppdoc": "cpp/library/text/locale/collate/compare" + }, + { + "cppref": "cpp/locale/collate/collate", + "cppdoc": "cpp/library/text/locale/collate/collate" + }, + { + "cppref": "cpp/locale/collate/transform", + "cppdoc": "cpp/library/text/locale/collate/transform" + }, + { + "cppref": "cpp/locale/collate/~collate", + "cppdoc": "cpp/library/text/locale/collate/~collate" + }, + { + "cppref": "cpp/locale/codecvt/out", + "cppdoc": "cpp/library/text/locale/codecvt/out" + }, + { + "cppref": "cpp/locale/codecvt/codecvt", + "cppdoc": "cpp/library/text/locale/codecvt/codecvt" + }, + { + "cppref": "cpp/locale/codecvt/~codecvt", + "cppdoc": "cpp/library/text/locale/codecvt/~codecvt" + }, + { + "cppref": "cpp/locale/codecvt/in", + "cppdoc": "cpp/library/text/locale/codecvt/in" + }, + { + "cppref": "cpp/locale/codecvt/unshift", + "cppdoc": "cpp/library/text/locale/codecvt/unshift" + }, + { + "cppref": "cpp/locale/codecvt/max_length", + "cppdoc": "cpp/library/text/locale/codecvt/max_length" + }, + { + "cppref": "cpp/locale/codecvt/always_noconv", + "cppdoc": "cpp/library/text/locale/codecvt/always_noconv" + }, + { + "cppref": "cpp/locale/codecvt/length", + "cppdoc": "cpp/library/text/locale/codecvt/length" + }, + { + "cppref": "cpp/locale/codecvt/encoding", + "cppdoc": "cpp/library/text/locale/codecvt/encoding" + }, + { + "cppref": "cpp/locale/num_put/num_put", + "cppdoc": "cpp/library/text/locale/num_put/num_put" + }, + { + "cppref": "cpp/locale/num_put/put", + "cppdoc": "cpp/library/text/locale/num_put/put" + }, + { + "cppref": "cpp/locale/num_put/~num_put", + "cppdoc": "cpp/library/text/locale/num_put/~num_put" + }, + { + "cppref": "cpp/locale/num_get/num_get", + "cppdoc": "cpp/library/text/locale/num_get/num_get" + }, + { + "cppref": "cpp/locale/num_get/get", + "cppdoc": "cpp/library/text/locale/num_get/get" + }, + { + "cppref": "cpp/locale/num_get/~num_get", + "cppdoc": "cpp/library/text/locale/num_get/~num_get" + }, + { + "cppref": "cpp/locale/money_get/~money_get", + "cppdoc": "cpp/library/text/locale/money_get/~money_get" + }, + { + "cppref": "cpp/locale/money_get/get", + "cppdoc": "cpp/library/text/locale/money_get/get" + }, + { + "cppref": "cpp/locale/money_get/money_get", + "cppdoc": "cpp/library/text/locale/money_get/money_get" + }, + { + "cppref": "cpp/locale/time_get/get_time", + "cppdoc": "cpp/library/text/locale/time_get/get_time" + }, + { + "cppref": "cpp/locale/time_get/date_order", + "cppdoc": "cpp/library/text/locale/time_get/date_order" + }, + { + "cppref": "cpp/locale/time_get/get_monthname", + "cppdoc": "cpp/library/text/locale/time_get/get_monthname" + }, + { + "cppref": "cpp/locale/time_get/get_weekday", + "cppdoc": "cpp/library/text/locale/time_get/get_weekday" + }, + { + "cppref": "cpp/locale/time_get/get_year", + "cppdoc": "cpp/library/text/locale/time_get/get_year" + }, + { + "cppref": "cpp/locale/time_get/get", + "cppdoc": "cpp/library/text/locale/time_get/get" + }, + { + "cppref": "cpp/locale/time_get/~time_get", + "cppdoc": "cpp/library/text/locale/time_get/~time_get" + }, + { + "cppref": "cpp/locale/time_get/get_date", + "cppdoc": "cpp/library/text/locale/time_get/get_date" + }, + { + "cppref": "cpp/locale/time_get/time_get", + "cppdoc": "cpp/library/text/locale/time_get/time_get" + }, + { + "cppref": "cpp/locale/ctype/toupper", + "cppdoc": "cpp/library/text/locale/ctype/toupper" + }, + { + "cppref": "cpp/locale/ctype/ctype", + "cppdoc": "cpp/library/text/locale/ctype/ctype" + }, + { + "cppref": "cpp/locale/ctype/~ctype", + "cppdoc": "cpp/library/text/locale/ctype/~ctype" + }, + { + "cppref": "cpp/locale/ctype/scan_is", + "cppdoc": "cpp/library/text/locale/ctype/scan_is" + }, + { + "cppref": "cpp/locale/ctype/narrow", + "cppdoc": "cpp/library/text/locale/ctype/narrow" + }, + { + "cppref": "cpp/locale/ctype/is", + "cppdoc": "cpp/library/text/locale/ctype/is" + }, + { + "cppref": "cpp/locale/ctype/widen", + "cppdoc": "cpp/library/text/locale/ctype/widen" + }, + { + "cppref": "cpp/locale/ctype/scan_not", + "cppdoc": "cpp/library/text/locale/ctype/scan_not" + }, + { + "cppref": "cpp/locale/ctype/tolower", + "cppdoc": "cpp/library/text/locale/ctype/tolower" + }, + { + "cppref": "cpp/locale/wstring_convert/from_bytes", + "cppdoc": "cpp/library/text/locale/wstring_convert/from_bytes" + }, + { + "cppref": "cpp/locale/wstring_convert/wstring_convert", + "cppdoc": "cpp/library/text/locale/wstring_convert/wstring_convert" + }, + { + "cppref": "cpp/locale/wstring_convert/converted", + "cppdoc": "cpp/library/text/locale/wstring_convert/converted" + }, + { + "cppref": "cpp/locale/wstring_convert/~wstring_convert", + "cppdoc": "cpp/library/text/locale/wstring_convert/~wstring_convert" + }, + { + "cppref": "cpp/locale/wstring_convert/to_bytes", + "cppdoc": "cpp/library/text/locale/wstring_convert/to_bytes" + }, + { + "cppref": "cpp/locale/wstring_convert/state", + "cppdoc": "cpp/library/text/locale/wstring_convert/state" + }, + { + "cppref": "cpp/locale/wbuffer_convert/wbuffer_convert", + "cppdoc": "cpp/library/text/locale/wbuffer_convert/wbuffer_convert" + }, + { + "cppref": "cpp/locale/wbuffer_convert/~wbuffer_convert", + "cppdoc": "cpp/library/text/locale/wbuffer_convert/~wbuffer_convert" + }, + { + "cppref": "cpp/locale/wbuffer_convert/rdbuf", + "cppdoc": "cpp/library/text/locale/wbuffer_convert/rdbuf" + }, + { + "cppref": "cpp/locale/wbuffer_convert/state", + "cppdoc": "cpp/library/text/locale/wbuffer_convert/state" + }, + { + "cppref": "cpp/locale/time_put/time_put", + "cppdoc": "cpp/library/text/locale/time_put/time_put" + }, + { + "cppref": "cpp/locale/time_put/put", + "cppdoc": "cpp/library/text/locale/time_put/put" + }, + { + "cppref": "cpp/locale/time_put/~time_put", + "cppdoc": "cpp/library/text/locale/time_put/~time_put" + }, + { + "cppref": "cpp/text/text_encoding", + "cppdoc": "cpp/library/text/text_encoding" + }, + { + "cppref": "cpp/text/text_encoding/operator_eq", + "cppdoc": "cpp/library/text/text_encoding/operator_eq" + }, + { + "cppref": "cpp/text/text_encoding/hash", + "cppdoc": "cpp/library/text/text_encoding/hash" + }, + { + "cppref": "cpp/text/text_encoding/aliases", + "cppdoc": "cpp/library/text/text_encoding/aliases" + }, + { + "cppref": "cpp/text/text_encoding/comp-name", + "cppdoc": "cpp/library/text/text_encoding/comp-name" + }, + { + "cppref": "cpp/text/text_encoding/mib", + "cppdoc": "cpp/library/text/text_encoding/mib" + }, + { + "cppref": "cpp/text/text_encoding/id", + "cppdoc": "cpp/library/text/text_encoding/id" + }, + { + "cppref": "cpp/text/text_encoding/environment", + "cppdoc": "cpp/library/text/text_encoding/environment" + }, + { + "cppref": "cpp/text/text_encoding/name", + "cppdoc": "cpp/library/text/text_encoding/name" + }, + { + "cppref": "cpp/text/text_encoding/environment_is", + "cppdoc": "cpp/library/text/text_encoding/environment_is" + }, + { + "cppref": "cpp/text/text_encoding/literal", + "cppdoc": "cpp/library/text/text_encoding/literal" + }, + { + "cppref": "cpp/text/text_encoding/aliases_view", + "cppdoc": "cpp/library/text/text_encoding/aliases_view" + }, + { + "cppref": "cpp/string/byte", + "cppdoc": "cpp/library/text/byte" + }, + { + "cppref": "cpp/string/basic_string", + "cppdoc": "cpp/library/string/basic_string" + }, + { + "cppref": "cpp/string/multibyte", + "cppdoc": "cpp/library/text/multibyte" + }, + { + "cppref": "cpp/string/basic_string_view", + "cppdoc": "cpp/library/string/basic_string_view" + }, + { + "cppref": "cpp/string/char_traits", + "cppdoc": "cpp/library/string/char_traits" + }, + { + "cppref": "cpp/string/wide", + "cppdoc": "cpp/library/text/wide" + }, + { + "cppref": "cpp/string/multibyte/mbsinit", + "cppdoc": "cpp/library/text/multibyte/mbsinit" + }, + { + "cppref": "cpp/string/multibyte/mbrtoc16", + "cppdoc": "cpp/library/text/multibyte/mbrtoc16" + }, + { + "cppref": "cpp/string/multibyte/wctomb", + "cppdoc": "cpp/library/text/multibyte/wctomb" + }, + { + "cppref": "cpp/string/multibyte/mbstate_t", + "cppdoc": "cpp/library/text/multibyte/mbstate_t" + }, + { + "cppref": "cpp/string/multibyte/mbtowc", + "cppdoc": "cpp/library/text/multibyte/mbtowc" + }, + { + "cppref": "cpp/string/multibyte/mbrtoc32", + "cppdoc": "cpp/library/text/multibyte/mbrtoc32" + }, + { + "cppref": "cpp/string/multibyte/wcsrtombs", + "cppdoc": "cpp/library/text/multibyte/wcsrtombs" + }, + { + "cppref": "cpp/string/multibyte/wcrtomb", + "cppdoc": "cpp/library/text/multibyte/wcrtomb" + }, + { + "cppref": "cpp/string/multibyte/wctob", + "cppdoc": "cpp/library/text/multibyte/wctob" + }, + { + "cppref": "cpp/string/multibyte/mbrlen", + "cppdoc": "cpp/library/text/multibyte/mbrlen" + }, + { + "cppref": "cpp/string/multibyte/c32rtomb", + "cppdoc": "cpp/library/text/multibyte/c32rtomb" + }, + { + "cppref": "cpp/string/multibyte/mbrtowc", + "cppdoc": "cpp/library/text/multibyte/mbrtowc" + }, + { + "cppref": "cpp/string/multibyte/c16rtomb", + "cppdoc": "cpp/library/text/multibyte/c16rtomb" + }, + { + "cppref": "cpp/string/multibyte/btowc", + "cppdoc": "cpp/library/text/multibyte/btowc" + }, + { + "cppref": "cpp/string/multibyte/mbstowcs", + "cppdoc": "cpp/library/text/multibyte/mbstowcs" + }, + { + "cppref": "cpp/string/multibyte/wcstombs", + "cppdoc": "cpp/library/text/multibyte/wcstombs" + }, + { + "cppref": "cpp/string/multibyte/c8rtomb", + "cppdoc": "cpp/library/text/multibyte/c8rtomb" + }, + { + "cppref": "cpp/string/multibyte/mbsrtowcs", + "cppdoc": "cpp/library/text/multibyte/mbsrtowcs" + }, + { + "cppref": "cpp/string/multibyte/mblen", + "cppdoc": "cpp/library/text/multibyte/mblen" + }, + { + "cppref": "cpp/string/multibyte/mbrtoc8", + "cppdoc": "cpp/library/text/multibyte/mbrtoc8" + }, + { + "cppref": "cpp/string/basic_string/stoul", + "cppdoc": "cpp/library/string/basic_string/stoul" + }, + { + "cppref": "cpp/string/basic_string/operator_at", + "cppdoc": "cpp/library/string/basic_string/operator_at" + }, + { + "cppref": "cpp/string/basic_string/replace", + "cppdoc": "cpp/library/string/basic_string/replace" + }, + { + "cppref": "cpp/string/basic_string/at", + "cppdoc": "cpp/library/string/basic_string/at" + }, + { + "cppref": "cpp/string/basic_string/operator_q__q_s", + "cppdoc": "cpp/library/string/basic_string/operator_q__q_s" + }, + { + "cppref": "cpp/string/basic_string/back", + "cppdoc": "cpp/library/string/basic_string/back" + }, + { + "cppref": "cpp/string/basic_string/npos", + "cppdoc": "cpp/library/string/basic_string/npos" + }, + { + "cppref": "cpp/string/basic_string/assign", + "cppdoc": "cpp/library/string/basic_string/assign" + }, + { + "cppref": "cpp/string/basic_string/insert", + "cppdoc": "cpp/library/string/basic_string/insert" + }, + { + "cppref": "cpp/string/basic_string/empty", + "cppdoc": "cpp/library/string/basic_string/empty" + }, + { + "cppref": "cpp/string/basic_string/find", + "cppdoc": "cpp/library/string/basic_string/find" + }, + { + "cppref": "cpp/string/basic_string/hash", + "cppdoc": "cpp/library/string/basic_string/hash" + }, + { + "cppref": "cpp/string/basic_string/max_size", + "cppdoc": "cpp/library/string/basic_string/max_size" + }, + { + "cppref": "cpp/string/basic_string/resize_and_overwrite", + "cppdoc": "cpp/library/string/basic_string/resize_and_overwrite" + }, + { + "cppref": "cpp/string/basic_string/size", + "cppdoc": "cpp/library/string/basic_string/size" + }, + { + "cppref": "cpp/string/basic_string/operator+=", + "cppdoc": "cpp/library/string/basic_string/operator+=" + }, + { + "cppref": "cpp/string/basic_string/copy", + "cppdoc": "cpp/library/string/basic_string/copy" + }, + { + "cppref": "cpp/string/basic_string/ends_with", + "cppdoc": "cpp/library/string/basic_string/ends_with" + }, + { + "cppref": "cpp/string/basic_string/find_first_not_of", + "cppdoc": "cpp/library/string/basic_string/find_first_not_of" + }, + { + "cppref": "cpp/string/basic_string/to_string", + "cppdoc": "cpp/library/string/basic_string/to_string" + }, + { + "cppref": "cpp/string/basic_string/to_wstring", + "cppdoc": "cpp/library/string/basic_string/to_wstring" + }, + { + "cppref": "cpp/string/basic_string/operator_ltltgtgt", + "cppdoc": "cpp/library/string/basic_string/operator_ltltgtgt" + }, + { + "cppref": "cpp/string/basic_string/swap2", + "cppdoc": "cpp/library/string/basic_string/swap2" + }, + { + "cppref": "cpp/string/basic_string/end", + "cppdoc": "cpp/library/string/basic_string/end" + }, + { + "cppref": "cpp/string/basic_string/rend", + "cppdoc": "cpp/library/string/basic_string/rend" + }, + { + "cppref": "cpp/string/basic_string/~basic_string", + "cppdoc": "cpp/library/string/basic_string/~basic_string" + }, + { + "cppref": "cpp/string/basic_string/begin", + "cppdoc": "cpp/library/string/basic_string/begin" + }, + { + "cppref": "cpp/string/basic_string/substr", + "cppdoc": "cpp/library/string/basic_string/substr" + }, + { + "cppref": "cpp/string/basic_string/stol", + "cppdoc": "cpp/library/string/basic_string/stol" + }, + { + "cppref": "cpp/string/basic_string/deduction_guides", + "cppdoc": "cpp/library/string/basic_string/deduction_guides" + }, + { + "cppref": "cpp/string/basic_string/pop_back", + "cppdoc": "cpp/library/string/basic_string/pop_back" + }, + { + "cppref": "cpp/string/basic_string/find_last_not_of", + "cppdoc": "cpp/library/string/basic_string/find_last_not_of" + }, + { + "cppref": "cpp/string/basic_string/assign_range", + "cppdoc": "cpp/library/string/basic_string/assign_range" + }, + { + "cppref": "cpp/string/basic_string/getline", + "cppdoc": "cpp/library/string/basic_string/getline" + }, + { + "cppref": "cpp/string/basic_string/swap", + "cppdoc": "cpp/library/string/basic_string/swap" + }, + { + "cppref": "cpp/string/basic_string/stof", + "cppdoc": "cpp/library/string/basic_string/stof" + }, + { + "cppref": "cpp/string/basic_string/front", + "cppdoc": "cpp/library/string/basic_string/front" + }, + { + "cppref": "cpp/string/basic_string/rfind", + "cppdoc": "cpp/library/string/basic_string/rfind" + }, + { + "cppref": "cpp/string/basic_string/operator+", + "cppdoc": "cpp/library/string/basic_string/operator+" + }, + { + "cppref": "cpp/string/basic_string/resize", + "cppdoc": "cpp/library/string/basic_string/resize" + }, + { + "cppref": "cpp/string/basic_string/rbegin", + "cppdoc": "cpp/library/string/basic_string/rbegin" + }, + { + "cppref": "cpp/string/basic_string/compare", + "cppdoc": "cpp/library/string/basic_string/compare" + }, + { + "cppref": "cpp/string/basic_string/basic_string", + "cppdoc": "cpp/library/string/basic_string/basic_string" + }, + { + "cppref": "cpp/string/basic_string/reserve", + "cppdoc": "cpp/library/string/basic_string/reserve" + }, + { + "cppref": "cpp/string/basic_string/append", + "cppdoc": "cpp/library/string/basic_string/append" + }, + { + "cppref": "cpp/string/basic_string/erase", + "cppdoc": "cpp/library/string/basic_string/erase" + }, + { + "cppref": "cpp/string/basic_string/operator_cmp", + "cppdoc": "cpp/library/string/basic_string/operator_cmp" + }, + { + "cppref": "cpp/string/basic_string/get_allocator", + "cppdoc": "cpp/library/string/basic_string/get_allocator" + }, + { + "cppref": "cpp/string/basic_string/contains", + "cppdoc": "cpp/library/string/basic_string/contains" + }, + { + "cppref": "cpp/string/basic_string/find_last_of", + "cppdoc": "cpp/library/string/basic_string/find_last_of" + }, + { + "cppref": "cpp/string/basic_string/c_str", + "cppdoc": "cpp/library/string/basic_string/c_str" + }, + { + "cppref": "cpp/string/basic_string/insert_range", + "cppdoc": "cpp/library/string/basic_string/insert_range" + }, + { + "cppref": "cpp/string/basic_string/erase2", + "cppdoc": "cpp/library/string/basic_string/erase2" + }, + { + "cppref": "cpp/string/basic_string/find_first_of", + "cppdoc": "cpp/library/string/basic_string/find_first_of" + }, + { + "cppref": "cpp/string/basic_string/operator_basic_string_view", + "cppdoc": "cpp/library/string/basic_string/operator_basic_string_view" + }, + { + "cppref": "cpp/string/basic_string/capacity", + "cppdoc": "cpp/library/string/basic_string/capacity" + }, + { + "cppref": "cpp/string/basic_string/operator=", + "cppdoc": "cpp/library/string/basic_string/operator=" + }, + { + "cppref": "cpp/string/basic_string/data", + "cppdoc": "cpp/library/string/basic_string/data" + }, + { + "cppref": "cpp/string/basic_string/push_back", + "cppdoc": "cpp/library/string/basic_string/push_back" + }, + { + "cppref": "cpp/string/basic_string/starts_with", + "cppdoc": "cpp/library/string/basic_string/starts_with" + }, + { + "cppref": "cpp/string/basic_string/shrink_to_fit", + "cppdoc": "cpp/library/string/basic_string/shrink_to_fit" + }, + { + "cppref": "cpp/string/basic_string/append_range", + "cppdoc": "cpp/library/string/basic_string/append_range" + }, + { + "cppref": "cpp/string/basic_string/clear", + "cppdoc": "cpp/library/string/basic_string/clear" + }, + { + "cppref": "cpp/string/basic_string/replace_with_range", + "cppdoc": "cpp/library/string/basic_string/replace_with_range" + }, + { + "cppref": "cpp/string/byte/islower", + "cppdoc": "cpp/library/text/byte/islower" + }, + { + "cppref": "cpp/string/byte/memmove", + "cppdoc": "cpp/library/text/byte/memmove" + }, + { + "cppref": "cpp/string/byte/strpbrk", + "cppdoc": "cpp/library/text/byte/strpbrk" + }, + { + "cppref": "cpp/string/byte/iscntrl", + "cppdoc": "cpp/library/text/byte/iscntrl" + }, + { + "cppref": "cpp/string/byte/strspn", + "cppdoc": "cpp/library/text/byte/strspn" + }, + { + "cppref": "cpp/string/byte/strlen", + "cppdoc": "cpp/library/text/byte/strlen" + }, + { + "cppref": "cpp/string/byte/toupper", + "cppdoc": "cpp/library/text/byte/toupper" + }, + { + "cppref": "cpp/string/byte/isprint", + "cppdoc": "cpp/library/text/byte/isprint" + }, + { + "cppref": "cpp/string/byte/strchr", + "cppdoc": "cpp/library/text/byte/strchr" + }, + { + "cppref": "cpp/string/byte/strtoimax", + "cppdoc": "cpp/library/text/byte/strtoimax" + }, + { + "cppref": "cpp/string/byte/strrchr", + "cppdoc": "cpp/library/text/byte/strrchr" + }, + { + "cppref": "cpp/string/byte/memcpy", + "cppdoc": "cpp/library/text/byte/memcpy" + }, + { + "cppref": "cpp/string/byte/strcat", + "cppdoc": "cpp/library/text/byte/strcat" + }, + { + "cppref": "cpp/string/byte/strncpy", + "cppdoc": "cpp/library/text/byte/strncpy" + }, + { + "cppref": "cpp/string/byte/isalpha", + "cppdoc": "cpp/library/text/byte/isalpha" + }, + { + "cppref": "cpp/string/byte/strtol", + "cppdoc": "cpp/library/text/byte/strtol" + }, + { + "cppref": "cpp/string/byte/memset", + "cppdoc": "cpp/library/text/byte/memset" + }, + { + "cppref": "cpp/string/byte/strtoul", + "cppdoc": "cpp/library/text/byte/strtoul" + }, + { + "cppref": "cpp/string/byte/strtok", + "cppdoc": "cpp/library/text/byte/strtok" + }, + { + "cppref": "cpp/string/byte/ispunct", + "cppdoc": "cpp/library/text/byte/ispunct" + }, + { + "cppref": "cpp/string/byte/atoi", + "cppdoc": "cpp/library/text/byte/atoi" + }, + { + "cppref": "cpp/string/byte/strcoll", + "cppdoc": "cpp/library/text/byte/strcoll" + }, + { + "cppref": "cpp/string/byte/isdigit", + "cppdoc": "cpp/library/text/byte/isdigit" + }, + { + "cppref": "cpp/string/byte/memcmp", + "cppdoc": "cpp/library/text/byte/memcmp" + }, + { + "cppref": "cpp/string/byte/strerror", + "cppdoc": "cpp/library/text/byte/strerror" + }, + { + "cppref": "cpp/string/byte/isspace", + "cppdoc": "cpp/library/text/byte/isspace" + }, + { + "cppref": "cpp/string/byte/strcspn", + "cppdoc": "cpp/library/text/byte/strcspn" + }, + { + "cppref": "cpp/string/byte/strxfrm", + "cppdoc": "cpp/library/text/byte/strxfrm" + }, + { + "cppref": "cpp/string/byte/strncat", + "cppdoc": "cpp/library/text/byte/strncat" + }, + { + "cppref": "cpp/string/byte/isxdigit", + "cppdoc": "cpp/library/text/byte/isxdigit" + }, + { + "cppref": "cpp/string/byte/atof", + "cppdoc": "cpp/library/text/byte/atof" + }, + { + "cppref": "cpp/string/byte/strcmp", + "cppdoc": "cpp/library/text/byte/strcmp" + }, + { + "cppref": "cpp/string/byte/strstr", + "cppdoc": "cpp/library/text/byte/strstr" + }, + { + "cppref": "cpp/string/byte/isgraph", + "cppdoc": "cpp/library/text/byte/isgraph" + }, + { + "cppref": "cpp/string/byte/tolower", + "cppdoc": "cpp/library/text/byte/tolower" + }, + { + "cppref": "cpp/string/byte/isblank", + "cppdoc": "cpp/library/text/byte/isblank" + }, + { + "cppref": "cpp/string/byte/strtof", + "cppdoc": "cpp/library/text/byte/strtof" + }, + { + "cppref": "cpp/string/byte/isalnum", + "cppdoc": "cpp/library/text/byte/isalnum" + }, + { + "cppref": "cpp/string/byte/strcpy", + "cppdoc": "cpp/library/text/byte/strcpy" + }, + { + "cppref": "cpp/string/byte/strncmp", + "cppdoc": "cpp/library/text/byte/strncmp" + }, + { + "cppref": "cpp/string/byte/memchr", + "cppdoc": "cpp/library/text/byte/memchr" + }, + { + "cppref": "cpp/string/byte/isupper", + "cppdoc": "cpp/library/text/byte/isupper" + }, + { + "cppref": "cpp/string/wide/towupper", + "cppdoc": "cpp/library/text/wide/towupper" + }, + { + "cppref": "cpp/string/wide/wcsncat", + "cppdoc": "cpp/library/text/wide/wcsncat" + }, + { + "cppref": "cpp/string/wide/wcscpy", + "cppdoc": "cpp/library/text/wide/wcscpy" + }, + { + "cppref": "cpp/string/wide/wcscmp", + "cppdoc": "cpp/library/text/wide/wcscmp" + }, + { + "cppref": "cpp/string/wide/wcsstr", + "cppdoc": "cpp/library/text/wide/wcsstr" + }, + { + "cppref": "cpp/string/wide/wcstok", + "cppdoc": "cpp/library/text/wide/wcstok" + }, + { + "cppref": "cpp/string/wide/wmemcpy", + "cppdoc": "cpp/library/text/wide/wmemcpy" + }, + { + "cppref": "cpp/string/wide/wmemset", + "cppdoc": "cpp/library/text/wide/wmemset" + }, + { + "cppref": "cpp/string/wide/wcstol", + "cppdoc": "cpp/library/text/wide/wcstol" + }, + { + "cppref": "cpp/string/wide/towctrans", + "cppdoc": "cpp/library/text/wide/towctrans" + }, + { + "cppref": "cpp/string/wide/wcspbrk", + "cppdoc": "cpp/library/text/wide/wcspbrk" + }, + { + "cppref": "cpp/string/wide/wcschr", + "cppdoc": "cpp/library/text/wide/wcschr" + }, + { + "cppref": "cpp/string/wide/wmemcmp", + "cppdoc": "cpp/library/text/wide/wmemcmp" + }, + { + "cppref": "cpp/string/wide/iswdigit", + "cppdoc": "cpp/library/text/wide/iswdigit" + }, + { + "cppref": "cpp/string/wide/wcscat", + "cppdoc": "cpp/library/text/wide/wcscat" + }, + { + "cppref": "cpp/string/wide/wmemmove", + "cppdoc": "cpp/library/text/wide/wmemmove" + }, + { + "cppref": "cpp/string/wide/iswupper", + "cppdoc": "cpp/library/text/wide/iswupper" + }, + { + "cppref": "cpp/string/wide/iswblank", + "cppdoc": "cpp/library/text/wide/iswblank" + }, + { + "cppref": "cpp/string/wide/iswpunct", + "cppdoc": "cpp/library/text/wide/iswpunct" + }, + { + "cppref": "cpp/string/wide/iswlower", + "cppdoc": "cpp/library/text/wide/iswlower" + }, + { + "cppref": "cpp/string/wide/wctype", + "cppdoc": "cpp/library/text/wide/wctype" + }, + { + "cppref": "cpp/string/wide/wcsrchr", + "cppdoc": "cpp/library/text/wide/wcsrchr" + }, + { + "cppref": "cpp/string/wide/wcscspn", + "cppdoc": "cpp/library/text/wide/wcscspn" + }, + { + "cppref": "cpp/string/wide/iswcntrl", + "cppdoc": "cpp/library/text/wide/iswcntrl" + }, + { + "cppref": "cpp/string/wide/wcstoul", + "cppdoc": "cpp/library/text/wide/wcstoul" + }, + { + "cppref": "cpp/string/wide/wcstoimax", + "cppdoc": "cpp/library/text/wide/wcstoimax" + }, + { + "cppref": "cpp/string/wide/iswalnum", + "cppdoc": "cpp/library/text/wide/iswalnum" + }, + { + "cppref": "cpp/string/wide/iswctype", + "cppdoc": "cpp/library/text/wide/iswctype" + }, + { + "cppref": "cpp/string/wide/towlower", + "cppdoc": "cpp/library/text/wide/towlower" + }, + { + "cppref": "cpp/string/wide/iswalpha", + "cppdoc": "cpp/library/text/wide/iswalpha" + }, + { + "cppref": "cpp/string/wide/wcsncmp", + "cppdoc": "cpp/library/text/wide/wcsncmp" + }, + { + "cppref": "cpp/string/wide/iswprint", + "cppdoc": "cpp/library/text/wide/iswprint" + }, + { + "cppref": "cpp/string/wide/iswxdigit", + "cppdoc": "cpp/library/text/wide/iswxdigit" + }, + { + "cppref": "cpp/string/wide/wcsxfrm", + "cppdoc": "cpp/library/text/wide/wcsxfrm" + }, + { + "cppref": "cpp/string/wide/wcsspn", + "cppdoc": "cpp/library/text/wide/wcsspn" + }, + { + "cppref": "cpp/string/wide/wcstof", + "cppdoc": "cpp/library/text/wide/wcstof" + }, + { + "cppref": "cpp/string/wide/wmemchr", + "cppdoc": "cpp/library/text/wide/wmemchr" + }, + { + "cppref": "cpp/string/wide/wcsncpy", + "cppdoc": "cpp/library/text/wide/wcsncpy" + }, + { + "cppref": "cpp/string/wide/wctrans", + "cppdoc": "cpp/library/text/wide/wctrans" + }, + { + "cppref": "cpp/string/wide/iswgraph", + "cppdoc": "cpp/library/text/wide/iswgraph" + }, + { + "cppref": "cpp/string/wide/iswspace", + "cppdoc": "cpp/library/text/wide/iswspace" + }, + { + "cppref": "cpp/string/wide/wcscoll", + "cppdoc": "cpp/library/text/wide/wcscoll" + }, + { + "cppref": "cpp/string/wide/wcslen", + "cppdoc": "cpp/library/text/wide/wcslen" + }, + { + "cppref": "cpp/string/basic_string_view/remove_prefix", + "cppdoc": "cpp/library/string/basic_string_view/remove_prefix" + }, + { + "cppref": "cpp/string/basic_string_view/operator_q__q_sv", + "cppdoc": "cpp/library/string/basic_string_view/operator_q__q_sv" + }, + { + "cppref": "cpp/string/basic_string_view/operator_at", + "cppdoc": "cpp/library/string/basic_string_view/operator_at" + }, + { + "cppref": "cpp/string/basic_string_view/at", + "cppdoc": "cpp/library/string/basic_string_view/at" + }, + { + "cppref": "cpp/string/basic_string_view/back", + "cppdoc": "cpp/library/string/basic_string_view/back" + }, + { + "cppref": "cpp/string/basic_string_view/npos", + "cppdoc": "cpp/library/string/basic_string_view/npos" + }, + { + "cppref": "cpp/string/basic_string_view/empty", + "cppdoc": "cpp/library/string/basic_string_view/empty" + }, + { + "cppref": "cpp/string/basic_string_view/find", + "cppdoc": "cpp/library/string/basic_string_view/find" + }, + { + "cppref": "cpp/string/basic_string_view/hash", + "cppdoc": "cpp/library/string/basic_string_view/hash" + }, + { + "cppref": "cpp/string/basic_string_view/max_size", + "cppdoc": "cpp/library/string/basic_string_view/max_size" + }, + { + "cppref": "cpp/string/basic_string_view/size", + "cppdoc": "cpp/library/string/basic_string_view/size" + }, + { + "cppref": "cpp/string/basic_string_view/copy", + "cppdoc": "cpp/library/string/basic_string_view/copy" + }, + { + "cppref": "cpp/string/basic_string_view/ends_with", + "cppdoc": "cpp/library/string/basic_string_view/ends_with" + }, + { + "cppref": "cpp/string/basic_string_view/find_first_not_of", + "cppdoc": "cpp/library/string/basic_string_view/find_first_not_of" + }, + { + "cppref": "cpp/string/basic_string_view/end", + "cppdoc": "cpp/library/string/basic_string_view/end" + }, + { + "cppref": "cpp/string/basic_string_view/rend", + "cppdoc": "cpp/library/string/basic_string_view/rend" + }, + { + "cppref": "cpp/string/basic_string_view/begin", + "cppdoc": "cpp/library/string/basic_string_view/begin" + }, + { + "cppref": "cpp/string/basic_string_view/substr", + "cppdoc": "cpp/library/string/basic_string_view/substr" + }, + { + "cppref": "cpp/string/basic_string_view/deduction_guides", + "cppdoc": "cpp/library/string/basic_string_view/deduction_guides" + }, + { + "cppref": "cpp/string/basic_string_view/find_last_not_of", + "cppdoc": "cpp/library/string/basic_string_view/find_last_not_of" + }, + { + "cppref": "cpp/string/basic_string_view/swap", + "cppdoc": "cpp/library/string/basic_string_view/swap" + }, + { + "cppref": "cpp/string/basic_string_view/front", + "cppdoc": "cpp/library/string/basic_string_view/front" + }, + { + "cppref": "cpp/string/basic_string_view/rfind", + "cppdoc": "cpp/library/string/basic_string_view/rfind" + }, + { + "cppref": "cpp/string/basic_string_view/rbegin", + "cppdoc": "cpp/library/string/basic_string_view/rbegin" + }, + { + "cppref": "cpp/string/basic_string_view/compare", + "cppdoc": "cpp/library/string/basic_string_view/compare" + }, + { + "cppref": "cpp/string/basic_string_view/basic_string_view", + "cppdoc": "cpp/library/string/basic_string_view/basic_string_view" + }, + { + "cppref": "cpp/string/basic_string_view/operator_cmp", + "cppdoc": "cpp/library/string/basic_string_view/operator_cmp" + }, + { + "cppref": "cpp/string/basic_string_view/contains", + "cppdoc": "cpp/library/string/basic_string_view/contains" + }, + { + "cppref": "cpp/string/basic_string_view/find_last_of", + "cppdoc": "cpp/library/string/basic_string_view/find_last_of" + }, + { + "cppref": "cpp/string/basic_string_view/find_first_of", + "cppdoc": "cpp/library/string/basic_string_view/find_first_of" + }, + { + "cppref": "cpp/string/basic_string_view/operator=", + "cppdoc": "cpp/library/string/basic_string_view/operator=" + }, + { + "cppref": "cpp/string/basic_string_view/data", + "cppdoc": "cpp/library/string/basic_string_view/data" + }, + { + "cppref": "cpp/string/basic_string_view/operator_ltlt", + "cppdoc": "cpp/library/string/basic_string_view/operator_ltlt" + }, + { + "cppref": "cpp/string/basic_string_view/starts_with", + "cppdoc": "cpp/library/string/basic_string_view/starts_with" + }, + { + "cppref": "cpp/string/basic_string_view/remove_suffix", + "cppdoc": "cpp/library/string/basic_string_view/remove_suffix" + }, + { + "cppref": "cpp/string/char_traits/assign", + "cppdoc": "cpp/library/string/char_traits/assign" + }, + { + "cppref": "cpp/string/char_traits/find", + "cppdoc": "cpp/library/string/char_traits/find" + }, + { + "cppref": "cpp/string/char_traits/move", + "cppdoc": "cpp/library/string/char_traits/move" + }, + { + "cppref": "cpp/string/char_traits/copy", + "cppdoc": "cpp/library/string/char_traits/copy" + }, + { + "cppref": "cpp/string/char_traits/to_char_type", + "cppdoc": "cpp/library/string/char_traits/to_char_type" + }, + { + "cppref": "cpp/string/char_traits/eof", + "cppdoc": "cpp/library/string/char_traits/eof" + }, + { + "cppref": "cpp/string/char_traits/to_int_type", + "cppdoc": "cpp/library/string/char_traits/to_int_type" + }, + { + "cppref": "cpp/string/char_traits/cmp", + "cppdoc": "cpp/library/string/char_traits/cmp" + }, + { + "cppref": "cpp/string/char_traits/compare", + "cppdoc": "cpp/library/string/char_traits/compare" + }, + { + "cppref": "cpp/string/char_traits/not_eof", + "cppdoc": "cpp/library/string/char_traits/not_eof" + }, + { + "cppref": "cpp/string/char_traits/length", + "cppdoc": "cpp/library/string/char_traits/length" + }, + { + "cppref": "cpp/string/char_traits/eq_int_type", + "cppdoc": "cpp/library/string/char_traits/eq_int_type" + }, + { + "cppref": "cpp/algorithm/rotate", + "cppdoc": "cpp/library/algorithm/rotate" + }, + { + "cppref": "cpp/algorithm/adjacent_find", + "cppdoc": "cpp/library/algorithm/adjacent_find" + }, + { + "cppref": "cpp/algorithm/ranges", + "cppdoc": "cpp/library/algorithm/ranges" + }, + { + "cppref": "cpp/algorithm/replace", + "cppdoc": "cpp/library/algorithm/replace" + }, + { + "cppref": "cpp/algorithm/transform_reduce", + "cppdoc": "cpp/library/numeric/transform_reduce" + }, + { + "cppref": "cpp/algorithm/includes", + "cppdoc": "cpp/library/algorithm/includes" + }, + { + "cppref": "cpp/algorithm/remove", + "cppdoc": "cpp/library/algorithm/remove" + }, + { + "cppref": "cpp/algorithm/transform_exclusive_scan", + "cppdoc": "cpp/library/numeric/transform_exclusive_scan" + }, + { + "cppref": "cpp/algorithm/prev_permutation", + "cppdoc": "cpp/library/algorithm/prev_permutation" + }, + { + "cppref": "cpp/algorithm/is_heap", + "cppdoc": "cpp/library/algorithm/is_heap" + }, + { + "cppref": "cpp/algorithm/sample", + "cppdoc": "cpp/library/algorithm/sample" + }, + { + "cppref": "cpp/algorithm/partition_copy", + "cppdoc": "cpp/library/algorithm/partition_copy" + }, + { + "cppref": "cpp/algorithm/clamp", + "cppdoc": "cpp/library/algorithm/clamp" + }, + { + "cppref": "cpp/algorithm/set_symmetric_difference", + "cppdoc": "cpp/library/algorithm/set_symmetric_difference" + }, + { + "cppref": "cpp/algorithm/random_shuffle", + "cppdoc": "cpp/library/algorithm/random_shuffle" + }, + { + "cppref": "cpp/algorithm/find", + "cppdoc": "cpp/library/algorithm/find" + }, + { + "cppref": "cpp/algorithm/search", + "cppdoc": "cpp/library/algorithm/search" + }, + { + "cppref": "cpp/algorithm/equal_range", + "cppdoc": "cpp/library/algorithm/equal_range" + }, + { + "cppref": "cpp/algorithm/stable_sort", + "cppdoc": "cpp/library/algorithm/stable_sort" + }, + { + "cppref": "cpp/algorithm/move", + "cppdoc": "cpp/library/algorithm/move" + }, + { + "cppref": "cpp/algorithm/all_any_none_of", + "cppdoc": "cpp/library/algorithm/all_any_none_of" + }, + { + "cppref": "cpp/algorithm/shift", + "cppdoc": "cpp/library/algorithm/shift" + }, + { + "cppref": "cpp/algorithm/copy", + "cppdoc": "cpp/library/algorithm/copy" + }, + { + "cppref": "cpp/algorithm/min", + "cppdoc": "cpp/library/algorithm/min" + }, + { + "cppref": "cpp/algorithm/max_element", + "cppdoc": "cpp/library/algorithm/max_element" + }, + { + "cppref": "cpp/algorithm/qsort", + "cppdoc": "cpp/library/algorithm/qsort" + }, + { + "cppref": "cpp/algorithm/minmax", + "cppdoc": "cpp/library/algorithm/minmax" + }, + { + "cppref": "cpp/algorithm/partition", + "cppdoc": "cpp/library/algorithm/partition" + }, + { + "cppref": "cpp/algorithm/partial_sum", + "cppdoc": "cpp/library/numeric/partial_sum" + }, + { + "cppref": "cpp/algorithm/copy_backward", + "cppdoc": "cpp/library/algorithm/copy_backward" + }, + { + "cppref": "cpp/algorithm/push_heap", + "cppdoc": "cpp/library/algorithm/push_heap" + }, + { + "cppref": "cpp/algorithm/copy_n", + "cppdoc": "cpp/library/algorithm/copy_n" + }, + { + "cppref": "cpp/algorithm/transform_inclusive_scan", + "cppdoc": "cpp/library/numeric/transform_inclusive_scan" + }, + { + "cppref": "cpp/algorithm/pop_heap", + "cppdoc": "cpp/library/algorithm/pop_heap" + }, + { + "cppref": "cpp/algorithm/execution_policy_tag", + "cppdoc": "cpp/library/algorithm/execution_policy_tag" + }, + { + "cppref": "cpp/algorithm/is_sorted", + "cppdoc": "cpp/library/algorithm/is_sorted" + }, + { + "cppref": "cpp/algorithm/bsearch", + "cppdoc": "cpp/library/algorithm/bsearch" + }, + { + "cppref": "cpp/algorithm/rotate_copy", + "cppdoc": "cpp/library/algorithm/rotate_copy" + }, + { + "cppref": "cpp/algorithm/iota", + "cppdoc": "cpp/library/numeric/iota" + }, + { + "cppref": "cpp/algorithm/set_difference", + "cppdoc": "cpp/library/algorithm/set_difference" + }, + { + "cppref": "cpp/algorithm/execution_policy_tag_t", + "cppdoc": "cpp/library/algorithm/execution_policy_tag_t" + }, + { + "cppref": "cpp/algorithm/is_partitioned", + "cppdoc": "cpp/library/algorithm/is_partitioned" + }, + { + "cppref": "cpp/algorithm/for_each", + "cppdoc": "cpp/library/algorithm/for_each" + }, + { + "cppref": "cpp/algorithm/find_end", + "cppdoc": "cpp/library/algorithm/find_end" + }, + { + "cppref": "cpp/algorithm/lexicographical_compare_three_way", + "cppdoc": "cpp/library/algorithm/lexicographical_compare_three_way" + }, + { + "cppref": "cpp/algorithm/swap", + "cppdoc": "cpp/library/algorithm/swap" + }, + { + "cppref": "cpp/algorithm/sort_heap", + "cppdoc": "cpp/library/algorithm/sort_heap" + }, + { + "cppref": "cpp/algorithm/accumulate", + "cppdoc": "cpp/library/numeric/accumulate" + }, + { + "cppref": "cpp/algorithm/swap_ranges", + "cppdoc": "cpp/library/algorithm/swap_ranges" + }, + { + "cppref": "cpp/algorithm/min_element", + "cppdoc": "cpp/library/algorithm/min_element" + }, + { + "cppref": "cpp/algorithm/exclusive_scan", + "cppdoc": "cpp/library/numeric/exclusive_scan" + }, + { + "cppref": "cpp/algorithm/max", + "cppdoc": "cpp/library/algorithm/max" + }, + { + "cppref": "cpp/algorithm/upper_bound", + "cppdoc": "cpp/library/algorithm/upper_bound" + }, + { + "cppref": "cpp/algorithm/next_permutation", + "cppdoc": "cpp/library/algorithm/next_permutation" + }, + { + "cppref": "cpp/algorithm/partial_sort_copy", + "cppdoc": "cpp/library/algorithm/partial_sort_copy" + }, + { + "cppref": "cpp/algorithm/inclusive_scan", + "cppdoc": "cpp/library/numeric/inclusive_scan" + }, + { + "cppref": "cpp/algorithm/search_n", + "cppdoc": "cpp/library/algorithm/search_n" + }, + { + "cppref": "cpp/algorithm/lower_bound", + "cppdoc": "cpp/library/algorithm/lower_bound" + }, + { + "cppref": "cpp/algorithm/is_execution_policy", + "cppdoc": "cpp/library/algorithm/is_execution_policy" + }, + { + "cppref": "cpp/algorithm/mismatch", + "cppdoc": "cpp/library/algorithm/mismatch" + }, + { + "cppref": "cpp/algorithm/reduce", + "cppdoc": "cpp/library/numeric/reduce" + }, + { + "cppref": "cpp/algorithm/count", + "cppdoc": "cpp/library/algorithm/count" + }, + { + "cppref": "cpp/algorithm/equal", + "cppdoc": "cpp/library/algorithm/equal" + }, + { + "cppref": "cpp/algorithm/replace_copy", + "cppdoc": "cpp/library/algorithm/replace_copy" + }, + { + "cppref": "cpp/algorithm/inplace_merge", + "cppdoc": "cpp/library/algorithm/inplace_merge" + }, + { + "cppref": "cpp/algorithm/generate_n", + "cppdoc": "cpp/library/algorithm/generate_n" + }, + { + "cppref": "cpp/algorithm/inner_product", + "cppdoc": "cpp/library/numeric/inner_product" + }, + { + "cppref": "cpp/algorithm/set_union", + "cppdoc": "cpp/library/algorithm/set_union" + }, + { + "cppref": "cpp/algorithm/merge", + "cppdoc": "cpp/library/algorithm/merge" + }, + { + "cppref": "cpp/algorithm/fill_n", + "cppdoc": "cpp/library/algorithm/fill_n" + }, + { + "cppref": "cpp/algorithm/set_intersection", + "cppdoc": "cpp/library/algorithm/set_intersection" + }, + { + "cppref": "cpp/algorithm/make_heap", + "cppdoc": "cpp/library/algorithm/make_heap" + }, + { + "cppref": "cpp/algorithm/iter_swap", + "cppdoc": "cpp/library/algorithm/iter_swap" + }, + { + "cppref": "cpp/algorithm/binary_search", + "cppdoc": "cpp/library/algorithm/binary_search" + }, + { + "cppref": "cpp/algorithm/unique", + "cppdoc": "cpp/library/algorithm/unique" + }, + { + "cppref": "cpp/algorithm/is_heap_until", + "cppdoc": "cpp/library/algorithm/is_heap_until" + }, + { + "cppref": "cpp/algorithm/is_sorted_until", + "cppdoc": "cpp/library/algorithm/is_sorted_until" + }, + { + "cppref": "cpp/algorithm/fill", + "cppdoc": "cpp/library/algorithm/fill" + }, + { + "cppref": "cpp/algorithm/move_backward", + "cppdoc": "cpp/library/algorithm/move_backward" + }, + { + "cppref": "cpp/algorithm/partition_point", + "cppdoc": "cpp/library/algorithm/partition_point" + }, + { + "cppref": "cpp/algorithm/minmax_element", + "cppdoc": "cpp/library/algorithm/minmax_element" + }, + { + "cppref": "cpp/algorithm/adjacent_difference", + "cppdoc": "cpp/library/numeric/adjacent_difference" + }, + { + "cppref": "cpp/algorithm/sort", + "cppdoc": "cpp/library/algorithm/sort" + }, + { + "cppref": "cpp/algorithm/for_each_n", + "cppdoc": "cpp/library/algorithm/for_each_n" + }, + { + "cppref": "cpp/algorithm/nth_element", + "cppdoc": "cpp/library/algorithm/nth_element" + }, + { + "cppref": "cpp/algorithm/find_first_of", + "cppdoc": "cpp/library/algorithm/find_first_of" + }, + { + "cppref": "cpp/algorithm/stable_partition", + "cppdoc": "cpp/library/algorithm/stable_partition" + }, + { + "cppref": "cpp/algorithm/remove_copy", + "cppdoc": "cpp/library/algorithm/remove_copy" + }, + { + "cppref": "cpp/algorithm/unique_copy", + "cppdoc": "cpp/library/algorithm/unique_copy" + }, + { + "cppref": "cpp/algorithm/transform", + "cppdoc": "cpp/library/algorithm/transform" + }, + { + "cppref": "cpp/algorithm/reverse_copy", + "cppdoc": "cpp/library/algorithm/reverse_copy" + }, + { + "cppref": "cpp/algorithm/lexicographical_compare", + "cppdoc": "cpp/library/algorithm/lexicographical_compare" + }, + { + "cppref": "cpp/algorithm/generate", + "cppdoc": "cpp/library/algorithm/generate" + }, + { + "cppref": "cpp/algorithm/partial_sort", + "cppdoc": "cpp/library/algorithm/partial_sort" + }, + { + "cppref": "cpp/algorithm/is_permutation", + "cppdoc": "cpp/library/algorithm/is_permutation" + }, + { + "cppref": "cpp/algorithm/reverse", + "cppdoc": "cpp/library/algorithm/reverse" + }, + { + "cppref": "cpp/algorithm/ranges/fold_left_first_with_iter", + "cppdoc": "cpp/library/algorithm/ranges/fold_left_first_with_iter" + }, + { + "cppref": "cpp/algorithm/ranges/rotate", + "cppdoc": "cpp/library/algorithm/ranges/rotate" + }, + { + "cppref": "cpp/algorithm/ranges/adjacent_find", + "cppdoc": "cpp/library/algorithm/ranges/adjacent_find" + }, + { + "cppref": "cpp/algorithm/ranges/replace", + "cppdoc": "cpp/library/algorithm/ranges/replace" + }, + { + "cppref": "cpp/algorithm/ranges/includes", + "cppdoc": "cpp/library/algorithm/ranges/includes" + }, + { + "cppref": "cpp/algorithm/ranges/remove", + "cppdoc": "cpp/library/algorithm/ranges/remove" + }, + { + "cppref": "cpp/algorithm/ranges/fold_left_first", + "cppdoc": "cpp/library/algorithm/ranges/fold_left_first" + }, + { + "cppref": "cpp/algorithm/ranges/prev_permutation", + "cppdoc": "cpp/library/algorithm/ranges/prev_permutation" + }, + { + "cppref": "cpp/algorithm/ranges/is_heap", + "cppdoc": "cpp/library/algorithm/ranges/is_heap" + }, + { + "cppref": "cpp/algorithm/ranges/sample", + "cppdoc": "cpp/library/algorithm/ranges/sample" + }, + { + "cppref": "cpp/algorithm/ranges/partition_copy", + "cppdoc": "cpp/library/algorithm/ranges/partition_copy" + }, + { + "cppref": "cpp/algorithm/ranges/clamp", + "cppdoc": "cpp/library/algorithm/ranges/clamp" + }, + { + "cppref": "cpp/algorithm/ranges/set_symmetric_difference", + "cppdoc": "cpp/library/algorithm/ranges/set_symmetric_difference" + }, + { + "cppref": "cpp/algorithm/ranges/find", + "cppdoc": "cpp/library/algorithm/ranges/find" + }, + { + "cppref": "cpp/algorithm/ranges/search", + "cppdoc": "cpp/library/algorithm/ranges/search" + }, + { + "cppref": "cpp/algorithm/ranges/equal_range", + "cppdoc": "cpp/library/algorithm/ranges/equal_range" + }, + { + "cppref": "cpp/algorithm/ranges/stable_sort", + "cppdoc": "cpp/library/algorithm/ranges/stable_sort" + }, + { + "cppref": "cpp/algorithm/ranges/move", + "cppdoc": "cpp/library/algorithm/ranges/move" + }, + { + "cppref": "cpp/algorithm/ranges/all_any_none_of", + "cppdoc": "cpp/library/algorithm/ranges/all_any_none_of" + }, + { + "cppref": "cpp/algorithm/ranges/shift", + "cppdoc": "cpp/library/algorithm/ranges/shift" + }, + { + "cppref": "cpp/algorithm/ranges/copy", + "cppdoc": "cpp/library/algorithm/ranges/copy" + }, + { + "cppref": "cpp/algorithm/ranges/min", + "cppdoc": "cpp/library/algorithm/ranges/min" + }, + { + "cppref": "cpp/algorithm/ranges/ends_with", + "cppdoc": "cpp/library/algorithm/ranges/ends_with" + }, + { + "cppref": "cpp/algorithm/ranges/max_element", + "cppdoc": "cpp/library/algorithm/ranges/max_element" + }, + { + "cppref": "cpp/algorithm/ranges/minmax", + "cppdoc": "cpp/library/algorithm/ranges/minmax" + }, + { + "cppref": "cpp/algorithm/ranges/partition", + "cppdoc": "cpp/library/algorithm/ranges/partition" + }, + { + "cppref": "cpp/algorithm/ranges/copy_backward", + "cppdoc": "cpp/library/algorithm/ranges/copy_backward" + }, + { + "cppref": "cpp/algorithm/ranges/find_last", + "cppdoc": "cpp/library/algorithm/ranges/find_last" + }, + { + "cppref": "cpp/algorithm/ranges/push_heap", + "cppdoc": "cpp/library/algorithm/ranges/push_heap" + }, + { + "cppref": "cpp/algorithm/ranges/copy_n", + "cppdoc": "cpp/library/algorithm/ranges/copy_n" + }, + { + "cppref": "cpp/algorithm/ranges/pop_heap", + "cppdoc": "cpp/library/algorithm/ranges/pop_heap" + }, + { + "cppref": "cpp/algorithm/ranges/is_sorted", + "cppdoc": "cpp/library/algorithm/ranges/is_sorted" + }, + { + "cppref": "cpp/algorithm/ranges/rotate_copy", + "cppdoc": "cpp/library/algorithm/ranges/rotate_copy" + }, + { + "cppref": "cpp/algorithm/ranges/iota", + "cppdoc": "cpp/library/numeric/ranges/iota" + }, + { + "cppref": "cpp/algorithm/ranges/fold_right", + "cppdoc": "cpp/library/algorithm/ranges/fold_right" + }, + { + "cppref": "cpp/algorithm/ranges/generate_random", + "cppdoc": "cpp/library/algorithm/ranges/generate_random" + }, + { + "cppref": "cpp/algorithm/ranges/set_difference", + "cppdoc": "cpp/library/algorithm/ranges/set_difference" + }, + { + "cppref": "cpp/algorithm/ranges/is_partitioned", + "cppdoc": "cpp/library/algorithm/ranges/is_partitioned" + }, + { + "cppref": "cpp/algorithm/ranges/for_each", + "cppdoc": "cpp/library/algorithm/ranges/for_each" + }, + { + "cppref": "cpp/algorithm/ranges/find_end", + "cppdoc": "cpp/library/algorithm/ranges/find_end" + }, + { + "cppref": "cpp/algorithm/ranges/sort_heap", + "cppdoc": "cpp/library/algorithm/ranges/sort_heap" + }, + { + "cppref": "cpp/algorithm/ranges/swap_ranges", + "cppdoc": "cpp/library/algorithm/ranges/swap_ranges" + }, + { + "cppref": "cpp/algorithm/ranges/min_element", + "cppdoc": "cpp/library/algorithm/ranges/min_element" + }, + { + "cppref": "cpp/algorithm/ranges/max", + "cppdoc": "cpp/library/algorithm/ranges/max" + }, + { + "cppref": "cpp/algorithm/ranges/upper_bound", + "cppdoc": "cpp/library/algorithm/ranges/upper_bound" + }, + { + "cppref": "cpp/algorithm/ranges/next_permutation", + "cppdoc": "cpp/library/algorithm/ranges/next_permutation" + }, + { + "cppref": "cpp/algorithm/ranges/partial_sort_copy", + "cppdoc": "cpp/library/algorithm/ranges/partial_sort_copy" + }, + { + "cppref": "cpp/algorithm/ranges/search_n", + "cppdoc": "cpp/library/algorithm/ranges/search_n" + }, + { + "cppref": "cpp/algorithm/ranges/lower_bound", + "cppdoc": "cpp/library/algorithm/ranges/lower_bound" + }, + { + "cppref": "cpp/algorithm/ranges/mismatch", + "cppdoc": "cpp/library/algorithm/ranges/mismatch" + }, + { + "cppref": "cpp/algorithm/ranges/count", + "cppdoc": "cpp/library/algorithm/ranges/count" + }, + { + "cppref": "cpp/algorithm/ranges/shuffle", + "cppdoc": "cpp/library/algorithm/ranges/shuffle" + }, + { + "cppref": "cpp/algorithm/ranges/equal", + "cppdoc": "cpp/library/algorithm/ranges/equal" + }, + { + "cppref": "cpp/algorithm/ranges/replace_copy", + "cppdoc": "cpp/library/algorithm/ranges/replace_copy" + }, + { + "cppref": "cpp/algorithm/ranges/inplace_merge", + "cppdoc": "cpp/library/algorithm/ranges/inplace_merge" + }, + { + "cppref": "cpp/algorithm/ranges/generate_n", + "cppdoc": "cpp/library/algorithm/ranges/generate_n" + }, + { + "cppref": "cpp/algorithm/ranges/set_union", + "cppdoc": "cpp/library/algorithm/ranges/set_union" + }, + { + "cppref": "cpp/algorithm/ranges/contains", + "cppdoc": "cpp/library/algorithm/ranges/contains" + }, + { + "cppref": "cpp/algorithm/ranges/merge", + "cppdoc": "cpp/library/algorithm/ranges/merge" + }, + { + "cppref": "cpp/algorithm/ranges/fill_n", + "cppdoc": "cpp/library/algorithm/ranges/fill_n" + }, + { + "cppref": "cpp/algorithm/ranges/set_intersection", + "cppdoc": "cpp/library/algorithm/ranges/set_intersection" + }, + { + "cppref": "cpp/algorithm/ranges/make_heap", + "cppdoc": "cpp/library/algorithm/ranges/make_heap" + }, + { + "cppref": "cpp/algorithm/ranges/binary_search", + "cppdoc": "cpp/library/algorithm/ranges/binary_search" + }, + { + "cppref": "cpp/algorithm/ranges/unique", + "cppdoc": "cpp/library/algorithm/ranges/unique" + }, + { + "cppref": "cpp/algorithm/ranges/is_heap_until", + "cppdoc": "cpp/library/algorithm/ranges/is_heap_until" + }, + { + "cppref": "cpp/algorithm/ranges/is_sorted_until", + "cppdoc": "cpp/library/algorithm/ranges/is_sorted_until" + }, + { + "cppref": "cpp/algorithm/ranges/fill", + "cppdoc": "cpp/library/algorithm/ranges/fill" + }, + { + "cppref": "cpp/algorithm/ranges/move_backward", + "cppdoc": "cpp/library/algorithm/ranges/move_backward" + }, + { + "cppref": "cpp/algorithm/ranges/partition_point", + "cppdoc": "cpp/library/algorithm/ranges/partition_point" + }, + { + "cppref": "cpp/algorithm/ranges/minmax_element", + "cppdoc": "cpp/library/algorithm/ranges/minmax_element" + }, + { + "cppref": "cpp/algorithm/ranges/sort", + "cppdoc": "cpp/library/algorithm/ranges/sort" + }, + { + "cppref": "cpp/algorithm/ranges/for_each_n", + "cppdoc": "cpp/library/algorithm/ranges/for_each_n" + }, + { + "cppref": "cpp/algorithm/ranges/nth_element", + "cppdoc": "cpp/library/algorithm/ranges/nth_element" + }, + { + "cppref": "cpp/algorithm/ranges/find_first_of", + "cppdoc": "cpp/library/algorithm/ranges/find_first_of" + }, + { + "cppref": "cpp/algorithm/ranges/stable_partition", + "cppdoc": "cpp/library/algorithm/ranges/stable_partition" + }, + { + "cppref": "cpp/algorithm/ranges/remove_copy", + "cppdoc": "cpp/library/algorithm/ranges/remove_copy" + }, + { + "cppref": "cpp/algorithm/ranges/unique_copy", + "cppdoc": "cpp/library/algorithm/ranges/unique_copy" + }, + { + "cppref": "cpp/algorithm/ranges/fold_left", + "cppdoc": "cpp/library/algorithm/ranges/fold_left" + }, + { + "cppref": "cpp/algorithm/ranges/transform", + "cppdoc": "cpp/library/algorithm/ranges/transform" + }, + { + "cppref": "cpp/algorithm/ranges/reverse_copy", + "cppdoc": "cpp/library/algorithm/ranges/reverse_copy" + }, + { + "cppref": "cpp/algorithm/ranges/lexicographical_compare", + "cppdoc": "cpp/library/algorithm/ranges/lexicographical_compare" + }, + { + "cppref": "cpp/algorithm/ranges/starts_with", + "cppdoc": "cpp/library/algorithm/ranges/starts_with" + }, + { + "cppref": "cpp/algorithm/ranges/fold_right_last", + "cppdoc": "cpp/library/algorithm/ranges/fold_right_last" + }, + { + "cppref": "cpp/algorithm/ranges/generate", + "cppdoc": "cpp/library/algorithm/ranges/generate" + }, + { + "cppref": "cpp/algorithm/ranges/partial_sort", + "cppdoc": "cpp/library/algorithm/ranges/partial_sort" + }, + { + "cppref": "cpp/algorithm/ranges/is_permutation", + "cppdoc": "cpp/library/algorithm/ranges/is_permutation" + }, + { + "cppref": "cpp/algorithm/ranges/reverse", + "cppdoc": "cpp/library/algorithm/ranges/reverse" + }, + { + "cppref": "cpp/algorithm/ranges/fold_left_with_iter", + "cppdoc": "cpp/library/algorithm/ranges/fold_left_with_iter" + }, + { + "cppref": "cpp/algorithm/ranges/return_types/in_out_out_result", + "cppdoc": "cpp/library/algorithm/ranges/return_types/in_out_out_result" + }, + { + "cppref": "cpp/algorithm/ranges/return_types/in_found_result", + "cppdoc": "cpp/library/algorithm/ranges/return_types/in_found_result" + }, + { + "cppref": "cpp/algorithm/ranges/return_types/in_fun_result", + "cppdoc": "cpp/library/algorithm/ranges/return_types/in_fun_result" + }, + { + "cppref": "cpp/algorithm/ranges/return_types/in_in_result", + "cppdoc": "cpp/library/algorithm/ranges/return_types/in_in_result" + }, + { + "cppref": "cpp/algorithm/ranges/return_types/in_out_result", + "cppdoc": "cpp/library/algorithm/ranges/return_types/in_out_result" + }, + { + "cppref": "cpp/algorithm/ranges/return_types/out_value_result", + "cppdoc": "cpp/library/algorithm/ranges/return_types/out_value_result" + }, + { + "cppref": "cpp/algorithm/ranges/return_types/in_value_result", + "cppdoc": "cpp/library/algorithm/ranges/return_types/in_value_result" + }, + { + "cppref": "cpp/algorithm/ranges/return_types/in_in_out_result", + "cppdoc": "cpp/library/algorithm/ranges/return_types/in_in_out_result" + }, + { + "cppref": "cpp/algorithm/ranges/return_types/min_max_result", + "cppdoc": "cpp/library/algorithm/ranges/return_types/min_max_result" + }, + { + "cppref": "cpp/numeric/special_functions", + "cppdoc": "cpp/library/numeric/special_functions" + }, + { + "cppref": "cpp/numeric/fenv", + "cppdoc": "cpp/library/numeric/fenv" + }, + { + "cppref": "cpp/numeric/lcm", + "cppdoc": "cpp/library/numeric/lcm" + }, + { + "cppref": "cpp/numeric/valarray", + "cppdoc": "cpp/library/numeric/valarray" + }, + { + "cppref": "cpp/numeric/ratio", + "cppdoc": "cpp/library/meta/ratio" + }, + { + "cppref": "cpp/numeric/constants", + "cppdoc": "cpp/library/numeric/constants" + }, + { + "cppref": "cpp/numeric/linalg", + "cppdoc": "cpp/library/numeric/linalg" + }, + { + "cppref": "cpp/numeric/lerp", + "cppdoc": "cpp/library/numeric/lerp" + }, + { + "cppref": "cpp/numeric/saturate_cast", + "cppdoc": "cpp/library/numeric/saturate_cast" + }, + { + "cppref": "cpp/numeric/add_sat", + "cppdoc": "cpp/library/numeric/add_sat" + }, + { + "cppref": "cpp/numeric/midpoint", + "cppdoc": "cpp/library/numeric/midpoint" + }, + { + "cppref": "cpp/numeric/simd", + "cppdoc": "cpp/library/numeric/simd" + }, + { + "cppref": "cpp/numeric/div_sat", + "cppdoc": "cpp/library/numeric/div_sat" + }, + { + "cppref": "cpp/numeric/gcd", + "cppdoc": "cpp/library/numeric/gcd" + }, + { + "cppref": "cpp/numeric/math", + "cppdoc": "cpp/library/numeric/math" + }, + { + "cppref": "cpp/numeric/mul_sat", + "cppdoc": "cpp/library/numeric/mul_sat" + }, + { + "cppref": "cpp/numeric/random", + "cppdoc": "cpp/library/numeric/random" + }, + { + "cppref": "cpp/numeric/sub_sat", + "cppdoc": "cpp/library/numeric/sub_sat" + }, + { + "cppref": "cpp/numeric/complex", + "cppdoc": "cpp/library/numeric/complex" + }, + { + "cppref": "cpp/numeric/valarray/operator_at", + "cppdoc": "cpp/library/numeric/valarray/operator_at" + }, + { + "cppref": "cpp/numeric/valarray/end2", + "cppdoc": "cpp/library/numeric/valarray/end2" + }, + { + "cppref": "cpp/numeric/valarray/asin", + "cppdoc": "cpp/library/numeric/valarray/asin" + }, + { + "cppref": "cpp/numeric/valarray/sin", + "cppdoc": "cpp/library/numeric/valarray/sin" + }, + { + "cppref": "cpp/numeric/valarray/slice", + "cppdoc": "cpp/library/numeric/valarray/slice" + }, + { + "cppref": "cpp/numeric/valarray/acos", + "cppdoc": "cpp/library/numeric/valarray/acos" + }, + { + "cppref": "cpp/numeric/valarray/shift", + "cppdoc": "cpp/library/numeric/valarray/shift" + }, + { + "cppref": "cpp/numeric/valarray/tan", + "cppdoc": "cpp/library/numeric/valarray/tan" + }, + { + "cppref": "cpp/numeric/valarray/size", + "cppdoc": "cpp/library/numeric/valarray/size" + }, + { + "cppref": "cpp/numeric/valarray/min", + "cppdoc": "cpp/library/numeric/valarray/min" + }, + { + "cppref": "cpp/numeric/valarray/~valarray", + "cppdoc": "cpp/library/numeric/valarray/~valarray" + }, + { + "cppref": "cpp/numeric/valarray/valarray", + "cppdoc": "cpp/library/numeric/valarray/valarray" + }, + { + "cppref": "cpp/numeric/valarray/swap2", + "cppdoc": "cpp/library/numeric/valarray/swap2" + }, + { + "cppref": "cpp/numeric/valarray/begin2", + "cppdoc": "cpp/library/numeric/valarray/begin2" + }, + { + "cppref": "cpp/numeric/valarray/exp", + "cppdoc": "cpp/library/numeric/valarray/exp" + }, + { + "cppref": "cpp/numeric/valarray/sqrt", + "cppdoc": "cpp/library/numeric/valarray/sqrt" + }, + { + "cppref": "cpp/numeric/valarray/deduction_guides", + "cppdoc": "cpp/library/numeric/valarray/deduction_guides" + }, + { + "cppref": "cpp/numeric/valarray/swap", + "cppdoc": "cpp/library/numeric/valarray/swap" + }, + { + "cppref": "cpp/numeric/valarray/operator_arith", + "cppdoc": "cpp/library/numeric/valarray/operator_arith" + }, + { + "cppref": "cpp/numeric/valarray/operator_arith3", + "cppdoc": "cpp/library/numeric/valarray/operator_arith3" + }, + { + "cppref": "cpp/numeric/valarray/resize", + "cppdoc": "cpp/library/numeric/valarray/resize" + }, + { + "cppref": "cpp/numeric/valarray/max", + "cppdoc": "cpp/library/numeric/valarray/max" + }, + { + "cppref": "cpp/numeric/valarray/mask_array", + "cppdoc": "cpp/library/numeric/valarray/mask_array" + }, + { + "cppref": "cpp/numeric/valarray/indirect_array", + "cppdoc": "cpp/library/numeric/valarray/indirect_array" + }, + { + "cppref": "cpp/numeric/valarray/gslice_array", + "cppdoc": "cpp/library/numeric/valarray/gslice_array" + }, + { + "cppref": "cpp/numeric/valarray/cosh", + "cppdoc": "cpp/library/numeric/valarray/cosh" + }, + { + "cppref": "cpp/numeric/valarray/pow", + "cppdoc": "cpp/library/numeric/valarray/pow" + }, + { + "cppref": "cpp/numeric/valarray/slice_array", + "cppdoc": "cpp/library/numeric/valarray/slice_array" + }, + { + "cppref": "cpp/numeric/valarray/cshift", + "cppdoc": "cpp/library/numeric/valarray/cshift" + }, + { + "cppref": "cpp/numeric/valarray/operator_cmp", + "cppdoc": "cpp/library/numeric/valarray/operator_cmp" + }, + { + "cppref": "cpp/numeric/valarray/sum", + "cppdoc": "cpp/library/numeric/valarray/sum" + }, + { + "cppref": "cpp/numeric/valarray/tanh", + "cppdoc": "cpp/library/numeric/valarray/tanh" + }, + { + "cppref": "cpp/numeric/valarray/apply", + "cppdoc": "cpp/library/numeric/valarray/apply" + }, + { + "cppref": "cpp/numeric/valarray/gslice", + "cppdoc": "cpp/library/numeric/valarray/gslice" + }, + { + "cppref": "cpp/numeric/valarray/cos", + "cppdoc": "cpp/library/numeric/valarray/cos" + }, + { + "cppref": "cpp/numeric/valarray/operator_arith2", + "cppdoc": "cpp/library/numeric/valarray/operator_arith2" + }, + { + "cppref": "cpp/numeric/valarray/sinh", + "cppdoc": "cpp/library/numeric/valarray/sinh" + }, + { + "cppref": "cpp/numeric/valarray/atan", + "cppdoc": "cpp/library/numeric/valarray/atan" + }, + { + "cppref": "cpp/numeric/valarray/operator=", + "cppdoc": "cpp/library/numeric/valarray/operator=" + }, + { + "cppref": "cpp/numeric/valarray/atan2", + "cppdoc": "cpp/library/numeric/valarray/atan2" + }, + { + "cppref": "cpp/numeric/valarray/log10", + "cppdoc": "cpp/library/numeric/valarray/log10" + }, + { + "cppref": "cpp/numeric/valarray/abs", + "cppdoc": "cpp/library/numeric/valarray/abs" + }, + { + "cppref": "cpp/numeric/valarray/log", + "cppdoc": "cpp/library/numeric/valarray/log" + }, + { + "cppref": "cpp/numeric/valarray/gslice_array/operator_arith", + "cppdoc": "cpp/library/numeric/valarray/gslice_array/operator_arith" + }, + { + "cppref": "cpp/numeric/valarray/gslice_array/gslice_array", + "cppdoc": "cpp/library/numeric/valarray/gslice_array/gslice_array" + }, + { + "cppref": "cpp/numeric/valarray/gslice_array/~gslice_array", + "cppdoc": "cpp/library/numeric/valarray/gslice_array/~gslice_array" + }, + { + "cppref": "cpp/numeric/valarray/gslice_array/operator=", + "cppdoc": "cpp/library/numeric/valarray/gslice_array/operator=" + }, + { + "cppref": "cpp/numeric/valarray/mask_array/operator_arith", + "cppdoc": "cpp/library/numeric/valarray/mask_array/operator_arith" + }, + { + "cppref": "cpp/numeric/valarray/mask_array/mask_array", + "cppdoc": "cpp/library/numeric/valarray/mask_array/mask_array" + }, + { + "cppref": "cpp/numeric/valarray/mask_array/~mask_array", + "cppdoc": "cpp/library/numeric/valarray/mask_array/~mask_array" + }, + { + "cppref": "cpp/numeric/valarray/mask_array/operator=", + "cppdoc": "cpp/library/numeric/valarray/mask_array/operator=" + }, + { + "cppref": "cpp/numeric/valarray/slice_array/operator_arith", + "cppdoc": "cpp/library/numeric/valarray/slice_array/operator_arith" + }, + { + "cppref": "cpp/numeric/valarray/slice_array/~slice_array", + "cppdoc": "cpp/library/numeric/valarray/slice_array/~slice_array" + }, + { + "cppref": "cpp/numeric/valarray/slice_array/slice_array", + "cppdoc": "cpp/library/numeric/valarray/slice_array/slice_array" + }, + { + "cppref": "cpp/numeric/valarray/slice_array/operator=", + "cppdoc": "cpp/library/numeric/valarray/slice_array/operator=" + }, + { + "cppref": "cpp/numeric/valarray/indirect_array/operator_arith", + "cppdoc": "cpp/library/numeric/valarray/indirect_array/operator_arith" + }, + { + "cppref": "cpp/numeric/valarray/indirect_array/indirect_array", + "cppdoc": "cpp/library/numeric/valarray/indirect_array/indirect_array" + }, + { + "cppref": "cpp/numeric/valarray/indirect_array/~indirect_array", + "cppdoc": "cpp/library/numeric/valarray/indirect_array/~indirect_array" + }, + { + "cppref": "cpp/numeric/valarray/indirect_array/operator=", + "cppdoc": "cpp/library/numeric/valarray/indirect_array/operator=" + }, + { + "cppref": "cpp/numeric/complex/asin", + "cppdoc": "cpp/library/numeric/complex/asin" + }, + { + "cppref": "cpp/numeric/complex/sin", + "cppdoc": "cpp/library/numeric/complex/sin" + }, + { + "cppref": "cpp/numeric/complex/imag2", + "cppdoc": "cpp/library/numeric/complex/imag2" + }, + { + "cppref": "cpp/numeric/complex/acos", + "cppdoc": "cpp/library/numeric/complex/acos" + }, + { + "cppref": "cpp/numeric/complex/operator_q__q_i", + "cppdoc": "cpp/library/numeric/complex/operator_q__q_i" + }, + { + "cppref": "cpp/numeric/complex/tan", + "cppdoc": "cpp/library/numeric/complex/tan" + }, + { + "cppref": "cpp/numeric/complex/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/complex/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/complex/exp", + "cppdoc": "cpp/library/numeric/complex/exp" + }, + { + "cppref": "cpp/numeric/complex/proj", + "cppdoc": "cpp/library/numeric/complex/proj" + }, + { + "cppref": "cpp/numeric/complex/conj", + "cppdoc": "cpp/library/numeric/complex/conj" + }, + { + "cppref": "cpp/numeric/complex/sqrt", + "cppdoc": "cpp/library/numeric/complex/sqrt" + }, + { + "cppref": "cpp/numeric/complex/operator_arith", + "cppdoc": "cpp/library/numeric/complex/operator_arith" + }, + { + "cppref": "cpp/numeric/complex/operator_arith3", + "cppdoc": "cpp/library/numeric/complex/operator_arith3" + }, + { + "cppref": "cpp/numeric/complex/norm", + "cppdoc": "cpp/library/numeric/complex/norm" + }, + { + "cppref": "cpp/numeric/complex/imag", + "cppdoc": "cpp/library/numeric/complex/imag" + }, + { + "cppref": "cpp/numeric/complex/tuple_size", + "cppdoc": "cpp/library/numeric/complex/tuple_size" + }, + { + "cppref": "cpp/numeric/complex/cosh", + "cppdoc": "cpp/library/numeric/complex/cosh" + }, + { + "cppref": "cpp/numeric/complex/pow", + "cppdoc": "cpp/library/numeric/complex/pow" + }, + { + "cppref": "cpp/numeric/complex/get", + "cppdoc": "cpp/library/numeric/complex/get" + }, + { + "cppref": "cpp/numeric/complex/asinh", + "cppdoc": "cpp/library/numeric/complex/asinh" + }, + { + "cppref": "cpp/numeric/complex/operator_cmp", + "cppdoc": "cpp/library/numeric/complex/operator_cmp" + }, + { + "cppref": "cpp/numeric/complex/real2", + "cppdoc": "cpp/library/numeric/complex/real2" + }, + { + "cppref": "cpp/numeric/complex/tanh", + "cppdoc": "cpp/library/numeric/complex/tanh" + }, + { + "cppref": "cpp/numeric/complex/cos", + "cppdoc": "cpp/library/numeric/complex/cos" + }, + { + "cppref": "cpp/numeric/complex/tuple_element", + "cppdoc": "cpp/library/numeric/complex/tuple_element" + }, + { + "cppref": "cpp/numeric/complex/operator_arith2", + "cppdoc": "cpp/library/numeric/complex/operator_arith2" + }, + { + "cppref": "cpp/numeric/complex/sinh", + "cppdoc": "cpp/library/numeric/complex/sinh" + }, + { + "cppref": "cpp/numeric/complex/atan", + "cppdoc": "cpp/library/numeric/complex/atan" + }, + { + "cppref": "cpp/numeric/complex/operator=", + "cppdoc": "cpp/library/numeric/complex/operator=" + }, + { + "cppref": "cpp/numeric/complex/log10", + "cppdoc": "cpp/library/numeric/complex/log10" + }, + { + "cppref": "cpp/numeric/complex/arg", + "cppdoc": "cpp/library/numeric/complex/arg" + }, + { + "cppref": "cpp/numeric/complex/acosh", + "cppdoc": "cpp/library/numeric/complex/acosh" + }, + { + "cppref": "cpp/numeric/complex/complex", + "cppdoc": "cpp/library/numeric/complex/complex" + }, + { + "cppref": "cpp/numeric/complex/real", + "cppdoc": "cpp/library/numeric/complex/real" + }, + { + "cppref": "cpp/numeric/complex/polar", + "cppdoc": "cpp/library/numeric/complex/polar" + }, + { + "cppref": "cpp/numeric/complex/abs", + "cppdoc": "cpp/library/numeric/complex/abs" + }, + { + "cppref": "cpp/numeric/complex/log", + "cppdoc": "cpp/library/numeric/complex/log" + }, + { + "cppref": "cpp/numeric/complex/atanh", + "cppdoc": "cpp/library/numeric/complex/atanh" + }, + { + "cppref": "cpp/numeric/special_functions/cyl_bessel_j", + "cppdoc": "cpp/library/numeric/special_functions/cyl_bessel_j" + }, + { + "cppref": "cpp/numeric/special_functions/hermite", + "cppdoc": "cpp/library/numeric/special_functions/hermite" + }, + { + "cppref": "cpp/numeric/special_functions/cyl_bessel_i", + "cppdoc": "cpp/library/numeric/special_functions/cyl_bessel_i" + }, + { + "cppref": "cpp/numeric/special_functions/sph_neumann", + "cppdoc": "cpp/library/numeric/special_functions/sph_neumann" + }, + { + "cppref": "cpp/numeric/special_functions/cyl_bessel_k", + "cppdoc": "cpp/library/numeric/special_functions/cyl_bessel_k" + }, + { + "cppref": "cpp/numeric/special_functions/comp_ellint_2", + "cppdoc": "cpp/library/numeric/special_functions/comp_ellint_2" + }, + { + "cppref": "cpp/numeric/special_functions/assoc_legendre", + "cppdoc": "cpp/library/numeric/special_functions/assoc_legendre" + }, + { + "cppref": "cpp/numeric/special_functions/sph_bessel", + "cppdoc": "cpp/library/numeric/special_functions/sph_bessel" + }, + { + "cppref": "cpp/numeric/special_functions/beta", + "cppdoc": "cpp/library/numeric/special_functions/beta" + }, + { + "cppref": "cpp/numeric/special_functions/sph_legendre", + "cppdoc": "cpp/library/numeric/special_functions/sph_legendre" + }, + { + "cppref": "cpp/numeric/special_functions/ellint_1", + "cppdoc": "cpp/library/numeric/special_functions/ellint_1" + }, + { + "cppref": "cpp/numeric/special_functions/assoc_laguerre", + "cppdoc": "cpp/library/numeric/special_functions/assoc_laguerre" + }, + { + "cppref": "cpp/numeric/special_functions/riemann_zeta", + "cppdoc": "cpp/library/numeric/special_functions/riemann_zeta" + }, + { + "cppref": "cpp/numeric/special_functions/comp_ellint_1", + "cppdoc": "cpp/library/numeric/special_functions/comp_ellint_1" + }, + { + "cppref": "cpp/numeric/special_functions/legendre", + "cppdoc": "cpp/library/numeric/special_functions/legendre" + }, + { + "cppref": "cpp/numeric/special_functions/laguerre", + "cppdoc": "cpp/library/numeric/special_functions/laguerre" + }, + { + "cppref": "cpp/numeric/special_functions/comp_ellint_3", + "cppdoc": "cpp/library/numeric/special_functions/comp_ellint_3" + }, + { + "cppref": "cpp/numeric/special_functions/expint", + "cppdoc": "cpp/library/numeric/special_functions/expint" + }, + { + "cppref": "cpp/numeric/special_functions/cyl_neumann", + "cppdoc": "cpp/library/numeric/special_functions/cyl_neumann" + }, + { + "cppref": "cpp/numeric/special_functions/ellint_3", + "cppdoc": "cpp/library/numeric/special_functions/ellint_3" + }, + { + "cppref": "cpp/numeric/special_functions/ellint_2", + "cppdoc": "cpp/library/numeric/special_functions/ellint_2" + }, + { + "cppref": "cpp/numeric/random/random_device", + "cppdoc": "cpp/library/numeric/random/random_device" + }, + { + "cppref": "cpp/numeric/random/discard_block_engine", + "cppdoc": "cpp/library/numeric/random/discard_block_engine" + }, + { + "cppref": "cpp/numeric/random/normal_distribution", + "cppdoc": "cpp/library/numeric/random/normal_distribution" + }, + { + "cppref": "cpp/numeric/random/negative_binomial_distribution", + "cppdoc": "cpp/library/numeric/random/negative_binomial_distribution" + }, + { + "cppref": "cpp/numeric/random/subtract_with_carry_engine", + "cppdoc": "cpp/library/numeric/random/subtract_with_carry_engine" + }, + { + "cppref": "cpp/numeric/random/extreme_value_distribution", + "cppdoc": "cpp/library/numeric/random/extreme_value_distribution" + }, + { + "cppref": "cpp/numeric/random/RAND_MAX", + "cppdoc": "cpp/library/numeric/random/RAND_MAX" + }, + { + "cppref": "cpp/numeric/random/fisher_f_distribution", + "cppdoc": "cpp/library/numeric/random/fisher_f_distribution" + }, + { + "cppref": "cpp/numeric/random/geometric_distribution", + "cppdoc": "cpp/library/numeric/random/geometric_distribution" + }, + { + "cppref": "cpp/numeric/random/linear_congruential_engine", + "cppdoc": "cpp/library/numeric/random/linear_congruential_engine" + }, + { + "cppref": "cpp/numeric/random/bernoulli_distribution", + "cppdoc": "cpp/library/numeric/random/bernoulli_distribution" + }, + { + "cppref": "cpp/numeric/random/gamma_distribution", + "cppdoc": "cpp/library/numeric/random/gamma_distribution" + }, + { + "cppref": "cpp/numeric/random/uniform_random_bit_generator", + "cppdoc": "cpp/library/numeric/random/uniform_random_bit_generator" + }, + { + "cppref": "cpp/numeric/random/mersenne_twister_engine", + "cppdoc": "cpp/library/numeric/random/mersenne_twister_engine" + }, + { + "cppref": "cpp/numeric/random/shuffle_order_engine", + "cppdoc": "cpp/library/numeric/random/shuffle_order_engine" + }, + { + "cppref": "cpp/numeric/random/cauchy_distribution", + "cppdoc": "cpp/library/numeric/random/cauchy_distribution" + }, + { + "cppref": "cpp/numeric/random/rand", + "cppdoc": "cpp/library/numeric/random/rand" + }, + { + "cppref": "cpp/numeric/random/lognormal_distribution", + "cppdoc": "cpp/library/numeric/random/lognormal_distribution" + }, + { + "cppref": "cpp/numeric/random/UniformRandomBitGenerator", + "cppdoc": "cpp/library/numeric/random/UniformRandomBitGenerator" + }, + { + "cppref": "cpp/numeric/random/seed_seq", + "cppdoc": "cpp/library/numeric/random/seed_seq" + }, + { + "cppref": "cpp/numeric/random/chi_squared_distribution", + "cppdoc": "cpp/library/numeric/random/chi_squared_distribution" + }, + { + "cppref": "cpp/numeric/random/srand", + "cppdoc": "cpp/library/numeric/random/srand" + }, + { + "cppref": "cpp/numeric/random/student_t_distribution", + "cppdoc": "cpp/library/numeric/random/student_t_distribution" + }, + { + "cppref": "cpp/numeric/random/discrete_distribution", + "cppdoc": "cpp/library/numeric/random/discrete_distribution" + }, + { + "cppref": "cpp/numeric/random/generate_canonical", + "cppdoc": "cpp/library/numeric/random/generate_canonical" + }, + { + "cppref": "cpp/numeric/random/binomial_distribution", + "cppdoc": "cpp/library/numeric/random/binomial_distribution" + }, + { + "cppref": "cpp/numeric/random/piecewise_linear_distribution", + "cppdoc": "cpp/library/numeric/random/piecewise_linear_distribution" + }, + { + "cppref": "cpp/numeric/random/uniform_real_distribution", + "cppdoc": "cpp/library/numeric/random/uniform_real_distribution" + }, + { + "cppref": "cpp/numeric/random/philox_engine", + "cppdoc": "cpp/library/numeric/random/philox_engine" + }, + { + "cppref": "cpp/numeric/random/weibull_distribution", + "cppdoc": "cpp/library/numeric/random/weibull_distribution" + }, + { + "cppref": "cpp/numeric/random/poisson_distribution", + "cppdoc": "cpp/library/numeric/random/poisson_distribution" + }, + { + "cppref": "cpp/numeric/random/piecewise_constant_distribution", + "cppdoc": "cpp/library/numeric/random/piecewise_constant_distribution" + }, + { + "cppref": "cpp/numeric/random/exponential_distribution", + "cppdoc": "cpp/library/numeric/random/exponential_distribution" + }, + { + "cppref": "cpp/numeric/random/uniform_int_distribution", + "cppdoc": "cpp/library/numeric/random/uniform_int_distribution" + }, + { + "cppref": "cpp/numeric/random/independent_bits_engine", + "cppdoc": "cpp/library/numeric/random/independent_bits_engine" + }, + { + "cppref": "cpp/numeric/random/negative_binomial_distribution/negative_binomial_distribution", + "cppdoc": "cpp/library/numeric/random/negative_binomial_distribution/negative_binomial_distribution" + }, + { + "cppref": "cpp/numeric/random/negative_binomial_distribution/min", + "cppdoc": "cpp/library/numeric/random/negative_binomial_distribution/min" + }, + { + "cppref": "cpp/numeric/random/negative_binomial_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/negative_binomial_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/negative_binomial_distribution/reset", + "cppdoc": "cpp/library/numeric/random/negative_binomial_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/negative_binomial_distribution/param", + "cppdoc": "cpp/library/numeric/random/negative_binomial_distribution/param" + }, + { + "cppref": "cpp/numeric/random/negative_binomial_distribution/max", + "cppdoc": "cpp/library/numeric/random/negative_binomial_distribution/max" + }, + { + "cppref": "cpp/numeric/random/negative_binomial_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/negative_binomial_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/negative_binomial_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/negative_binomial_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/negative_binomial_distribution/params", + "cppdoc": "cpp/library/numeric/random/negative_binomial_distribution/params" + }, + { + "cppref": "cpp/numeric/random/gamma_distribution/gamma_distribution", + "cppdoc": "cpp/library/numeric/random/gamma_distribution/gamma_distribution" + }, + { + "cppref": "cpp/numeric/random/gamma_distribution/min", + "cppdoc": "cpp/library/numeric/random/gamma_distribution/min" + }, + { + "cppref": "cpp/numeric/random/gamma_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/gamma_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/gamma_distribution/reset", + "cppdoc": "cpp/library/numeric/random/gamma_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/gamma_distribution/param", + "cppdoc": "cpp/library/numeric/random/gamma_distribution/param" + }, + { + "cppref": "cpp/numeric/random/gamma_distribution/max", + "cppdoc": "cpp/library/numeric/random/gamma_distribution/max" + }, + { + "cppref": "cpp/numeric/random/gamma_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/gamma_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/gamma_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/gamma_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/gamma_distribution/params", + "cppdoc": "cpp/library/numeric/random/gamma_distribution/params" + }, + { + "cppref": "cpp/numeric/random/shuffle_order_engine/discard", + "cppdoc": "cpp/library/numeric/random/shuffle_order_engine/discard" + }, + { + "cppref": "cpp/numeric/random/shuffle_order_engine/min", + "cppdoc": "cpp/library/numeric/random/shuffle_order_engine/min" + }, + { + "cppref": "cpp/numeric/random/shuffle_order_engine/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/shuffle_order_engine/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/shuffle_order_engine/shuffle_order_engine", + "cppdoc": "cpp/library/numeric/random/shuffle_order_engine/shuffle_order_engine" + }, + { + "cppref": "cpp/numeric/random/shuffle_order_engine/max", + "cppdoc": "cpp/library/numeric/random/shuffle_order_engine/max" + }, + { + "cppref": "cpp/numeric/random/shuffle_order_engine/operator()", + "cppdoc": "cpp/library/numeric/random/shuffle_order_engine/operator()" + }, + { + "cppref": "cpp/numeric/random/shuffle_order_engine/operator_cmp", + "cppdoc": "cpp/library/numeric/random/shuffle_order_engine/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/shuffle_order_engine/seed", + "cppdoc": "cpp/library/numeric/random/shuffle_order_engine/seed" + }, + { + "cppref": "cpp/numeric/random/shuffle_order_engine/base", + "cppdoc": "cpp/library/numeric/random/shuffle_order_engine/base" + }, + { + "cppref": "cpp/numeric/random/uniform_int_distribution/min", + "cppdoc": "cpp/library/numeric/random/uniform_int_distribution/min" + }, + { + "cppref": "cpp/numeric/random/uniform_int_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/uniform_int_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/uniform_int_distribution/reset", + "cppdoc": "cpp/library/numeric/random/uniform_int_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/uniform_int_distribution/param", + "cppdoc": "cpp/library/numeric/random/uniform_int_distribution/param" + }, + { + "cppref": "cpp/numeric/random/uniform_int_distribution/max", + "cppdoc": "cpp/library/numeric/random/uniform_int_distribution/max" + }, + { + "cppref": "cpp/numeric/random/uniform_int_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/uniform_int_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/uniform_int_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/uniform_int_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/uniform_int_distribution/uniform_int_distribution", + "cppdoc": "cpp/library/numeric/random/uniform_int_distribution/uniform_int_distribution" + }, + { + "cppref": "cpp/numeric/random/uniform_int_distribution/params", + "cppdoc": "cpp/library/numeric/random/uniform_int_distribution/params" + }, + { + "cppref": "cpp/numeric/random/discard_block_engine/discard_block_engine", + "cppdoc": "cpp/library/numeric/random/discard_block_engine/discard_block_engine" + }, + { + "cppref": "cpp/numeric/random/discard_block_engine/discard", + "cppdoc": "cpp/library/numeric/random/discard_block_engine/discard" + }, + { + "cppref": "cpp/numeric/random/discard_block_engine/min", + "cppdoc": "cpp/library/numeric/random/discard_block_engine/min" + }, + { + "cppref": "cpp/numeric/random/discard_block_engine/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/discard_block_engine/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/discard_block_engine/max", + "cppdoc": "cpp/library/numeric/random/discard_block_engine/max" + }, + { + "cppref": "cpp/numeric/random/discard_block_engine/operator()", + "cppdoc": "cpp/library/numeric/random/discard_block_engine/operator()" + }, + { + "cppref": "cpp/numeric/random/discard_block_engine/operator_cmp", + "cppdoc": "cpp/library/numeric/random/discard_block_engine/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/discard_block_engine/seed", + "cppdoc": "cpp/library/numeric/random/discard_block_engine/seed" + }, + { + "cppref": "cpp/numeric/random/discard_block_engine/base", + "cppdoc": "cpp/library/numeric/random/discard_block_engine/base" + }, + { + "cppref": "cpp/numeric/random/bernoulli_distribution/bernoulli_distribution", + "cppdoc": "cpp/library/numeric/random/bernoulli_distribution/bernoulli_distribution" + }, + { + "cppref": "cpp/numeric/random/bernoulli_distribution/min", + "cppdoc": "cpp/library/numeric/random/bernoulli_distribution/min" + }, + { + "cppref": "cpp/numeric/random/bernoulli_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/bernoulli_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/bernoulli_distribution/reset", + "cppdoc": "cpp/library/numeric/random/bernoulli_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/bernoulli_distribution/param", + "cppdoc": "cpp/library/numeric/random/bernoulli_distribution/param" + }, + { + "cppref": "cpp/numeric/random/bernoulli_distribution/max", + "cppdoc": "cpp/library/numeric/random/bernoulli_distribution/max" + }, + { + "cppref": "cpp/numeric/random/bernoulli_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/bernoulli_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/bernoulli_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/bernoulli_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/bernoulli_distribution/p", + "cppdoc": "cpp/library/numeric/random/bernoulli_distribution/p" + }, + { + "cppref": "cpp/numeric/random/student_t_distribution/min", + "cppdoc": "cpp/library/numeric/random/student_t_distribution/min" + }, + { + "cppref": "cpp/numeric/random/student_t_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/student_t_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/student_t_distribution/reset", + "cppdoc": "cpp/library/numeric/random/student_t_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/student_t_distribution/student_t_distribution", + "cppdoc": "cpp/library/numeric/random/student_t_distribution/student_t_distribution" + }, + { + "cppref": "cpp/numeric/random/student_t_distribution/param", + "cppdoc": "cpp/library/numeric/random/student_t_distribution/param" + }, + { + "cppref": "cpp/numeric/random/student_t_distribution/max", + "cppdoc": "cpp/library/numeric/random/student_t_distribution/max" + }, + { + "cppref": "cpp/numeric/random/student_t_distribution/n", + "cppdoc": "cpp/library/numeric/random/student_t_distribution/n" + }, + { + "cppref": "cpp/numeric/random/student_t_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/student_t_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/student_t_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/student_t_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/binomial_distribution/min", + "cppdoc": "cpp/library/numeric/random/binomial_distribution/min" + }, + { + "cppref": "cpp/numeric/random/binomial_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/binomial_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/binomial_distribution/reset", + "cppdoc": "cpp/library/numeric/random/binomial_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/binomial_distribution/param", + "cppdoc": "cpp/library/numeric/random/binomial_distribution/param" + }, + { + "cppref": "cpp/numeric/random/binomial_distribution/max", + "cppdoc": "cpp/library/numeric/random/binomial_distribution/max" + }, + { + "cppref": "cpp/numeric/random/binomial_distribution/binomial_distribution", + "cppdoc": "cpp/library/numeric/random/binomial_distribution/binomial_distribution" + }, + { + "cppref": "cpp/numeric/random/binomial_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/binomial_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/binomial_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/binomial_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/binomial_distribution/params", + "cppdoc": "cpp/library/numeric/random/binomial_distribution/params" + }, + { + "cppref": "cpp/numeric/random/piecewise_constant_distribution/min", + "cppdoc": "cpp/library/numeric/random/piecewise_constant_distribution/min" + }, + { + "cppref": "cpp/numeric/random/piecewise_constant_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/piecewise_constant_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/piecewise_constant_distribution/reset", + "cppdoc": "cpp/library/numeric/random/piecewise_constant_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/piecewise_constant_distribution/param", + "cppdoc": "cpp/library/numeric/random/piecewise_constant_distribution/param" + }, + { + "cppref": "cpp/numeric/random/piecewise_constant_distribution/max", + "cppdoc": "cpp/library/numeric/random/piecewise_constant_distribution/max" + }, + { + "cppref": "cpp/numeric/random/piecewise_constant_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/piecewise_constant_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/piecewise_constant_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/piecewise_constant_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/piecewise_constant_distribution/piecewise_constant_distribution", + "cppdoc": "cpp/library/numeric/random/piecewise_constant_distribution/piecewise_constant_distribution" + }, + { + "cppref": "cpp/numeric/random/piecewise_constant_distribution/params", + "cppdoc": "cpp/library/numeric/random/piecewise_constant_distribution/params" + }, + { + "cppref": "cpp/numeric/random/independent_bits_engine/discard", + "cppdoc": "cpp/library/numeric/random/independent_bits_engine/discard" + }, + { + "cppref": "cpp/numeric/random/independent_bits_engine/min", + "cppdoc": "cpp/library/numeric/random/independent_bits_engine/min" + }, + { + "cppref": "cpp/numeric/random/independent_bits_engine/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/independent_bits_engine/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/independent_bits_engine/max", + "cppdoc": "cpp/library/numeric/random/independent_bits_engine/max" + }, + { + "cppref": "cpp/numeric/random/independent_bits_engine/operator()", + "cppdoc": "cpp/library/numeric/random/independent_bits_engine/operator()" + }, + { + "cppref": "cpp/numeric/random/independent_bits_engine/operator_cmp", + "cppdoc": "cpp/library/numeric/random/independent_bits_engine/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/independent_bits_engine/seed", + "cppdoc": "cpp/library/numeric/random/independent_bits_engine/seed" + }, + { + "cppref": "cpp/numeric/random/independent_bits_engine/base", + "cppdoc": "cpp/library/numeric/random/independent_bits_engine/base" + }, + { + "cppref": "cpp/numeric/random/independent_bits_engine/independent_bits_engine", + "cppdoc": "cpp/library/numeric/random/independent_bits_engine/independent_bits_engine" + }, + { + "cppref": "cpp/numeric/random/cauchy_distribution/min", + "cppdoc": "cpp/library/numeric/random/cauchy_distribution/min" + }, + { + "cppref": "cpp/numeric/random/cauchy_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/cauchy_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/cauchy_distribution/cauchy_distribution", + "cppdoc": "cpp/library/numeric/random/cauchy_distribution/cauchy_distribution" + }, + { + "cppref": "cpp/numeric/random/cauchy_distribution/reset", + "cppdoc": "cpp/library/numeric/random/cauchy_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/cauchy_distribution/param", + "cppdoc": "cpp/library/numeric/random/cauchy_distribution/param" + }, + { + "cppref": "cpp/numeric/random/cauchy_distribution/max", + "cppdoc": "cpp/library/numeric/random/cauchy_distribution/max" + }, + { + "cppref": "cpp/numeric/random/cauchy_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/cauchy_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/cauchy_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/cauchy_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/cauchy_distribution/params", + "cppdoc": "cpp/library/numeric/random/cauchy_distribution/params" + }, + { + "cppref": "cpp/numeric/random/normal_distribution/normal_distribution", + "cppdoc": "cpp/library/numeric/random/normal_distribution/normal_distribution" + }, + { + "cppref": "cpp/numeric/random/normal_distribution/min", + "cppdoc": "cpp/library/numeric/random/normal_distribution/min" + }, + { + "cppref": "cpp/numeric/random/normal_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/normal_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/normal_distribution/reset", + "cppdoc": "cpp/library/numeric/random/normal_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/normal_distribution/param", + "cppdoc": "cpp/library/numeric/random/normal_distribution/param" + }, + { + "cppref": "cpp/numeric/random/normal_distribution/max", + "cppdoc": "cpp/library/numeric/random/normal_distribution/max" + }, + { + "cppref": "cpp/numeric/random/normal_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/normal_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/normal_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/normal_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/normal_distribution/params", + "cppdoc": "cpp/library/numeric/random/normal_distribution/params" + }, + { + "cppref": "cpp/numeric/random/linear_congruential_engine/discard", + "cppdoc": "cpp/library/numeric/random/linear_congruential_engine/discard" + }, + { + "cppref": "cpp/numeric/random/linear_congruential_engine/linear_congruential_engine", + "cppdoc": "cpp/library/numeric/random/linear_congruential_engine/linear_congruential_engine" + }, + { + "cppref": "cpp/numeric/random/linear_congruential_engine/min", + "cppdoc": "cpp/library/numeric/random/linear_congruential_engine/min" + }, + { + "cppref": "cpp/numeric/random/linear_congruential_engine/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/linear_congruential_engine/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/linear_congruential_engine/max", + "cppdoc": "cpp/library/numeric/random/linear_congruential_engine/max" + }, + { + "cppref": "cpp/numeric/random/linear_congruential_engine/operator()", + "cppdoc": "cpp/library/numeric/random/linear_congruential_engine/operator()" + }, + { + "cppref": "cpp/numeric/random/linear_congruential_engine/operator_cmp", + "cppdoc": "cpp/library/numeric/random/linear_congruential_engine/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/linear_congruential_engine/seed", + "cppdoc": "cpp/library/numeric/random/linear_congruential_engine/seed" + }, + { + "cppref": "cpp/numeric/random/extreme_value_distribution/extreme_value_distribution", + "cppdoc": "cpp/library/numeric/random/extreme_value_distribution/extreme_value_distribution" + }, + { + "cppref": "cpp/numeric/random/extreme_value_distribution/min", + "cppdoc": "cpp/library/numeric/random/extreme_value_distribution/min" + }, + { + "cppref": "cpp/numeric/random/extreme_value_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/extreme_value_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/extreme_value_distribution/reset", + "cppdoc": "cpp/library/numeric/random/extreme_value_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/extreme_value_distribution/param", + "cppdoc": "cpp/library/numeric/random/extreme_value_distribution/param" + }, + { + "cppref": "cpp/numeric/random/extreme_value_distribution/max", + "cppdoc": "cpp/library/numeric/random/extreme_value_distribution/max" + }, + { + "cppref": "cpp/numeric/random/extreme_value_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/extreme_value_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/extreme_value_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/extreme_value_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/extreme_value_distribution/params", + "cppdoc": "cpp/library/numeric/random/extreme_value_distribution/params" + }, + { + "cppref": "cpp/numeric/random/weibull_distribution/min", + "cppdoc": "cpp/library/numeric/random/weibull_distribution/min" + }, + { + "cppref": "cpp/numeric/random/weibull_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/weibull_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/weibull_distribution/reset", + "cppdoc": "cpp/library/numeric/random/weibull_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/weibull_distribution/param", + "cppdoc": "cpp/library/numeric/random/weibull_distribution/param" + }, + { + "cppref": "cpp/numeric/random/weibull_distribution/max", + "cppdoc": "cpp/library/numeric/random/weibull_distribution/max" + }, + { + "cppref": "cpp/numeric/random/weibull_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/weibull_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/weibull_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/weibull_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/weibull_distribution/weibull_distribution", + "cppdoc": "cpp/library/numeric/random/weibull_distribution/weibull_distribution" + }, + { + "cppref": "cpp/numeric/random/weibull_distribution/params", + "cppdoc": "cpp/library/numeric/random/weibull_distribution/params" + }, + { + "cppref": "cpp/numeric/random/discrete_distribution/min", + "cppdoc": "cpp/library/numeric/random/discrete_distribution/min" + }, + { + "cppref": "cpp/numeric/random/discrete_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/discrete_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/discrete_distribution/reset", + "cppdoc": "cpp/library/numeric/random/discrete_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/discrete_distribution/probabilities", + "cppdoc": "cpp/library/numeric/random/discrete_distribution/probabilities" + }, + { + "cppref": "cpp/numeric/random/discrete_distribution/param", + "cppdoc": "cpp/library/numeric/random/discrete_distribution/param" + }, + { + "cppref": "cpp/numeric/random/discrete_distribution/max", + "cppdoc": "cpp/library/numeric/random/discrete_distribution/max" + }, + { + "cppref": "cpp/numeric/random/discrete_distribution/discrete_distribution", + "cppdoc": "cpp/library/numeric/random/discrete_distribution/discrete_distribution" + }, + { + "cppref": "cpp/numeric/random/discrete_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/discrete_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/discrete_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/discrete_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/chi_squared_distribution/min", + "cppdoc": "cpp/library/numeric/random/chi_squared_distribution/min" + }, + { + "cppref": "cpp/numeric/random/chi_squared_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/chi_squared_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/chi_squared_distribution/reset", + "cppdoc": "cpp/library/numeric/random/chi_squared_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/chi_squared_distribution/chi_squared_distribution", + "cppdoc": "cpp/library/numeric/random/chi_squared_distribution/chi_squared_distribution" + }, + { + "cppref": "cpp/numeric/random/chi_squared_distribution/param", + "cppdoc": "cpp/library/numeric/random/chi_squared_distribution/param" + }, + { + "cppref": "cpp/numeric/random/chi_squared_distribution/max", + "cppdoc": "cpp/library/numeric/random/chi_squared_distribution/max" + }, + { + "cppref": "cpp/numeric/random/chi_squared_distribution/n", + "cppdoc": "cpp/library/numeric/random/chi_squared_distribution/n" + }, + { + "cppref": "cpp/numeric/random/chi_squared_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/chi_squared_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/chi_squared_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/chi_squared_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/poisson_distribution/min", + "cppdoc": "cpp/library/numeric/random/poisson_distribution/min" + }, + { + "cppref": "cpp/numeric/random/poisson_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/poisson_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/poisson_distribution/reset", + "cppdoc": "cpp/library/numeric/random/poisson_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/poisson_distribution/param", + "cppdoc": "cpp/library/numeric/random/poisson_distribution/param" + }, + { + "cppref": "cpp/numeric/random/poisson_distribution/max", + "cppdoc": "cpp/library/numeric/random/poisson_distribution/max" + }, + { + "cppref": "cpp/numeric/random/poisson_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/poisson_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/poisson_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/poisson_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/poisson_distribution/poisson_distribution", + "cppdoc": "cpp/library/numeric/random/poisson_distribution/poisson_distribution" + }, + { + "cppref": "cpp/numeric/random/poisson_distribution/mean", + "cppdoc": "cpp/library/numeric/random/poisson_distribution/mean" + }, + { + "cppref": "cpp/numeric/random/philox_engine/discard", + "cppdoc": "cpp/library/numeric/random/philox_engine/discard" + }, + { + "cppref": "cpp/numeric/random/philox_engine/min", + "cppdoc": "cpp/library/numeric/random/philox_engine/min" + }, + { + "cppref": "cpp/numeric/random/philox_engine/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/philox_engine/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/philox_engine/max", + "cppdoc": "cpp/library/numeric/random/philox_engine/max" + }, + { + "cppref": "cpp/numeric/random/philox_engine/operator()", + "cppdoc": "cpp/library/numeric/random/philox_engine/operator()" + }, + { + "cppref": "cpp/numeric/random/philox_engine/set_counter", + "cppdoc": "cpp/library/numeric/random/philox_engine/set_counter" + }, + { + "cppref": "cpp/numeric/random/philox_engine/operator_cmp", + "cppdoc": "cpp/library/numeric/random/philox_engine/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/philox_engine/philox_engine", + "cppdoc": "cpp/library/numeric/random/philox_engine/philox_engine" + }, + { + "cppref": "cpp/numeric/random/philox_engine/seed", + "cppdoc": "cpp/library/numeric/random/philox_engine/seed" + }, + { + "cppref": "cpp/numeric/random/exponential_distribution/min", + "cppdoc": "cpp/library/numeric/random/exponential_distribution/min" + }, + { + "cppref": "cpp/numeric/random/exponential_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/exponential_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/exponential_distribution/reset", + "cppdoc": "cpp/library/numeric/random/exponential_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/exponential_distribution/lambda", + "cppdoc": "cpp/library/numeric/random/exponential_distribution/lambda" + }, + { + "cppref": "cpp/numeric/random/exponential_distribution/param", + "cppdoc": "cpp/library/numeric/random/exponential_distribution/param" + }, + { + "cppref": "cpp/numeric/random/exponential_distribution/max", + "cppdoc": "cpp/library/numeric/random/exponential_distribution/max" + }, + { + "cppref": "cpp/numeric/random/exponential_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/exponential_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/exponential_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/exponential_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/exponential_distribution/exponential_distribution", + "cppdoc": "cpp/library/numeric/random/exponential_distribution/exponential_distribution" + }, + { + "cppref": "cpp/numeric/random/mersenne_twister_engine/discard", + "cppdoc": "cpp/library/numeric/random/mersenne_twister_engine/discard" + }, + { + "cppref": "cpp/numeric/random/mersenne_twister_engine/mersenne_twister_engine", + "cppdoc": "cpp/library/numeric/random/mersenne_twister_engine/mersenne_twister_engine" + }, + { + "cppref": "cpp/numeric/random/mersenne_twister_engine/min", + "cppdoc": "cpp/library/numeric/random/mersenne_twister_engine/min" + }, + { + "cppref": "cpp/numeric/random/mersenne_twister_engine/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/mersenne_twister_engine/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/mersenne_twister_engine/max", + "cppdoc": "cpp/library/numeric/random/mersenne_twister_engine/max" + }, + { + "cppref": "cpp/numeric/random/mersenne_twister_engine/operator()", + "cppdoc": "cpp/library/numeric/random/mersenne_twister_engine/operator()" + }, + { + "cppref": "cpp/numeric/random/mersenne_twister_engine/operator_cmp", + "cppdoc": "cpp/library/numeric/random/mersenne_twister_engine/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/mersenne_twister_engine/seed", + "cppdoc": "cpp/library/numeric/random/mersenne_twister_engine/seed" + }, + { + "cppref": "cpp/numeric/random/piecewise_linear_distribution/min", + "cppdoc": "cpp/library/numeric/random/piecewise_linear_distribution/min" + }, + { + "cppref": "cpp/numeric/random/piecewise_linear_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/piecewise_linear_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/piecewise_linear_distribution/reset", + "cppdoc": "cpp/library/numeric/random/piecewise_linear_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/piecewise_linear_distribution/param", + "cppdoc": "cpp/library/numeric/random/piecewise_linear_distribution/param" + }, + { + "cppref": "cpp/numeric/random/piecewise_linear_distribution/max", + "cppdoc": "cpp/library/numeric/random/piecewise_linear_distribution/max" + }, + { + "cppref": "cpp/numeric/random/piecewise_linear_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/piecewise_linear_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/piecewise_linear_distribution/piecewise_linear_distribution", + "cppdoc": "cpp/library/numeric/random/piecewise_linear_distribution/piecewise_linear_distribution" + }, + { + "cppref": "cpp/numeric/random/piecewise_linear_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/piecewise_linear_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/piecewise_linear_distribution/params", + "cppdoc": "cpp/library/numeric/random/piecewise_linear_distribution/params" + }, + { + "cppref": "cpp/numeric/random/subtract_with_carry_engine/subtract_with_carry_engine", + "cppdoc": "cpp/library/numeric/random/subtract_with_carry_engine/subtract_with_carry_engine" + }, + { + "cppref": "cpp/numeric/random/subtract_with_carry_engine/discard", + "cppdoc": "cpp/library/numeric/random/subtract_with_carry_engine/discard" + }, + { + "cppref": "cpp/numeric/random/subtract_with_carry_engine/min", + "cppdoc": "cpp/library/numeric/random/subtract_with_carry_engine/min" + }, + { + "cppref": "cpp/numeric/random/subtract_with_carry_engine/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/subtract_with_carry_engine/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/subtract_with_carry_engine/max", + "cppdoc": "cpp/library/numeric/random/subtract_with_carry_engine/max" + }, + { + "cppref": "cpp/numeric/random/subtract_with_carry_engine/operator()", + "cppdoc": "cpp/library/numeric/random/subtract_with_carry_engine/operator()" + }, + { + "cppref": "cpp/numeric/random/subtract_with_carry_engine/operator_cmp", + "cppdoc": "cpp/library/numeric/random/subtract_with_carry_engine/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/subtract_with_carry_engine/seed", + "cppdoc": "cpp/library/numeric/random/subtract_with_carry_engine/seed" + }, + { + "cppref": "cpp/numeric/random/lognormal_distribution/min", + "cppdoc": "cpp/library/numeric/random/lognormal_distribution/min" + }, + { + "cppref": "cpp/numeric/random/lognormal_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/lognormal_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/lognormal_distribution/lognormal_distribution", + "cppdoc": "cpp/library/numeric/random/lognormal_distribution/lognormal_distribution" + }, + { + "cppref": "cpp/numeric/random/lognormal_distribution/reset", + "cppdoc": "cpp/library/numeric/random/lognormal_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/lognormal_distribution/param", + "cppdoc": "cpp/library/numeric/random/lognormal_distribution/param" + }, + { + "cppref": "cpp/numeric/random/lognormal_distribution/max", + "cppdoc": "cpp/library/numeric/random/lognormal_distribution/max" + }, + { + "cppref": "cpp/numeric/random/lognormal_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/lognormal_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/lognormal_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/lognormal_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/lognormal_distribution/params", + "cppdoc": "cpp/library/numeric/random/lognormal_distribution/params" + }, + { + "cppref": "cpp/numeric/random/geometric_distribution/geometric_distribution", + "cppdoc": "cpp/library/numeric/random/geometric_distribution/geometric_distribution" + }, + { + "cppref": "cpp/numeric/random/geometric_distribution/min", + "cppdoc": "cpp/library/numeric/random/geometric_distribution/min" + }, + { + "cppref": "cpp/numeric/random/geometric_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/geometric_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/geometric_distribution/reset", + "cppdoc": "cpp/library/numeric/random/geometric_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/geometric_distribution/param", + "cppdoc": "cpp/library/numeric/random/geometric_distribution/param" + }, + { + "cppref": "cpp/numeric/random/geometric_distribution/max", + "cppdoc": "cpp/library/numeric/random/geometric_distribution/max" + }, + { + "cppref": "cpp/numeric/random/geometric_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/geometric_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/geometric_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/geometric_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/geometric_distribution/p", + "cppdoc": "cpp/library/numeric/random/geometric_distribution/p" + }, + { + "cppref": "cpp/numeric/random/random_device/random_device", + "cppdoc": "cpp/library/numeric/random/random_device/random_device" + }, + { + "cppref": "cpp/numeric/random/random_device/min", + "cppdoc": "cpp/library/numeric/random/random_device/min" + }, + { + "cppref": "cpp/numeric/random/random_device/max", + "cppdoc": "cpp/library/numeric/random/random_device/max" + }, + { + "cppref": "cpp/numeric/random/random_device/operator()", + "cppdoc": "cpp/library/numeric/random/random_device/operator()" + }, + { + "cppref": "cpp/numeric/random/random_device/entropy", + "cppdoc": "cpp/library/numeric/random/random_device/entropy" + }, + { + "cppref": "cpp/numeric/random/uniform_real_distribution/min", + "cppdoc": "cpp/library/numeric/random/uniform_real_distribution/min" + }, + { + "cppref": "cpp/numeric/random/uniform_real_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/uniform_real_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/uniform_real_distribution/reset", + "cppdoc": "cpp/library/numeric/random/uniform_real_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/uniform_real_distribution/param", + "cppdoc": "cpp/library/numeric/random/uniform_real_distribution/param" + }, + { + "cppref": "cpp/numeric/random/uniform_real_distribution/max", + "cppdoc": "cpp/library/numeric/random/uniform_real_distribution/max" + }, + { + "cppref": "cpp/numeric/random/uniform_real_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/uniform_real_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/uniform_real_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/uniform_real_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/uniform_real_distribution/uniform_real_distribution", + "cppdoc": "cpp/library/numeric/random/uniform_real_distribution/uniform_real_distribution" + }, + { + "cppref": "cpp/numeric/random/uniform_real_distribution/params", + "cppdoc": "cpp/library/numeric/random/uniform_real_distribution/params" + }, + { + "cppref": "cpp/numeric/random/fisher_f_distribution/fisher_f_distribution", + "cppdoc": "cpp/library/numeric/random/fisher_f_distribution/fisher_f_distribution" + }, + { + "cppref": "cpp/numeric/random/fisher_f_distribution/min", + "cppdoc": "cpp/library/numeric/random/fisher_f_distribution/min" + }, + { + "cppref": "cpp/numeric/random/fisher_f_distribution/operator_ltltgtgt", + "cppdoc": "cpp/library/numeric/random/fisher_f_distribution/operator_ltltgtgt" + }, + { + "cppref": "cpp/numeric/random/fisher_f_distribution/reset", + "cppdoc": "cpp/library/numeric/random/fisher_f_distribution/reset" + }, + { + "cppref": "cpp/numeric/random/fisher_f_distribution/param", + "cppdoc": "cpp/library/numeric/random/fisher_f_distribution/param" + }, + { + "cppref": "cpp/numeric/random/fisher_f_distribution/max", + "cppdoc": "cpp/library/numeric/random/fisher_f_distribution/max" + }, + { + "cppref": "cpp/numeric/random/fisher_f_distribution/operator()", + "cppdoc": "cpp/library/numeric/random/fisher_f_distribution/operator()" + }, + { + "cppref": "cpp/numeric/random/fisher_f_distribution/operator_cmp", + "cppdoc": "cpp/library/numeric/random/fisher_f_distribution/operator_cmp" + }, + { + "cppref": "cpp/numeric/random/fisher_f_distribution/params", + "cppdoc": "cpp/library/numeric/random/fisher_f_distribution/params" + }, + { + "cppref": "cpp/numeric/random/seed_seq/size", + "cppdoc": "cpp/library/numeric/random/seed_seq/size" + }, + { + "cppref": "cpp/numeric/random/seed_seq/seed_seq", + "cppdoc": "cpp/library/numeric/random/seed_seq/seed_seq" + }, + { + "cppref": "cpp/numeric/random/seed_seq/param", + "cppdoc": "cpp/library/numeric/random/seed_seq/param" + }, + { + "cppref": "cpp/numeric/random/seed_seq/generate", + "cppdoc": "cpp/library/numeric/random/seed_seq/generate" + }, + { + "cppref": "cpp/numeric/fenv/feupdateenv", + "cppdoc": "cpp/library/numeric/fenv/feupdateenv" + }, + { + "cppref": "cpp/numeric/fenv/FE_exceptions", + "cppdoc": "cpp/library/numeric/fenv/FE_exceptions" + }, + { + "cppref": "cpp/numeric/fenv/feexceptflag", + "cppdoc": "cpp/library/numeric/fenv/feexceptflag" + }, + { + "cppref": "cpp/numeric/fenv/feholdexcept", + "cppdoc": "cpp/library/numeric/fenv/feholdexcept" + }, + { + "cppref": "cpp/numeric/fenv/feraiseexcept", + "cppdoc": "cpp/library/numeric/fenv/feraiseexcept" + }, + { + "cppref": "cpp/numeric/fenv/feround", + "cppdoc": "cpp/library/numeric/fenv/feround" + }, + { + "cppref": "cpp/numeric/fenv/FE_round", + "cppdoc": "cpp/library/numeric/fenv/FE_round" + }, + { + "cppref": "cpp/numeric/fenv/feenv", + "cppdoc": "cpp/library/numeric/fenv/feenv" + }, + { + "cppref": "cpp/numeric/fenv/fetestexcept", + "cppdoc": "cpp/library/numeric/fenv/fetestexcept" + }, + { + "cppref": "cpp/numeric/fenv/FE_DFL_ENV", + "cppdoc": "cpp/library/numeric/fenv/FE_DFL_ENV" + }, + { + "cppref": "cpp/numeric/fenv/feclearexcept", + "cppdoc": "cpp/library/numeric/fenv/feclearexcept" + }, + { + "cppref": "cpp/numeric/math/fma", + "cppdoc": "cpp/library/numeric/math/fma" + }, + { + "cppref": "cpp/numeric/math/asin", + "cppdoc": "cpp/library/numeric/math/asin" + }, + { + "cppref": "cpp/numeric/math/isnormal", + "cppdoc": "cpp/library/numeric/math/isnormal" + }, + { + "cppref": "cpp/numeric/math/sin", + "cppdoc": "cpp/library/numeric/math/sin" + }, + { + "cppref": "cpp/numeric/math/scalbn", + "cppdoc": "cpp/library/numeric/math/scalbn" + }, + { + "cppref": "cpp/numeric/math/acos", + "cppdoc": "cpp/library/numeric/math/acos" + }, + { + "cppref": "cpp/numeric/math/modf", + "cppdoc": "cpp/library/numeric/math/modf" + }, + { + "cppref": "cpp/numeric/math/tan", + "cppdoc": "cpp/library/numeric/math/tan" + }, + { + "cppref": "cpp/numeric/math/fmin", + "cppdoc": "cpp/library/numeric/math/fmin" + }, + { + "cppref": "cpp/numeric/math/frexp", + "cppdoc": "cpp/library/numeric/math/frexp" + }, + { + "cppref": "cpp/numeric/math/fabs", + "cppdoc": "cpp/library/numeric/math/fabs" + }, + { + "cppref": "cpp/numeric/math/floor", + "cppdoc": "cpp/library/numeric/math/floor" + }, + { + "cppref": "cpp/numeric/math/fdim", + "cppdoc": "cpp/library/numeric/math/fdim" + }, + { + "cppref": "cpp/numeric/math/ldexp", + "cppdoc": "cpp/library/numeric/math/ldexp" + }, + { + "cppref": "cpp/numeric/math/log2", + "cppdoc": "cpp/library/numeric/math/log2" + }, + { + "cppref": "cpp/numeric/math/ceil", + "cppdoc": "cpp/library/numeric/math/ceil" + }, + { + "cppref": "cpp/numeric/math/erfc", + "cppdoc": "cpp/library/numeric/math/erfc" + }, + { + "cppref": "cpp/numeric/math/isless", + "cppdoc": "cpp/library/numeric/math/isless" + }, + { + "cppref": "cpp/numeric/math/exp", + "cppdoc": "cpp/library/numeric/math/exp" + }, + { + "cppref": "cpp/numeric/math/sqrt", + "cppdoc": "cpp/library/numeric/math/sqrt" + }, + { + "cppref": "cpp/numeric/math/tgamma", + "cppdoc": "cpp/library/numeric/math/tgamma" + }, + { + "cppref": "cpp/numeric/math/math_errhandling", + "cppdoc": "cpp/library/numeric/math/math_errhandling" + }, + { + "cppref": "cpp/numeric/math/erf", + "cppdoc": "cpp/library/numeric/math/erf" + }, + { + "cppref": "cpp/numeric/math/log1p", + "cppdoc": "cpp/library/numeric/math/log1p" + }, + { + "cppref": "cpp/numeric/math/exp2", + "cppdoc": "cpp/library/numeric/math/exp2" + }, + { + "cppref": "cpp/numeric/math/remainder", + "cppdoc": "cpp/library/numeric/math/remainder" + }, + { + "cppref": "cpp/numeric/math/islessgreater", + "cppdoc": "cpp/library/numeric/math/islessgreater" + }, + { + "cppref": "cpp/numeric/math/isunordered", + "cppdoc": "cpp/library/numeric/math/isunordered" + }, + { + "cppref": "cpp/numeric/math/isnan", + "cppdoc": "cpp/library/numeric/math/isnan" + }, + { + "cppref": "cpp/numeric/math/isfinite", + "cppdoc": "cpp/library/numeric/math/isfinite" + }, + { + "cppref": "cpp/numeric/math/ilogb", + "cppdoc": "cpp/library/numeric/math/ilogb" + }, + { + "cppref": "cpp/numeric/math/trunc", + "cppdoc": "cpp/library/numeric/math/trunc" + }, + { + "cppref": "cpp/numeric/math/isinf", + "cppdoc": "cpp/library/numeric/math/isinf" + }, + { + "cppref": "cpp/numeric/math/signbit", + "cppdoc": "cpp/library/numeric/math/signbit" + }, + { + "cppref": "cpp/numeric/math/HUGE_VAL", + "cppdoc": "cpp/library/numeric/math/HUGE_VAL" + }, + { + "cppref": "cpp/numeric/math/cosh", + "cppdoc": "cpp/library/numeric/math/cosh" + }, + { + "cppref": "cpp/numeric/math/pow", + "cppdoc": "cpp/library/numeric/math/pow" + }, + { + "cppref": "cpp/numeric/math/isgreaterequal", + "cppdoc": "cpp/library/numeric/math/isgreaterequal" + }, + { + "cppref": "cpp/numeric/math/INFINITY", + "cppdoc": "cpp/library/numeric/math/INFINITY" + }, + { + "cppref": "cpp/numeric/math/logb", + "cppdoc": "cpp/library/numeric/math/logb" + }, + { + "cppref": "cpp/numeric/math/NAN", + "cppdoc": "cpp/library/numeric/math/NAN" + }, + { + "cppref": "cpp/numeric/math/asinh", + "cppdoc": "cpp/library/numeric/math/asinh" + }, + { + "cppref": "cpp/numeric/math/lgamma", + "cppdoc": "cpp/library/numeric/math/lgamma" + }, + { + "cppref": "cpp/numeric/math/FP_categories", + "cppdoc": "cpp/library/numeric/math/FP_categories" + }, + { + "cppref": "cpp/numeric/math/tanh", + "cppdoc": "cpp/library/numeric/math/tanh" + }, + { + "cppref": "cpp/numeric/math/copysign", + "cppdoc": "cpp/library/numeric/math/copysign" + }, + { + "cppref": "cpp/numeric/math/cbrt", + "cppdoc": "cpp/library/numeric/math/cbrt" + }, + { + "cppref": "cpp/numeric/math/hypot", + "cppdoc": "cpp/library/numeric/math/hypot" + }, + { + "cppref": "cpp/numeric/math/cos", + "cppdoc": "cpp/library/numeric/math/cos" + }, + { + "cppref": "cpp/numeric/math/rint", + "cppdoc": "cpp/library/numeric/math/rint" + }, + { + "cppref": "cpp/numeric/math/nextafter", + "cppdoc": "cpp/library/numeric/math/nextafter" + }, + { + "cppref": "cpp/numeric/math/sinh", + "cppdoc": "cpp/library/numeric/math/sinh" + }, + { + "cppref": "cpp/numeric/math/isgreater", + "cppdoc": "cpp/library/numeric/math/isgreater" + }, + { + "cppref": "cpp/numeric/math/nearbyint", + "cppdoc": "cpp/library/numeric/math/nearbyint" + }, + { + "cppref": "cpp/numeric/math/atan", + "cppdoc": "cpp/library/numeric/math/atan" + }, + { + "cppref": "cpp/numeric/math/atan2", + "cppdoc": "cpp/library/numeric/math/atan2" + }, + { + "cppref": "cpp/numeric/math/log10", + "cppdoc": "cpp/library/numeric/math/log10" + }, + { + "cppref": "cpp/numeric/math/round", + "cppdoc": "cpp/library/numeric/math/round" + }, + { + "cppref": "cpp/numeric/math/nan.2", + "cppdoc": "cpp/library/numeric/math/nan.2" + }, + { + "cppref": "cpp/numeric/math/fmax", + "cppdoc": "cpp/library/numeric/math/fmax" + }, + { + "cppref": "cpp/numeric/math/remquo", + "cppdoc": "cpp/library/numeric/math/remquo" + }, + { + "cppref": "cpp/numeric/math/acosh", + "cppdoc": "cpp/library/numeric/math/acosh" + }, + { + "cppref": "cpp/numeric/math/islessequal", + "cppdoc": "cpp/library/numeric/math/islessequal" + }, + { + "cppref": "cpp/numeric/math/abs", + "cppdoc": "cpp/library/numeric/math/abs" + }, + { + "cppref": "cpp/numeric/math/div", + "cppdoc": "cpp/library/numeric/math/div" + }, + { + "cppref": "cpp/numeric/math/log", + "cppdoc": "cpp/library/numeric/math/log" + }, + { + "cppref": "cpp/numeric/math/fpclassify", + "cppdoc": "cpp/library/numeric/math/fpclassify" + }, + { + "cppref": "cpp/numeric/math/fmod", + "cppdoc": "cpp/library/numeric/math/fmod" + }, + { + "cppref": "cpp/numeric/math/expm1", + "cppdoc": "cpp/library/numeric/math/expm1" + }, + { + "cppref": "cpp/numeric/math/atanh", + "cppdoc": "cpp/library/numeric/math/atanh" + }, + { + "cppref": "cpp/numeric/simd/basic_simd", + "cppdoc": "cpp/library/numeric/simd/basic_simd" + }, + { + "cppref": "cpp/numeric/ratio/ratio_less", + "cppdoc": "cpp/library/meta/ratio/ratio_less" + }, + { + "cppref": "cpp/numeric/ratio/ratio_equal", + "cppdoc": "cpp/library/meta/ratio/ratio_equal" + }, + { + "cppref": "cpp/numeric/ratio/ratio", + "cppdoc": "cpp/library/meta/ratio/ratio" + }, + { + "cppref": "cpp/numeric/ratio/ratio_add", + "cppdoc": "cpp/library/meta/ratio/ratio_add" + }, + { + "cppref": "cpp/numeric/ratio/ratio_not_equal", + "cppdoc": "cpp/library/meta/ratio/ratio_not_equal" + }, + { + "cppref": "cpp/numeric/ratio/ratio_greater_equal", + "cppdoc": "cpp/library/meta/ratio/ratio_greater_equal" + }, + { + "cppref": "cpp/numeric/ratio/ratio_divide", + "cppdoc": "cpp/library/meta/ratio/ratio_divide" + }, + { + "cppref": "cpp/numeric/ratio/ratio_greater", + "cppdoc": "cpp/library/meta/ratio/ratio_greater" + }, + { + "cppref": "cpp/numeric/ratio/ratio_multiply", + "cppdoc": "cpp/library/meta/ratio/ratio_multiply" + }, + { + "cppref": "cpp/numeric/ratio/ratio_less_equal", + "cppdoc": "cpp/library/meta/ratio/ratio_less_equal" + }, + { + "cppref": "cpp/numeric/ratio/ratio_subtract", + "cppdoc": "cpp/library/meta/ratio/ratio_subtract" + }, + { + "cppref": "cpp/language/classes", + "cppdoc": "cpp/language/classes" + }, + { + "cppref": "cpp/language/static", + "cppdoc": "cpp/language/classes/static" + }, + { + "cppref": "cpp/language/declarations", + "cppdoc": "cpp/language/declarations" + }, + { + "cppref": "cpp/language/consteval", + "cppdoc": "cpp/language/declarations/consteval" + }, + { + "cppref": "cpp/language/structured_binding", + "cppdoc": "cpp/language/declarations/structured_binding" + }, + { + "cppref": "cpp/language/namespace_alias", + "cppdoc": "cpp/language/declarations/namespace_alias" + }, + { + "cppref": "cpp/language/expressions", + "cppdoc": "cpp/language/expressions" + }, + { + "cppref": "cpp/language/operator_alternative", + "cppdoc": "cpp/language/expressions/operator_alternative" + }, + { + "cppref": "cpp/language/templates", + "cppdoc": "cpp/language/templates" + }, + { + "cppref": "cpp/language/partial_specialization", + "cppdoc": "cpp/language/templates/partial_specialization" + }, + { + "cppref": "cpp/language/default_constructor", + "cppdoc": "cpp/language/classes/default_constructor" + }, + { + "cppref": "cpp/language/attributes", + "cppdoc": "cpp/language/declarations/attributes" + }, + { + "cppref": "cpp/language/pack_indexing", + "cppdoc": "cpp/language/templates/pack_indexing" + }, + { + "cppref": "cpp/language/initializer_list", + "cppdoc": "cpp/language/classes/initializer_list" + }, + { + "cppref": "cpp/language/using_declaration", + "cppdoc": "cpp/language/classes/using_declaration" + }, + { + "cppref": "cpp/language/delete", + "cppdoc": "cpp/language/expressions/delete" + }, + { + "cppref": "cpp/language/variable_template", + "cppdoc": "cpp/language/templates/variable_template" + }, + { + "cppref": "cpp/language/class", + "cppdoc": "cpp/language/classes/class" + }, + { + "cppref": "cpp/language/elaborated_type_specifier", + "cppdoc": "cpp/language/declarations/elaborated_type_specifier" + }, + { + "cppref": "cpp/language/cv", + "cppdoc": "cpp/language/declarations/cv" + }, + { + "cppref": "cpp/language/parameter_pack", + "cppdoc": "cpp/language/templates/parameter_pack" + }, + { + "cppref": "cpp/language/default_comparisons", + "cppdoc": "cpp/language/expressions/default_comparisons" + }, + { + "cppref": "cpp/language/operator_logical", + "cppdoc": "cpp/language/expressions/operator_logical" + }, + { + "cppref": "cpp/language/requires", + "cppdoc": "cpp/language/templates/requires" + }, + { + "cppref": "cpp/language/operator_incdec", + "cppdoc": "cpp/language/expressions/operator_incdec" + }, + { + "cppref": "cpp/language/ndr", + "cppdoc": "cpp/language/ndr" + }, + { + "cppref": "cpp/language/alignof", + "cppdoc": "cpp/language/expressions/alignof" + }, + { + "cppref": "cpp/language/namespace", + "cppdoc": "cpp/language/declarations/namespace" + }, + { + "cppref": "cpp/language/ascii", + "cppdoc": "cpp/language/ascii" + }, + { + "cppref": "cpp/language/template_parameters", + "cppdoc": "cpp/language/templates/template_parameters" + }, + { + "cppref": "cpp/language/rule_of_three", + "cppdoc": "cpp/language/rule_of_three" + }, + { + "cppref": "cpp/language/operator_other", + "cppdoc": "cpp/language/expressions/operator_other" + }, + { + "cppref": "cpp/language/destructor", + "cppdoc": "cpp/language/classes/destructor" + }, + { + "cppref": "cpp/language/escape", + "cppdoc": "cpp/language/expressions/escape" + }, + { + "cppref": "cpp/language/statements", + "cppdoc": "cpp/language/statements" + }, + { + "cppref": "cpp/language/explicit_cast", + "cppdoc": "cpp/language/expressions/explicit_cast" + }, + { + "cppref": "cpp/language/bool_literal", + "cppdoc": "cpp/language/expressions/bool_literal" + }, + { + "cppref": "cpp/language/move_constructor", + "cppdoc": "cpp/language/classes/move_constructor" + }, + { + "cppref": "cpp/language/this", + "cppdoc": "cpp/language/classes/this" + }, + { + "cppref": "cpp/language/explicit", + "cppdoc": "cpp/language/classes/explicit" + }, + { + "cppref": "cpp/language/member_functions", + "cppdoc": "cpp/language/classes/member_functions" + }, + { + "cppref": "cpp/language/operator_precedence", + "cppdoc": "cpp/language/expressions/operator_precedence" + }, + { + "cppref": "cpp/language/floating_literal", + "cppdoc": "cpp/language/expressions/floating_literal" + }, + { + "cppref": "cpp/language/constant_expression", + "cppdoc": "cpp/language/expressions/constant_expression" + }, + { + "cppref": "cpp/language/switch", + "cppdoc": "cpp/language/statements/switch" + }, + { + "cppref": "cpp/language/language_linkage", + "cppdoc": "cpp/language/declarations/language_linkage" + }, + { + "cppref": "cpp/language/abstract_class", + "cppdoc": "cpp/language/classes/abstract_class" + }, + { + "cppref": "cpp/language/constraints", + "cppdoc": "cpp/language/templates/constraints" + }, + { + "cppref": "cpp/language/new", + "cppdoc": "cpp/language/expressions/new" + }, + { + "cppref": "cpp/language/fold", + "cppdoc": "cpp/language/templates/fold" + }, + { + "cppref": "cpp/language/raii", + "cppdoc": "cpp/language/raii" + }, + { + "cppref": "cpp/language/crtp", + "cppdoc": "cpp/language/crtp" + }, + { + "cppref": "cpp/language/sizeof", + "cppdoc": "cpp/language/expressions/sizeof" + }, + { + "cppref": "cpp/language/move_assignment", + "cppdoc": "cpp/language/classes/move_assignment" + }, + { + "cppref": "cpp/language/template_specialization", + "cppdoc": "cpp/language/templates/template_specialization" + }, + { + "cppref": "cpp/language/deduction_guide", + "cppdoc": "cpp/language/templates/deduction_guide" + }, + { + "cppref": "cpp/language/for", + "cppdoc": "cpp/language/statements/for" + }, + { + "cppref": "cpp/language/eval_order", + "cppdoc": "cpp/language/expressions/eval_order" + }, + { + "cppref": "cpp/language/exceptions", + "cppdoc": "cpp/language/exceptions" + }, + { + "cppref": "cpp/language/operators", + "cppdoc": "cpp/language/expressions/operators" + }, + { + "cppref": "cpp/language/continue", + "cppdoc": "cpp/language/statements/continue" + }, + { + "cppref": "cpp/language/tu_local", + "cppdoc": "cpp/language/declarations/tu_local" + }, + { + "cppref": "cpp/language/type_alias", + "cppdoc": "cpp/language/declarations/type_alias" + }, + { + "cppref": "cpp/language/function_template", + "cppdoc": "cpp/language/templates/function_template" + }, + { + "cppref": "cpp/language/character_literal", + "cppdoc": "cpp/language/expressions/character_literal" + }, + { + "cppref": "cpp/language/derived_class", + "cppdoc": "cpp/language/classes/derived_class" + }, + { + "cppref": "cpp/language/if", + "cppdoc": "cpp/language/statements/if" + }, + { + "cppref": "cpp/language/integer_literal", + "cppdoc": "cpp/language/expressions/integer_literal" + }, + { + "cppref": "cpp/language/extending_std", + "cppdoc": "cpp/language/extending_std" + }, + { + "cppref": "cpp/language/array", + "cppdoc": "cpp/language/declarations/array" + }, + { + "cppref": "cpp/language/operator_arithmetic", + "cppdoc": "cpp/language/expressions/operator_arithmetic" + }, + { + "cppref": "cpp/language/reinterpret_cast", + "cppdoc": "cpp/language/expressions/reinterpret_cast" + }, + { + "cppref": "cpp/language/static_cast", + "cppdoc": "cpp/language/expressions/static_cast" + }, + { + "cppref": "cpp/language/value_category", + "cppdoc": "cpp/language/expressions/value_category" + }, + { + "cppref": "cpp/language/typedef", + "cppdoc": "cpp/language/declarations/typedef" + }, + { + "cppref": "cpp/language/Zero-overhead_principle", + "cppdoc": "cpp/language/Zero-overhead_principle" + }, + { + "cppref": "cpp/language/injected-class-name", + "cppdoc": "cpp/language/classes/injected-class-name" + }, + { + "cppref": "cpp/language/nullptr", + "cppdoc": "cpp/language/expressions/nullptr" + }, + { + "cppref": "cpp/language/throw", + "cppdoc": "cpp/language/exceptions/throw" + }, + { + "cppref": "cpp/language/friend", + "cppdoc": "cpp/language/classes/friend" + }, + { + "cppref": "cpp/language/pimpl", + "cppdoc": "cpp/language/pimpl" + }, + { + "cppref": "cpp/language/conflicting_declarations", + "cppdoc": "cpp/language/declarations/conflicting_declarations" + }, + { + "cppref": "cpp/language/data_members", + "cppdoc": "cpp/language/classes/data_members" + }, + { + "cppref": "cpp/language/ebo", + "cppdoc": "cpp/language/classes/ebo" + }, + { + "cppref": "cpp/language/nested_types", + "cppdoc": "cpp/language/classes/nested_types" + }, + { + "cppref": "cpp/language/user_literal", + "cppdoc": "cpp/language/expressions/user_literal" + }, + { + "cppref": "cpp/language/static_assert", + "cppdoc": "cpp/language/declarations/static_assert" + }, + { + "cppref": "cpp/language/string_literal", + "cppdoc": "cpp/language/expressions/string_literal" + }, + { + "cppref": "cpp/language/transactional_memory", + "cppdoc": "cpp/language/statements/transactional_memory" + }, + { + "cppref": "cpp/language/class_template", + "cppdoc": "cpp/language/templates/class_template" + }, + { + "cppref": "cpp/language/template_argument_deduction", + "cppdoc": "cpp/language/templates/template_argument_deduction" + }, + { + "cppref": "cpp/language/pointer", + "cppdoc": "cpp/language/declarations/pointer" + }, + { + "cppref": "cpp/language/operator_assignment", + "cppdoc": "cpp/language/expressions/operator_assignment" + }, + { + "cppref": "cpp/language/enum", + "cppdoc": "cpp/language/declarations/enum" + }, + { + "cppref": "cpp/language/as_operator", + "cppdoc": "cpp/language/classes/as_operator" + }, + { + "cppref": "cpp/language/storage_duration", + "cppdoc": "cpp/language/declarations/storage_duration" + }, + { + "cppref": "cpp/language/noexcept", + "cppdoc": "cpp/language/exceptions/noexcept" + }, + { + "cppref": "cpp/language/asm", + "cppdoc": "cpp/language/declarations/asm" + }, + { + "cppref": "cpp/language/final", + "cppdoc": "cpp/language/classes/final" + }, + { + "cppref": "cpp/language/while", + "cppdoc": "cpp/language/statements/while" + }, + { + "cppref": "cpp/language/union", + "cppdoc": "cpp/language/classes/union" + }, + { + "cppref": "cpp/language/implicit_cast", + "cppdoc": "cpp/language/expressions/implicit_cast" + }, + { + "cppref": "cpp/language/move_operator", + "cppdoc": "cpp/language/classes/move_operator" + }, + { + "cppref": "cpp/language/dynamic_cast", + "cppdoc": "cpp/language/expressions/dynamic_cast" + }, + { + "cppref": "cpp/language/template_metaprogramming", + "cppdoc": "cpp/language/template_metaprogramming" + }, + { + "cppref": "cpp/language/copy_constructor", + "cppdoc": "cpp/language/classes/copy_constructor" + }, + { + "cppref": "cpp/language/nested_classes", + "cppdoc": "cpp/language/classes/nested_classes" + }, + { + "cppref": "cpp/language/break", + "cppdoc": "cpp/language/statements/break" + }, + { + "cppref": "cpp/language/sizeof...", + "cppdoc": "cpp/language/templates/sizeof..." + }, + { + "cppref": "cpp/language/functions", + "cppdoc": "cpp/language/functions" + }, + { + "cppref": "cpp/language/access", + "cppdoc": "cpp/language/classes/access" + }, + { + "cppref": "cpp/language/ctad", + "cppdoc": "cpp/language/templates/ctad" + }, + { + "cppref": "cpp/language/override", + "cppdoc": "cpp/language/classes/override" + }, + { + "cppref": "cpp/language/constexpr", + "cppdoc": "cpp/language/declarations/constexpr" + }, + { + "cppref": "cpp/language/reference", + "cppdoc": "cpp/language/declarations/reference" + }, + { + "cppref": "cpp/language/operator_member_access", + "cppdoc": "cpp/language/expressions/operator_member_access" + }, + { + "cppref": "cpp/language/converting_constructor", + "cppdoc": "cpp/language/classes/converting_constructor" + }, + { + "cppref": "cpp/language/class_template_argument_deduction", + "cppdoc": "cpp/language/templates/class_template_argument_deduction" + }, + { + "cppref": "cpp/language/range-for", + "cppdoc": "cpp/language/statements/range-for" + }, + { + "cppref": "cpp/language/inline", + "cppdoc": "cpp/language/declarations/inline" + }, + { + "cppref": "cpp/language/decltype", + "cppdoc": "cpp/language/declarations/decltype" + }, + { + "cppref": "cpp/language/history", + "cppdoc": "cpp/language/history" + }, + { + "cppref": "cpp/language/initialization", + "cppdoc": "cpp/language/initialization" + }, + { + "cppref": "cpp/language/usual_arithmetic_conversions", + "cppdoc": "cpp/language/expressions/usual_arithmetic_conversions" + }, + { + "cppref": "cpp/language/dependent_name", + "cppdoc": "cpp/language/templates/dependent_name" + }, + { + "cppref": "cpp/language/typeid", + "cppdoc": "cpp/language/expressions/typeid" + }, + { + "cppref": "cpp/language/bit_field", + "cppdoc": "cpp/language/classes/bit_field" + }, + { + "cppref": "cpp/language/cast_operator", + "cppdoc": "cpp/language/expressions/cast_operator" + }, + { + "cppref": "cpp/language/acronyms", + "cppdoc": "cpp/language/acronyms" + }, + { + "cppref": "cpp/language/basic_concepts", + "cppdoc": "cpp/language/basic_concepts" + }, + { + "cppref": "cpp/language/goto", + "cppdoc": "cpp/language/statements/goto" + }, + { + "cppref": "cpp/language/const_cast", + "cppdoc": "cpp/language/expressions/const_cast" + }, + { + "cppref": "cpp/language/reference_initialization", + "cppdoc": "cpp/language/initialization/reference_initialization" + }, + { + "cppref": "cpp/language/operator_comparison", + "cppdoc": "cpp/language/expressions/operator_comparison" + }, + { + "cppref": "cpp/language/virtual", + "cppdoc": "cpp/language/classes/virtual" + }, + { + "cppref": "cpp/language/constinit", + "cppdoc": "cpp/language/declarations/constinit" + }, + { + "cppref": "cpp/language/auto", + "cppdoc": "cpp/language/declarations/auto" + }, + { + "cppref": "cpp/language/attributes/fallthrough", + "cppdoc": "cpp/language/declarations/attributes/fallthrough" + }, + { + "cppref": "cpp/language/attributes/indeterminate", + "cppdoc": "cpp/language/declarations/attributes/indeterminate" + }, + { + "cppref": "cpp/language/attributes/deprecated", + "cppdoc": "cpp/language/declarations/attributes/deprecated" + }, + { + "cppref": "cpp/language/attributes/assume", + "cppdoc": "cpp/language/declarations/attributes/assume" + }, + { + "cppref": "cpp/language/attributes/optimize_for_synchronized", + "cppdoc": "cpp/language/declarations/attributes/optimize_for_synchronized" + }, + { + "cppref": "cpp/language/attributes/maybe_unused", + "cppdoc": "cpp/language/declarations/attributes/maybe_unused" + }, + { + "cppref": "cpp/language/attributes/likely", + "cppdoc": "cpp/language/declarations/attributes/likely" + }, + { + "cppref": "cpp/language/attributes/noreturn", + "cppdoc": "cpp/language/declarations/attributes/noreturn" + }, + { + "cppref": "cpp/language/attributes/nodiscard", + "cppdoc": "cpp/language/declarations/attributes/nodiscard" + }, + { + "cppref": "cpp/language/attributes/no_unique_address", + "cppdoc": "cpp/language/declarations/attributes/no_unique_address" + }, + { + "cppref": "cpp/language/attributes/carries_dependency", + "cppdoc": "cpp/language/declarations/attributes/carries_dependency" + }, + { + "cppref": "cpp/ranges/lazy_split_view", + "cppdoc": "cpp/library/ranges/lazy_split_view" + }, + { + "cppref": "cpp/ranges/ref_view", + "cppdoc": "cpp/library/ranges/ref_view" + }, + { + "cppref": "cpp/ranges/common_view", + "cppdoc": "cpp/library/ranges/common_view" + }, + { + "cppref": "cpp/ranges/subrange", + "cppdoc": "cpp/library/ranges/subrange" + }, + { + "cppref": "cpp/ranges/chunk_view", + "cppdoc": "cpp/library/ranges/chunk_view" + }, + { + "cppref": "cpp/ranges/range_size_t", + "cppdoc": "cpp/library/ranges/range_size_t" + }, + { + "cppref": "cpp/ranges/range_reference_t", + "cppdoc": "cpp/library/ranges/range_reference_t" + }, + { + "cppref": "cpp/ranges/keys_view", + "cppdoc": "cpp/library/ranges/keys_view" + }, + { + "cppref": "cpp/ranges/cdata", + "cppdoc": "cpp/library/ranges/cdata" + }, + { + "cppref": "cpp/ranges/drop_while_view", + "cppdoc": "cpp/library/ranges/drop_while_view" + }, + { + "cppref": "cpp/ranges/bidirectional_range", + "cppdoc": "cpp/library/ranges/bidirectional_range" + }, + { + "cppref": "cpp/ranges/view_counted", + "cppdoc": "cpp/library/ranges/view_counted" + }, + { + "cppref": "cpp/ranges/cend", + "cppdoc": "cpp/library/ranges/cend" + }, + { + "cppref": "cpp/ranges/empty", + "cppdoc": "cpp/library/ranges/empty" + }, + { + "cppref": "cpp/ranges/values_view", + "cppdoc": "cpp/library/ranges/values_view" + }, + { + "cppref": "cpp/ranges/join_with_view", + "cppdoc": "cpp/library/ranges/join_with_view" + }, + { + "cppref": "cpp/ranges/slide_view", + "cppdoc": "cpp/library/ranges/slide_view" + }, + { + "cppref": "cpp/ranges/empty_view", + "cppdoc": "cpp/library/ranges/empty_view" + }, + { + "cppref": "cpp/ranges/range_adaptor_closure", + "cppdoc": "cpp/library/ranges/range_adaptor_closure" + }, + { + "cppref": "cpp/ranges/view", + "cppdoc": "cpp/library/ranges/view" + }, + { + "cppref": "cpp/ranges/size", + "cppdoc": "cpp/library/ranges/size" + }, + { + "cppref": "cpp/ranges/common_range", + "cppdoc": "cpp/library/ranges/common_range" + }, + { + "cppref": "cpp/ranges/adjacent_transform_view", + "cppdoc": "cpp/library/ranges/adjacent_transform_view" + }, + { + "cppref": "cpp/ranges/chunk_by_view", + "cppdoc": "cpp/library/ranges/chunk_by_view" + }, + { + "cppref": "cpp/ranges/to", + "cppdoc": "cpp/library/ranges/to" + }, + { + "cppref": "cpp/ranges/non-propagating-cache", + "cppdoc": "cpp/library/ranges/non-propagating-cache" + }, + { + "cppref": "cpp/ranges/drop_view", + "cppdoc": "cpp/library/ranges/drop_view" + }, + { + "cppref": "cpp/ranges/take_view", + "cppdoc": "cpp/library/ranges/take_view" + }, + { + "cppref": "cpp/ranges/end", + "cppdoc": "cpp/library/ranges/end" + }, + { + "cppref": "cpp/ranges/single_view", + "cppdoc": "cpp/library/ranges/single_view" + }, + { + "cppref": "cpp/ranges/crbegin", + "cppdoc": "cpp/library/ranges/crbegin" + }, + { + "cppref": "cpp/ranges/rend", + "cppdoc": "cpp/library/ranges/rend" + }, + { + "cppref": "cpp/ranges/subrange_kind", + "cppdoc": "cpp/library/ranges/subrange/../subrange_kind" + }, + { + "cppref": "cpp/ranges/begin", + "cppdoc": "cpp/library/ranges/begin" + }, + { + "cppref": "cpp/ranges/borrowed_range", + "cppdoc": "cpp/library/ranges/borrowed_range" + }, + { + "cppref": "cpp/ranges/cbegin", + "cppdoc": "cpp/library/ranges/cbegin" + }, + { + "cppref": "cpp/ranges/constant_range", + "cppdoc": "cpp/library/ranges/constant_range" + }, + { + "cppref": "cpp/ranges/forward_range", + "cppdoc": "cpp/library/ranges/forward_range" + }, + { + "cppref": "cpp/ranges/output_range", + "cppdoc": "cpp/library/ranges/output_range" + }, + { + "cppref": "cpp/ranges/iterator_t", + "cppdoc": "cpp/library/ranges/iterator_t" + }, + { + "cppref": "cpp/ranges/range", + "cppdoc": "cpp/library/ranges/range" + }, + { + "cppref": "cpp/ranges/as_const_view", + "cppdoc": "cpp/library/ranges/as_const_view" + }, + { + "cppref": "cpp/ranges/cpo", + "cppdoc": "cpp/library/standard_library/cpo" + }, + { + "cppref": "cpp/ranges/join_view", + "cppdoc": "cpp/library/ranges/join_view" + }, + { + "cppref": "cpp/ranges/rbegin", + "cppdoc": "cpp/library/ranges/rbegin" + }, + { + "cppref": "cpp/ranges/ssize", + "cppdoc": "cpp/library/ranges/ssize" + }, + { + "cppref": "cpp/ranges/counted_view", + "cppdoc": "cpp/library/ranges/counted_view" + }, + { + "cppref": "cpp/ranges/concat_view", + "cppdoc": "cpp/library/ranges/concat_view" + }, + { + "cppref": "cpp/ranges/elements_view", + "cppdoc": "cpp/library/ranges/elements_view" + }, + { + "cppref": "cpp/ranges/split_view", + "cppdoc": "cpp/library/ranges/split_view" + }, + { + "cppref": "cpp/ranges/view_interface", + "cppdoc": "cpp/library/ranges/view_interface" + }, + { + "cppref": "cpp/ranges/adjacent_view", + "cppdoc": "cpp/library/ranges/adjacent_view" + }, + { + "cppref": "cpp/ranges/cartesian_product_view", + "cppdoc": "cpp/library/ranges/cartesian_product_view" + }, + { + "cppref": "cpp/ranges/copyable_wrapper", + "cppdoc": "cpp/library/ranges/copyable_wrapper" + }, + { + "cppref": "cpp/ranges/enumerate_view", + "cppdoc": "cpp/library/ranges/enumerate_view" + }, + { + "cppref": "cpp/ranges/transform_view", + "cppdoc": "cpp/library/ranges/transform_view" + }, + { + "cppref": "cpp/ranges/input_range", + "cppdoc": "cpp/library/ranges/input_range" + }, + { + "cppref": "cpp/ranges/stride_view", + "cppdoc": "cpp/library/ranges/stride_view" + }, + { + "cppref": "cpp/ranges/crend", + "cppdoc": "cpp/library/ranges/crend" + }, + { + "cppref": "cpp/ranges/filter_view", + "cppdoc": "cpp/library/ranges/filter_view" + }, + { + "cppref": "cpp/ranges/repeat_view", + "cppdoc": "cpp/library/ranges/repeat_view" + }, + { + "cppref": "cpp/ranges/viewable_range", + "cppdoc": "cpp/library/ranges/viewable_range" + }, + { + "cppref": "cpp/ranges/zip_view", + "cppdoc": "cpp/library/ranges/zip_view" + }, + { + "cppref": "cpp/ranges/contiguous_range", + "cppdoc": "cpp/library/ranges/contiguous_range" + }, + { + "cppref": "cpp/ranges/all_view", + "cppdoc": "cpp/library/ranges/all_view" + }, + { + "cppref": "cpp/ranges/data", + "cppdoc": "cpp/library/ranges/data" + }, + { + "cppref": "cpp/ranges/reverse_view", + "cppdoc": "cpp/library/ranges/reverse_view" + }, + { + "cppref": "cpp/ranges/random_access_range", + "cppdoc": "cpp/library/ranges/random_access_range" + }, + { + "cppref": "cpp/ranges/elements_of", + "cppdoc": "cpp/library/ranges/elements_of" + }, + { + "cppref": "cpp/ranges/from_range", + "cppdoc": "cpp/library/ranges/from_range" + }, + { + "cppref": "cpp/ranges/iota_view", + "cppdoc": "cpp/library/ranges/iota_view" + }, + { + "cppref": "cpp/ranges/dangling", + "cppdoc": "cpp/library/ranges/dangling" + }, + { + "cppref": "cpp/ranges/zip_transform_view", + "cppdoc": "cpp/library/ranges/zip_transform_view" + }, + { + "cppref": "cpp/ranges/sized_range", + "cppdoc": "cpp/library/ranges/sized_range" + }, + { + "cppref": "cpp/ranges/take_while_view", + "cppdoc": "cpp/library/ranges/take_while_view" + }, + { + "cppref": "cpp/ranges/owning_view", + "cppdoc": "cpp/library/ranges/owning_view" + }, + { + "cppref": "cpp/ranges/as_rvalue_view", + "cppdoc": "cpp/library/ranges/as_rvalue_view" + }, + { + "cppref": "cpp/ranges/borrowed_iterator_t", + "cppdoc": "cpp/library/ranges/borrowed_iterator_t" + }, + { + "cppref": "cpp/ranges/basic_istream_view", + "cppdoc": "cpp/library/ranges/basic_istream_view" + }, + { + "cppref": "cpp/ranges/take_view/sentinel", + "cppdoc": "cpp/library/ranges/take_view/sentinel" + }, + { + "cppref": "cpp/ranges/take_view/size", + "cppdoc": "cpp/library/ranges/take_view/size" + }, + { + "cppref": "cpp/ranges/take_view/take_view", + "cppdoc": "cpp/library/ranges/take_view/take_view" + }, + { + "cppref": "cpp/ranges/take_view/end", + "cppdoc": "cpp/library/ranges/take_view/end" + }, + { + "cppref": "cpp/ranges/take_view/begin", + "cppdoc": "cpp/library/ranges/take_view/begin" + }, + { + "cppref": "cpp/ranges/take_view/deduction_guides", + "cppdoc": "cpp/library/ranges/take_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/take_view/base", + "cppdoc": "cpp/library/ranges/take_view/base" + }, + { + "cppref": "cpp/ranges/take_view/sentinel/sentinel", + "cppdoc": "cpp/library/ranges/take_view/sentinel/sentinel" + }, + { + "cppref": "cpp/ranges/take_view/sentinel/operator_cmp", + "cppdoc": "cpp/library/ranges/take_view/sentinel/operator_cmp" + }, + { + "cppref": "cpp/ranges/take_view/sentinel/base", + "cppdoc": "cpp/library/ranges/take_view/sentinel/base" + }, + { + "cppref": "cpp/ranges/zip_view/sentinel", + "cppdoc": "cpp/library/ranges/zip_view/sentinel" + }, + { + "cppref": "cpp/ranges/zip_view/size", + "cppdoc": "cpp/library/ranges/zip_view/size" + }, + { + "cppref": "cpp/ranges/zip_view/end", + "cppdoc": "cpp/library/ranges/zip_view/end" + }, + { + "cppref": "cpp/ranges/zip_view/begin", + "cppdoc": "cpp/library/ranges/zip_view/begin" + }, + { + "cppref": "cpp/ranges/zip_view/deduction_guides", + "cppdoc": "cpp/library/ranges/zip_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/zip_view/iterator", + "cppdoc": "cpp/library/ranges/zip_view/iterator" + }, + { + "cppref": "cpp/ranges/zip_view/zip_view", + "cppdoc": "cpp/library/ranges/zip_view/zip_view" + }, + { + "cppref": "cpp/ranges/zip_view/sentinel/sentinel", + "cppdoc": "cpp/library/ranges/zip_view/sentinel/sentinel" + }, + { + "cppref": "cpp/ranges/zip_view/sentinel/operator_cmp", + "cppdoc": "cpp/library/ranges/zip_view/sentinel/operator_cmp" + }, + { + "cppref": "cpp/ranges/zip_view/sentinel/operator-", + "cppdoc": "cpp/library/ranges/zip_view/sentinel/operator-" + }, + { + "cppref": "cpp/ranges/zip_view/iterator/operator_at", + "cppdoc": "cpp/library/ranges/zip_view/iterator/operator_at" + }, + { + "cppref": "cpp/ranges/zip_view/iterator/iter_move", + "cppdoc": "cpp/library/ranges/zip_view/iterator/iter_move" + }, + { + "cppref": "cpp/ranges/zip_view/iterator/operator_arith", + "cppdoc": "cpp/library/ranges/zip_view/iterator/operator_arith" + }, + { + "cppref": "cpp/ranges/zip_view/iterator/iterator", + "cppdoc": "cpp/library/ranges/zip_view/iterator/iterator" + }, + { + "cppref": "cpp/ranges/zip_view/iterator/operator_star_", + "cppdoc": "cpp/library/ranges/zip_view/iterator/operator_star_" + }, + { + "cppref": "cpp/ranges/zip_view/iterator/operator_cmp", + "cppdoc": "cpp/library/ranges/zip_view/iterator/operator_cmp" + }, + { + "cppref": "cpp/ranges/zip_view/iterator/iter_swap", + "cppdoc": "cpp/library/ranges/zip_view/iterator/iter_swap" + }, + { + "cppref": "cpp/ranges/zip_view/iterator/operator_arith2", + "cppdoc": "cpp/library/ranges/zip_view/iterator/operator_arith2" + }, + { + "cppref": "cpp/ranges/elements_view/sentinel", + "cppdoc": "cpp/library/ranges/elements_view/sentinel" + }, + { + "cppref": "cpp/ranges/elements_view/size", + "cppdoc": "cpp/library/ranges/elements_view/size" + }, + { + "cppref": "cpp/ranges/elements_view/end", + "cppdoc": "cpp/library/ranges/elements_view/end" + }, + { + "cppref": "cpp/ranges/elements_view/begin", + "cppdoc": "cpp/library/ranges/elements_view/begin" + }, + { + "cppref": "cpp/ranges/elements_view/iterator", + "cppdoc": "cpp/library/ranges/elements_view/iterator" + }, + { + "cppref": "cpp/ranges/elements_view/elements_view", + "cppdoc": "cpp/library/ranges/elements_view/elements_view" + }, + { + "cppref": "cpp/ranges/elements_view/base", + "cppdoc": "cpp/library/ranges/elements_view/base" + }, + { + "cppref": "cpp/ranges/elements_view/sentinel/sentinel", + "cppdoc": "cpp/library/ranges/elements_view/sentinel/sentinel" + }, + { + "cppref": "cpp/ranges/elements_view/sentinel/operator_cmp", + "cppdoc": "cpp/library/ranges/elements_view/sentinel/operator_cmp" + }, + { + "cppref": "cpp/ranges/elements_view/sentinel/operator-", + "cppdoc": "cpp/library/ranges/elements_view/sentinel/operator-" + }, + { + "cppref": "cpp/ranges/elements_view/sentinel/base", + "cppdoc": "cpp/library/ranges/elements_view/sentinel/base" + }, + { + "cppref": "cpp/ranges/elements_view/iterator/operator_at", + "cppdoc": "cpp/library/ranges/elements_view/iterator/operator_at" + }, + { + "cppref": "cpp/ranges/elements_view/iterator/operator_arith", + "cppdoc": "cpp/library/ranges/elements_view/iterator/operator_arith" + }, + { + "cppref": "cpp/ranges/elements_view/iterator/iterator", + "cppdoc": "cpp/library/ranges/elements_view/iterator/iterator" + }, + { + "cppref": "cpp/ranges/elements_view/iterator/operator_star_", + "cppdoc": "cpp/library/ranges/elements_view/iterator/operator_star_" + }, + { + "cppref": "cpp/ranges/elements_view/iterator/operator_cmp", + "cppdoc": "cpp/library/ranges/elements_view/iterator/operator_cmp" + }, + { + "cppref": "cpp/ranges/elements_view/iterator/operator_arith2", + "cppdoc": "cpp/library/ranges/elements_view/iterator/operator_arith2" + }, + { + "cppref": "cpp/ranges/elements_view/iterator/base", + "cppdoc": "cpp/library/ranges/elements_view/iterator/base" + }, + { + "cppref": "cpp/ranges/basic_istream_view/iterator", + "cppdoc": "cpp/library/ranges/basic_istream_view/iterator" + }, + { + "cppref": "cpp/ranges/adjacent_view/sentinel", + "cppdoc": "cpp/library/ranges/adjacent_view/sentinel" + }, + { + "cppref": "cpp/ranges/adjacent_view/size", + "cppdoc": "cpp/library/ranges/adjacent_view/size" + }, + { + "cppref": "cpp/ranges/adjacent_view/end", + "cppdoc": "cpp/library/ranges/adjacent_view/end" + }, + { + "cppref": "cpp/ranges/adjacent_view/begin", + "cppdoc": "cpp/library/ranges/adjacent_view/begin" + }, + { + "cppref": "cpp/ranges/adjacent_view/iterator", + "cppdoc": "cpp/library/ranges/adjacent_view/iterator" + }, + { + "cppref": "cpp/ranges/adjacent_view/adjacent_view", + "cppdoc": "cpp/library/ranges/adjacent_view/adjacent_view" + }, + { + "cppref": "cpp/ranges/adjacent_view/sentinel/sentinel", + "cppdoc": "cpp/library/ranges/adjacent_view/sentinel/sentinel" + }, + { + "cppref": "cpp/ranges/adjacent_view/sentinel/operator_cmp", + "cppdoc": "cpp/library/ranges/adjacent_view/sentinel/operator_cmp" + }, + { + "cppref": "cpp/ranges/adjacent_view/sentinel/operator-", + "cppdoc": "cpp/library/ranges/adjacent_view/sentinel/operator-" + }, + { + "cppref": "cpp/ranges/adjacent_view/iterator/operator_at", + "cppdoc": "cpp/library/ranges/adjacent_view/iterator/operator_at" + }, + { + "cppref": "cpp/ranges/adjacent_view/iterator/iter_move", + "cppdoc": "cpp/library/ranges/adjacent_view/iterator/iter_move" + }, + { + "cppref": "cpp/ranges/adjacent_view/iterator/operator_arith", + "cppdoc": "cpp/library/ranges/adjacent_view/iterator/operator_arith" + }, + { + "cppref": "cpp/ranges/adjacent_view/iterator/iterator", + "cppdoc": "cpp/library/ranges/adjacent_view/iterator/iterator" + }, + { + "cppref": "cpp/ranges/adjacent_view/iterator/operator_star_", + "cppdoc": "cpp/library/ranges/adjacent_view/iterator/operator_star_" + }, + { + "cppref": "cpp/ranges/adjacent_view/iterator/operator_cmp", + "cppdoc": "cpp/library/ranges/adjacent_view/iterator/operator_cmp" + }, + { + "cppref": "cpp/ranges/adjacent_view/iterator/iter_swap", + "cppdoc": "cpp/library/ranges/adjacent_view/iterator/iter_swap" + }, + { + "cppref": "cpp/ranges/adjacent_view/iterator/operator_arith2", + "cppdoc": "cpp/library/ranges/adjacent_view/iterator/operator_arith2" + }, + { + "cppref": "cpp/ranges/join_view/sentinel", + "cppdoc": "cpp/library/ranges/join_view/sentinel" + }, + { + "cppref": "cpp/ranges/join_view/end", + "cppdoc": "cpp/library/ranges/join_view/end" + }, + { + "cppref": "cpp/ranges/join_view/begin", + "cppdoc": "cpp/library/ranges/join_view/begin" + }, + { + "cppref": "cpp/ranges/join_view/deduction_guides", + "cppdoc": "cpp/library/ranges/join_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/join_view/join_view", + "cppdoc": "cpp/library/ranges/join_view/join_view" + }, + { + "cppref": "cpp/ranges/join_view/iterator", + "cppdoc": "cpp/library/ranges/join_view/iterator" + }, + { + "cppref": "cpp/ranges/join_view/base", + "cppdoc": "cpp/library/ranges/join_view/base" + }, + { + "cppref": "cpp/ranges/join_view/sentinel/sentinel", + "cppdoc": "cpp/library/ranges/join_view/sentinel/sentinel" + }, + { + "cppref": "cpp/ranges/join_view/sentinel/operator_cmp", + "cppdoc": "cpp/library/ranges/join_view/sentinel/operator_cmp" + }, + { + "cppref": "cpp/ranges/join_view/iterator/satisfy", + "cppdoc": "cpp/library/ranges/join_view/iterator/satisfy" + }, + { + "cppref": "cpp/ranges/join_view/iterator/iter_move", + "cppdoc": "cpp/library/ranges/join_view/iterator/iter_move" + }, + { + "cppref": "cpp/ranges/join_view/iterator/operator_arith", + "cppdoc": "cpp/library/ranges/join_view/iterator/operator_arith" + }, + { + "cppref": "cpp/ranges/join_view/iterator/iterator", + "cppdoc": "cpp/library/ranges/join_view/iterator/iterator" + }, + { + "cppref": "cpp/ranges/join_view/iterator/operator_star_", + "cppdoc": "cpp/library/ranges/join_view/iterator/operator_star_" + }, + { + "cppref": "cpp/ranges/join_view/iterator/operator_cmp", + "cppdoc": "cpp/library/ranges/join_view/iterator/operator_cmp" + }, + { + "cppref": "cpp/ranges/join_view/iterator/iter_swap", + "cppdoc": "cpp/library/ranges/join_view/iterator/iter_swap" + }, + { + "cppref": "cpp/ranges/slide_view/sentinel", + "cppdoc": "cpp/library/ranges/slide_view/sentinel" + }, + { + "cppref": "cpp/ranges/slide_view/slide_view", + "cppdoc": "cpp/library/ranges/slide_view/slide_view" + }, + { + "cppref": "cpp/ranges/slide_view/size", + "cppdoc": "cpp/library/ranges/slide_view/size" + }, + { + "cppref": "cpp/ranges/slide_view/end", + "cppdoc": "cpp/library/ranges/slide_view/end" + }, + { + "cppref": "cpp/ranges/slide_view/begin", + "cppdoc": "cpp/library/ranges/slide_view/begin" + }, + { + "cppref": "cpp/ranges/slide_view/deduction_guides", + "cppdoc": "cpp/library/ranges/slide_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/slide_view/iterator", + "cppdoc": "cpp/library/ranges/slide_view/iterator" + }, + { + "cppref": "cpp/ranges/slide_view/sentinel/sentinel", + "cppdoc": "cpp/library/ranges/slide_view/sentinel/sentinel" + }, + { + "cppref": "cpp/ranges/slide_view/sentinel/operator_cmp", + "cppdoc": "cpp/library/ranges/slide_view/sentinel/operator_cmp" + }, + { + "cppref": "cpp/ranges/slide_view/sentinel/operator-", + "cppdoc": "cpp/library/ranges/slide_view/sentinel/operator-" + }, + { + "cppref": "cpp/ranges/slide_view/iterator/operator_at", + "cppdoc": "cpp/library/ranges/slide_view/iterator/operator_at" + }, + { + "cppref": "cpp/ranges/slide_view/iterator/operator_arith", + "cppdoc": "cpp/library/ranges/slide_view/iterator/operator_arith" + }, + { + "cppref": "cpp/ranges/slide_view/iterator/iterator", + "cppdoc": "cpp/library/ranges/slide_view/iterator/iterator" + }, + { + "cppref": "cpp/ranges/slide_view/iterator/operator_star_", + "cppdoc": "cpp/library/ranges/slide_view/iterator/operator_star_" + }, + { + "cppref": "cpp/ranges/slide_view/iterator/operator_cmp", + "cppdoc": "cpp/library/ranges/slide_view/iterator/operator_cmp" + }, + { + "cppref": "cpp/ranges/slide_view/iterator/operator_arith2", + "cppdoc": "cpp/library/ranges/slide_view/iterator/operator_arith2" + }, + { + "cppref": "cpp/ranges/adjacent_transform_view/sentinel", + "cppdoc": "cpp/library/ranges/adjacent_transform_view/sentinel" + }, + { + "cppref": "cpp/ranges/adjacent_transform_view/size", + "cppdoc": "cpp/library/ranges/adjacent_transform_view/size" + }, + { + "cppref": "cpp/ranges/adjacent_transform_view/adjacent_transform_view", + "cppdoc": "cpp/library/ranges/adjacent_transform_view/adjacent_transform_view" + }, + { + "cppref": "cpp/ranges/adjacent_transform_view/end", + "cppdoc": "cpp/library/ranges/adjacent_transform_view/end" + }, + { + "cppref": "cpp/ranges/adjacent_transform_view/begin", + "cppdoc": "cpp/library/ranges/adjacent_transform_view/begin" + }, + { + "cppref": "cpp/ranges/adjacent_transform_view/iterator", + "cppdoc": "cpp/library/ranges/adjacent_transform_view/iterator" + }, + { + "cppref": "cpp/ranges/adjacent_transform_view/sentinel/sentinel", + "cppdoc": "cpp/library/ranges/adjacent_transform_view/sentinel/sentinel" + }, + { + "cppref": "cpp/ranges/adjacent_transform_view/sentinel/operator_cmp", + "cppdoc": "cpp/library/ranges/adjacent_transform_view/sentinel/operator_cmp" + }, + { + "cppref": "cpp/ranges/adjacent_transform_view/sentinel/operator-", + "cppdoc": "cpp/library/ranges/adjacent_transform_view/sentinel/operator-" + }, + { + "cppref": "cpp/ranges/adjacent_transform_view/iterator/operator_at", + "cppdoc": "cpp/library/ranges/adjacent_transform_view/iterator/operator_at" + }, + { + "cppref": "cpp/ranges/adjacent_transform_view/iterator/operator_arith", + "cppdoc": "cpp/library/ranges/adjacent_transform_view/iterator/operator_arith" + }, + { + "cppref": "cpp/ranges/adjacent_transform_view/iterator/iterator", + "cppdoc": "cpp/library/ranges/adjacent_transform_view/iterator/iterator" + }, + { + "cppref": "cpp/ranges/adjacent_transform_view/iterator/operator_star_", + "cppdoc": "cpp/library/ranges/adjacent_transform_view/iterator/operator_star_" + }, + { + "cppref": "cpp/ranges/adjacent_transform_view/iterator/operator_cmp", + "cppdoc": "cpp/library/ranges/adjacent_transform_view/iterator/operator_cmp" + }, + { + "cppref": "cpp/ranges/adjacent_transform_view/iterator/operator_arith2", + "cppdoc": "cpp/library/ranges/adjacent_transform_view/iterator/operator_arith2" + }, + { + "cppref": "cpp/ranges/cartesian_product_view/size", + "cppdoc": "cpp/library/ranges/cartesian_product_view/size" + }, + { + "cppref": "cpp/ranges/cartesian_product_view/end", + "cppdoc": "cpp/library/ranges/cartesian_product_view/end" + }, + { + "cppref": "cpp/ranges/cartesian_product_view/begin", + "cppdoc": "cpp/library/ranges/cartesian_product_view/begin" + }, + { + "cppref": "cpp/ranges/cartesian_product_view/deduction_guides", + "cppdoc": "cpp/library/ranges/cartesian_product_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/cartesian_product_view/iterator", + "cppdoc": "cpp/library/ranges/cartesian_product_view/iterator" + }, + { + "cppref": "cpp/ranges/cartesian_product_view/cartesian_product_view", + "cppdoc": "cpp/library/ranges/cartesian_product_view/cartesian_product_view" + }, + { + "cppref": "cpp/ranges/cartesian_product_view/iterator/operator_at", + "cppdoc": "cpp/library/ranges/cartesian_product_view/iterator/operator_at" + }, + { + "cppref": "cpp/ranges/cartesian_product_view/iterator/helpers", + "cppdoc": "cpp/library/ranges/cartesian_product_view/iterator/helpers" + }, + { + "cppref": "cpp/ranges/cartesian_product_view/iterator/iter_move", + "cppdoc": "cpp/library/ranges/cartesian_product_view/iterator/iter_move" + }, + { + "cppref": "cpp/ranges/cartesian_product_view/iterator/operator_arith", + "cppdoc": "cpp/library/ranges/cartesian_product_view/iterator/operator_arith" + }, + { + "cppref": "cpp/ranges/cartesian_product_view/iterator/iterator", + "cppdoc": "cpp/library/ranges/cartesian_product_view/iterator/iterator" + }, + { + "cppref": "cpp/ranges/cartesian_product_view/iterator/operator_star_", + "cppdoc": "cpp/library/ranges/cartesian_product_view/iterator/operator_star_" + }, + { + "cppref": "cpp/ranges/cartesian_product_view/iterator/operator_cmp", + "cppdoc": "cpp/library/ranges/cartesian_product_view/iterator/operator_cmp" + }, + { + "cppref": "cpp/ranges/cartesian_product_view/iterator/iter_swap", + "cppdoc": "cpp/library/ranges/cartesian_product_view/iterator/iter_swap" + }, + { + "cppref": "cpp/ranges/cartesian_product_view/iterator/operator_arith2", + "cppdoc": "cpp/library/ranges/cartesian_product_view/iterator/operator_arith2" + }, + { + "cppref": "cpp/ranges/concat_view/size", + "cppdoc": "cpp/library/ranges/concat_view/size" + }, + { + "cppref": "cpp/ranges/concat_view/end", + "cppdoc": "cpp/library/ranges/concat_view/end" + }, + { + "cppref": "cpp/ranges/concat_view/begin", + "cppdoc": "cpp/library/ranges/concat_view/begin" + }, + { + "cppref": "cpp/ranges/concat_view/deduction_guides", + "cppdoc": "cpp/library/ranges/concat_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/concat_view/iterator", + "cppdoc": "cpp/library/ranges/concat_view/iterator" + }, + { + "cppref": "cpp/ranges/concat_view/concat_view", + "cppdoc": "cpp/library/ranges/concat_view/concat_view" + }, + { + "cppref": "cpp/ranges/concat_view/iterator/operator_at", + "cppdoc": "cpp/library/ranges/concat_view/iterator/operator_at" + }, + { + "cppref": "cpp/ranges/concat_view/iterator/helpers", + "cppdoc": "cpp/library/ranges/concat_view/iterator/helpers" + }, + { + "cppref": "cpp/ranges/concat_view/iterator/iter_move", + "cppdoc": "cpp/library/ranges/concat_view/iterator/iter_move" + }, + { + "cppref": "cpp/ranges/concat_view/iterator/operator_arith", + "cppdoc": "cpp/library/ranges/concat_view/iterator/operator_arith" + }, + { + "cppref": "cpp/ranges/concat_view/iterator/iterator", + "cppdoc": "cpp/library/ranges/concat_view/iterator/iterator" + }, + { + "cppref": "cpp/ranges/concat_view/iterator/operator_star_", + "cppdoc": "cpp/library/ranges/concat_view/iterator/operator_star_" + }, + { + "cppref": "cpp/ranges/concat_view/iterator/operator_cmp", + "cppdoc": "cpp/library/ranges/concat_view/iterator/operator_cmp" + }, + { + "cppref": "cpp/ranges/concat_view/iterator/iter_swap", + "cppdoc": "cpp/library/ranges/concat_view/iterator/iter_swap" + }, + { + "cppref": "cpp/ranges/concat_view/iterator/operator_arith2", + "cppdoc": "cpp/library/ranges/concat_view/iterator/operator_arith2" + }, + { + "cppref": "cpp/ranges/subrange/subrange", + "cppdoc": "cpp/library/ranges/subrange/subrange" + }, + { + "cppref": "cpp/ranges/subrange/prev", + "cppdoc": "cpp/library/ranges/subrange/prev" + }, + { + "cppref": "cpp/ranges/subrange/next", + "cppdoc": "cpp/library/ranges/subrange/next" + }, + { + "cppref": "cpp/ranges/subrange/empty", + "cppdoc": "cpp/library/ranges/subrange/empty" + }, + { + "cppref": "cpp/ranges/subrange/size", + "cppdoc": "cpp/library/ranges/subrange/size" + }, + { + "cppref": "cpp/ranges/subrange/end", + "cppdoc": "cpp/library/ranges/subrange/end" + }, + { + "cppref": "cpp/ranges/subrange/begin", + "cppdoc": "cpp/library/ranges/subrange/begin" + }, + { + "cppref": "cpp/ranges/subrange/deduction_guides", + "cppdoc": "cpp/library/ranges/subrange/deduction_guides" + }, + { + "cppref": "cpp/ranges/subrange/tuple_size", + "cppdoc": "cpp/library/ranges/subrange/tuple_size" + }, + { + "cppref": "cpp/ranges/subrange/get", + "cppdoc": "cpp/library/ranges/subrange/get" + }, + { + "cppref": "cpp/ranges/subrange/operator_PairLike", + "cppdoc": "cpp/library/ranges/subrange/operator_PairLike" + }, + { + "cppref": "cpp/ranges/subrange/tuple_element", + "cppdoc": "cpp/library/ranges/subrange/tuple_element" + }, + { + "cppref": "cpp/ranges/subrange/advance", + "cppdoc": "cpp/library/ranges/subrange/advance" + }, + { + "cppref": "cpp/ranges/transform_view/sentinel", + "cppdoc": "cpp/library/ranges/transform_view/sentinel" + }, + { + "cppref": "cpp/ranges/transform_view/size", + "cppdoc": "cpp/library/ranges/transform_view/size" + }, + { + "cppref": "cpp/ranges/transform_view/end", + "cppdoc": "cpp/library/ranges/transform_view/end" + }, + { + "cppref": "cpp/ranges/transform_view/begin", + "cppdoc": "cpp/library/ranges/transform_view/begin" + }, + { + "cppref": "cpp/ranges/transform_view/deduction_guides", + "cppdoc": "cpp/library/ranges/transform_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/transform_view/iterator", + "cppdoc": "cpp/library/ranges/transform_view/iterator" + }, + { + "cppref": "cpp/ranges/transform_view/transform_view", + "cppdoc": "cpp/library/ranges/transform_view/transform_view" + }, + { + "cppref": "cpp/ranges/transform_view/base", + "cppdoc": "cpp/library/ranges/transform_view/base" + }, + { + "cppref": "cpp/ranges/transform_view/sentinel/sentinel", + "cppdoc": "cpp/library/ranges/transform_view/sentinel/sentinel" + }, + { + "cppref": "cpp/ranges/transform_view/sentinel/operator_cmp", + "cppdoc": "cpp/library/ranges/transform_view/sentinel/operator_cmp" + }, + { + "cppref": "cpp/ranges/transform_view/sentinel/operator-", + "cppdoc": "cpp/library/ranges/transform_view/sentinel/operator-" + }, + { + "cppref": "cpp/ranges/transform_view/sentinel/base", + "cppdoc": "cpp/library/ranges/transform_view/sentinel/base" + }, + { + "cppref": "cpp/ranges/transform_view/iterator/operator_at", + "cppdoc": "cpp/library/ranges/transform_view/iterator/operator_at" + }, + { + "cppref": "cpp/ranges/transform_view/iterator/iter_move", + "cppdoc": "cpp/library/ranges/transform_view/iterator/iter_move" + }, + { + "cppref": "cpp/ranges/transform_view/iterator/operator_arith", + "cppdoc": "cpp/library/ranges/transform_view/iterator/operator_arith" + }, + { + "cppref": "cpp/ranges/transform_view/iterator/iterator", + "cppdoc": "cpp/library/ranges/transform_view/iterator/iterator" + }, + { + "cppref": "cpp/ranges/transform_view/iterator/operator_star_", + "cppdoc": "cpp/library/ranges/transform_view/iterator/operator_star_" + }, + { + "cppref": "cpp/ranges/transform_view/iterator/operator_cmp", + "cppdoc": "cpp/library/ranges/transform_view/iterator/operator_cmp" + }, + { + "cppref": "cpp/ranges/transform_view/iterator/operator_arith2", + "cppdoc": "cpp/library/ranges/transform_view/iterator/operator_arith2" + }, + { + "cppref": "cpp/ranges/transform_view/iterator/base", + "cppdoc": "cpp/library/ranges/transform_view/iterator/base" + }, + { + "cppref": "cpp/ranges/drop_view/size", + "cppdoc": "cpp/library/ranges/drop_view/size" + }, + { + "cppref": "cpp/ranges/drop_view/drop_view", + "cppdoc": "cpp/library/ranges/drop_view/drop_view" + }, + { + "cppref": "cpp/ranges/drop_view/end", + "cppdoc": "cpp/library/ranges/drop_view/end" + }, + { + "cppref": "cpp/ranges/drop_view/begin", + "cppdoc": "cpp/library/ranges/drop_view/begin" + }, + { + "cppref": "cpp/ranges/drop_view/deduction_guides", + "cppdoc": "cpp/library/ranges/drop_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/drop_view/base", + "cppdoc": "cpp/library/ranges/drop_view/base" + }, + { + "cppref": "cpp/ranges/drop_while_view/drop_while_view", + "cppdoc": "cpp/library/ranges/drop_while_view/drop_while_view" + }, + { + "cppref": "cpp/ranges/drop_while_view/end", + "cppdoc": "cpp/library/ranges/drop_while_view/end" + }, + { + "cppref": "cpp/ranges/drop_while_view/begin", + "cppdoc": "cpp/library/ranges/drop_while_view/begin" + }, + { + "cppref": "cpp/ranges/drop_while_view/deduction_guides", + "cppdoc": "cpp/library/ranges/drop_while_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/drop_while_view/pred", + "cppdoc": "cpp/library/ranges/drop_while_view/pred" + }, + { + "cppref": "cpp/ranges/drop_while_view/base", + "cppdoc": "cpp/library/ranges/drop_while_view/base" + }, + { + "cppref": "cpp/ranges/chunk_view/chunk_view", + "cppdoc": "cpp/library/ranges/chunk_view/chunk_view" + }, + { + "cppref": "cpp/ranges/chunk_view/size", + "cppdoc": "cpp/library/ranges/chunk_view/size" + }, + { + "cppref": "cpp/ranges/chunk_view/inner_iterator", + "cppdoc": "cpp/library/ranges/chunk_view/inner_iterator" + }, + { + "cppref": "cpp/ranges/chunk_view/end", + "cppdoc": "cpp/library/ranges/chunk_view/end" + }, + { + "cppref": "cpp/ranges/chunk_view/begin", + "cppdoc": "cpp/library/ranges/chunk_view/begin" + }, + { + "cppref": "cpp/ranges/chunk_view/deduction_guides", + "cppdoc": "cpp/library/ranges/chunk_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/chunk_view/iterator", + "cppdoc": "cpp/library/ranges/chunk_view/iterator" + }, + { + "cppref": "cpp/ranges/chunk_view/outer_iterator", + "cppdoc": "cpp/library/ranges/chunk_view/outer_iterator" + }, + { + "cppref": "cpp/ranges/chunk_view/base", + "cppdoc": "cpp/library/ranges/chunk_view/base" + }, + { + "cppref": "cpp/ranges/chunk_view/outer_iterator/value_type", + "cppdoc": "cpp/library/ranges/chunk_view/outer_iterator/value_type" + }, + { + "cppref": "cpp/ranges/chunk_view/outer_iterator/operator_star_", + "cppdoc": "cpp/library/ranges/chunk_view/outer_iterator/operator_star_" + }, + { + "cppref": "cpp/ranges/chunk_view/outer_iterator/operator_cmp", + "cppdoc": "cpp/library/ranges/chunk_view/outer_iterator/operator_cmp" + }, + { + "cppref": "cpp/ranges/chunk_view/outer_iterator/outer_iterator", + "cppdoc": "cpp/library/ranges/chunk_view/outer_iterator/outer_iterator" + }, + { + "cppref": "cpp/ranges/chunk_view/outer_iterator/operator-", + "cppdoc": "cpp/library/ranges/chunk_view/outer_iterator/operator-" + }, + { + "cppref": "cpp/ranges/chunk_view/outer_iterator/operator=", + "cppdoc": "cpp/library/ranges/chunk_view/outer_iterator/operator=" + }, + { + "cppref": "cpp/ranges/chunk_view/outer_iterator/operator_inc", + "cppdoc": "cpp/library/ranges/chunk_view/outer_iterator/operator_inc" + }, + { + "cppref": "cpp/ranges/chunk_view/iterator/operator_at", + "cppdoc": "cpp/library/ranges/chunk_view/iterator/operator_at" + }, + { + "cppref": "cpp/ranges/chunk_view/iterator/operator_arith", + "cppdoc": "cpp/library/ranges/chunk_view/iterator/operator_arith" + }, + { + "cppref": "cpp/ranges/chunk_view/iterator/iterator", + "cppdoc": "cpp/library/ranges/chunk_view/iterator/iterator" + }, + { + "cppref": "cpp/ranges/chunk_view/iterator/operator_star_", + "cppdoc": "cpp/library/ranges/chunk_view/iterator/operator_star_" + }, + { + "cppref": "cpp/ranges/chunk_view/iterator/operator_cmp", + "cppdoc": "cpp/library/ranges/chunk_view/iterator/operator_cmp" + }, + { + "cppref": "cpp/ranges/chunk_view/iterator/operator_arith2", + "cppdoc": "cpp/library/ranges/chunk_view/iterator/operator_arith2" + }, + { + "cppref": "cpp/ranges/chunk_view/iterator/base", + "cppdoc": "cpp/library/ranges/chunk_view/iterator/base" + }, + { + "cppref": "cpp/ranges/chunk_view/inner_iterator/inner_iterator", + "cppdoc": "cpp/library/ranges/chunk_view/inner_iterator/inner_iterator" + }, + { + "cppref": "cpp/ranges/chunk_view/inner_iterator/iter_move", + "cppdoc": "cpp/library/ranges/chunk_view/inner_iterator/iter_move" + }, + { + "cppref": "cpp/ranges/chunk_view/inner_iterator/operator_star_", + "cppdoc": "cpp/library/ranges/chunk_view/inner_iterator/operator_star_" + }, + { + "cppref": "cpp/ranges/chunk_view/inner_iterator/operator_cmp", + "cppdoc": "cpp/library/ranges/chunk_view/inner_iterator/operator_cmp" + }, + { + "cppref": "cpp/ranges/chunk_view/inner_iterator/iter_swap", + "cppdoc": "cpp/library/ranges/chunk_view/inner_iterator/iter_swap" + }, + { + "cppref": "cpp/ranges/chunk_view/inner_iterator/operator-", + "cppdoc": "cpp/library/ranges/chunk_view/inner_iterator/operator-" + }, + { + "cppref": "cpp/ranges/chunk_view/inner_iterator/operator=", + "cppdoc": "cpp/library/ranges/chunk_view/inner_iterator/operator=" + }, + { + "cppref": "cpp/ranges/chunk_view/inner_iterator/base", + "cppdoc": "cpp/library/ranges/chunk_view/inner_iterator/base" + }, + { + "cppref": "cpp/ranges/chunk_view/inner_iterator/operator_inc", + "cppdoc": "cpp/library/ranges/chunk_view/inner_iterator/operator_inc" + }, + { + "cppref": "cpp/ranges/view_interface/operator_at", + "cppdoc": "cpp/library/ranges/view_interface/operator_at" + }, + { + "cppref": "cpp/ranges/view_interface/back", + "cppdoc": "cpp/library/ranges/view_interface/back" + }, + { + "cppref": "cpp/ranges/view_interface/cend", + "cppdoc": "cpp/library/ranges/view_interface/cend" + }, + { + "cppref": "cpp/ranges/view_interface/empty", + "cppdoc": "cpp/library/ranges/view_interface/empty" + }, + { + "cppref": "cpp/ranges/view_interface/size", + "cppdoc": "cpp/library/ranges/view_interface/size" + }, + { + "cppref": "cpp/ranges/view_interface/cbegin", + "cppdoc": "cpp/library/ranges/view_interface/cbegin" + }, + { + "cppref": "cpp/ranges/view_interface/front", + "cppdoc": "cpp/library/ranges/view_interface/front" + }, + { + "cppref": "cpp/ranges/view_interface/operator_bool", + "cppdoc": "cpp/library/ranges/view_interface/operator_bool" + }, + { + "cppref": "cpp/ranges/view_interface/data", + "cppdoc": "cpp/library/ranges/view_interface/data" + }, + { + "cppref": "cpp/ranges/join_with_view/sentinel", + "cppdoc": "cpp/library/ranges/join_with_view/sentinel" + }, + { + "cppref": "cpp/ranges/join_with_view/join_with_view", + "cppdoc": "cpp/library/ranges/join_with_view/join_with_view" + }, + { + "cppref": "cpp/ranges/join_with_view/end", + "cppdoc": "cpp/library/ranges/join_with_view/end" + }, + { + "cppref": "cpp/ranges/join_with_view/begin", + "cppdoc": "cpp/library/ranges/join_with_view/begin" + }, + { + "cppref": "cpp/ranges/join_with_view/deduction_guides", + "cppdoc": "cpp/library/ranges/join_with_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/join_with_view/iterator", + "cppdoc": "cpp/library/ranges/join_with_view/iterator" + }, + { + "cppref": "cpp/ranges/join_with_view/base", + "cppdoc": "cpp/library/ranges/join_with_view/base" + }, + { + "cppref": "cpp/ranges/join_with_view/sentinel/sentinel", + "cppdoc": "cpp/library/ranges/join_with_view/sentinel/sentinel" + }, + { + "cppref": "cpp/ranges/join_with_view/sentinel/operator_cmp", + "cppdoc": "cpp/library/ranges/join_with_view/sentinel/operator_cmp" + }, + { + "cppref": "cpp/ranges/join_with_view/iterator/iter_move", + "cppdoc": "cpp/library/ranges/join_with_view/iterator/iter_move" + }, + { + "cppref": "cpp/ranges/join_with_view/iterator/operator_arith", + "cppdoc": "cpp/library/ranges/join_with_view/iterator/operator_arith" + }, + { + "cppref": "cpp/ranges/join_with_view/iterator/iterator", + "cppdoc": "cpp/library/ranges/join_with_view/iterator/iterator" + }, + { + "cppref": "cpp/ranges/join_with_view/iterator/operator_star_", + "cppdoc": "cpp/library/ranges/join_with_view/iterator/operator_star_" + }, + { + "cppref": "cpp/ranges/join_with_view/iterator/operator_cmp", + "cppdoc": "cpp/library/ranges/join_with_view/iterator/operator_cmp" + }, + { + "cppref": "cpp/ranges/join_with_view/iterator/iter_swap", + "cppdoc": "cpp/library/ranges/join_with_view/iterator/iter_swap" + }, + { + "cppref": "cpp/ranges/take_while_view/sentinel", + "cppdoc": "cpp/library/ranges/take_while_view/sentinel" + }, + { + "cppref": "cpp/ranges/take_while_view/end", + "cppdoc": "cpp/library/ranges/take_while_view/end" + }, + { + "cppref": "cpp/ranges/take_while_view/begin", + "cppdoc": "cpp/library/ranges/take_while_view/begin" + }, + { + "cppref": "cpp/ranges/take_while_view/deduction_guides", + "cppdoc": "cpp/library/ranges/take_while_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/take_while_view/pred", + "cppdoc": "cpp/library/ranges/take_while_view/pred" + }, + { + "cppref": "cpp/ranges/take_while_view/base", + "cppdoc": "cpp/library/ranges/take_while_view/base" + }, + { + "cppref": "cpp/ranges/take_while_view/take_while_view", + "cppdoc": "cpp/library/ranges/take_while_view/take_while_view" + }, + { + "cppref": "cpp/ranges/take_while_view/sentinel/sentinel", + "cppdoc": "cpp/library/ranges/take_while_view/sentinel/sentinel" + }, + { + "cppref": "cpp/ranges/take_while_view/sentinel/operator_cmp", + "cppdoc": "cpp/library/ranges/take_while_view/sentinel/operator_cmp" + }, + { + "cppref": "cpp/ranges/take_while_view/sentinel/base", + "cppdoc": "cpp/library/ranges/take_while_view/sentinel/base" + }, + { + "cppref": "cpp/ranges/repeat_view/iterator", + "cppdoc": "cpp/library/ranges/repeat_view/iterator" + }, + { + "cppref": "cpp/ranges/iota_view/sentinel", + "cppdoc": "cpp/library/ranges/iota_view/sentinel" + }, + { + "cppref": "cpp/ranges/iota_view/empty", + "cppdoc": "cpp/library/ranges/iota_view/empty" + }, + { + "cppref": "cpp/ranges/iota_view/size", + "cppdoc": "cpp/library/ranges/iota_view/size" + }, + { + "cppref": "cpp/ranges/iota_view/end", + "cppdoc": "cpp/library/ranges/iota_view/end" + }, + { + "cppref": "cpp/ranges/iota_view/begin", + "cppdoc": "cpp/library/ranges/iota_view/begin" + }, + { + "cppref": "cpp/ranges/iota_view/deduction_guides", + "cppdoc": "cpp/library/ranges/iota_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/iota_view/iterator", + "cppdoc": "cpp/library/ranges/iota_view/iterator" + }, + { + "cppref": "cpp/ranges/iota_view/iota_view", + "cppdoc": "cpp/library/ranges/iota_view/iota_view" + }, + { + "cppref": "cpp/ranges/enumerate_view/sentinel", + "cppdoc": "cpp/library/ranges/enumerate_view/sentinel" + }, + { + "cppref": "cpp/ranges/enumerate_view/size", + "cppdoc": "cpp/library/ranges/enumerate_view/size" + }, + { + "cppref": "cpp/ranges/enumerate_view/end", + "cppdoc": "cpp/library/ranges/enumerate_view/end" + }, + { + "cppref": "cpp/ranges/enumerate_view/begin", + "cppdoc": "cpp/library/ranges/enumerate_view/begin" + }, + { + "cppref": "cpp/ranges/enumerate_view/deduction_guides", + "cppdoc": "cpp/library/ranges/enumerate_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/enumerate_view/iterator", + "cppdoc": "cpp/library/ranges/enumerate_view/iterator" + }, + { + "cppref": "cpp/ranges/enumerate_view/enumerate_view", + "cppdoc": "cpp/library/ranges/enumerate_view/enumerate_view" + }, + { + "cppref": "cpp/ranges/enumerate_view/base", + "cppdoc": "cpp/library/ranges/enumerate_view/base" + }, + { + "cppref": "cpp/ranges/enumerate_view/sentinel/sentinel", + "cppdoc": "cpp/library/ranges/enumerate_view/sentinel/sentinel" + }, + { + "cppref": "cpp/ranges/enumerate_view/sentinel/operator_cmp", + "cppdoc": "cpp/library/ranges/enumerate_view/sentinel/operator_cmp" + }, + { + "cppref": "cpp/ranges/enumerate_view/sentinel/operator-", + "cppdoc": "cpp/library/ranges/enumerate_view/sentinel/operator-" + }, + { + "cppref": "cpp/ranges/enumerate_view/sentinel/base", + "cppdoc": "cpp/library/ranges/enumerate_view/sentinel/base" + }, + { + "cppref": "cpp/ranges/enumerate_view/iterator/operator_at", + "cppdoc": "cpp/library/ranges/enumerate_view/iterator/operator_at" + }, + { + "cppref": "cpp/ranges/enumerate_view/iterator/index", + "cppdoc": "cpp/library/ranges/enumerate_view/iterator/index" + }, + { + "cppref": "cpp/ranges/enumerate_view/iterator/iter_move", + "cppdoc": "cpp/library/ranges/enumerate_view/iterator/iter_move" + }, + { + "cppref": "cpp/ranges/enumerate_view/iterator/operator_arith", + "cppdoc": "cpp/library/ranges/enumerate_view/iterator/operator_arith" + }, + { + "cppref": "cpp/ranges/enumerate_view/iterator/iterator", + "cppdoc": "cpp/library/ranges/enumerate_view/iterator/iterator" + }, + { + "cppref": "cpp/ranges/enumerate_view/iterator/operator_star_", + "cppdoc": "cpp/library/ranges/enumerate_view/iterator/operator_star_" + }, + { + "cppref": "cpp/ranges/enumerate_view/iterator/operator_cmp", + "cppdoc": "cpp/library/ranges/enumerate_view/iterator/operator_cmp" + }, + { + "cppref": "cpp/ranges/enumerate_view/iterator/operator_arith2", + "cppdoc": "cpp/library/ranges/enumerate_view/iterator/operator_arith2" + }, + { + "cppref": "cpp/ranges/enumerate_view/iterator/base", + "cppdoc": "cpp/library/ranges/enumerate_view/iterator/base" + }, + { + "cppref": "cpp/ranges/chunk_by_view/helpers", + "cppdoc": "cpp/library/ranges/chunk_by_view/helpers" + }, + { + "cppref": "cpp/ranges/chunk_by_view/chunk_by_view", + "cppdoc": "cpp/library/ranges/chunk_by_view/chunk_by_view" + }, + { + "cppref": "cpp/ranges/chunk_by_view/end", + "cppdoc": "cpp/library/ranges/chunk_by_view/end" + }, + { + "cppref": "cpp/ranges/chunk_by_view/begin", + "cppdoc": "cpp/library/ranges/chunk_by_view/begin" + }, + { + "cppref": "cpp/ranges/chunk_by_view/deduction_guides", + "cppdoc": "cpp/library/ranges/chunk_by_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/chunk_by_view/pred", + "cppdoc": "cpp/library/ranges/chunk_by_view/pred" + }, + { + "cppref": "cpp/ranges/chunk_by_view/iterator", + "cppdoc": "cpp/library/ranges/chunk_by_view/iterator" + }, + { + "cppref": "cpp/ranges/chunk_by_view/base", + "cppdoc": "cpp/library/ranges/chunk_by_view/base" + }, + { + "cppref": "cpp/ranges/chunk_by_view/iterator/operator_arith", + "cppdoc": "cpp/library/ranges/chunk_by_view/iterator/operator_arith" + }, + { + "cppref": "cpp/ranges/chunk_by_view/iterator/iterator", + "cppdoc": "cpp/library/ranges/chunk_by_view/iterator/iterator" + }, + { + "cppref": "cpp/ranges/chunk_by_view/iterator/operator_star_", + "cppdoc": "cpp/library/ranges/chunk_by_view/iterator/operator_star_" + }, + { + "cppref": "cpp/ranges/chunk_by_view/iterator/operator_cmp", + "cppdoc": "cpp/library/ranges/chunk_by_view/iterator/operator_cmp" + }, + { + "cppref": "cpp/ranges/zip_transform_view/sentinel", + "cppdoc": "cpp/library/ranges/zip_transform_view/sentinel" + }, + { + "cppref": "cpp/ranges/zip_transform_view/size", + "cppdoc": "cpp/library/ranges/zip_transform_view/size" + }, + { + "cppref": "cpp/ranges/zip_transform_view/end", + "cppdoc": "cpp/library/ranges/zip_transform_view/end" + }, + { + "cppref": "cpp/ranges/zip_transform_view/begin", + "cppdoc": "cpp/library/ranges/zip_transform_view/begin" + }, + { + "cppref": "cpp/ranges/zip_transform_view/deduction_guides", + "cppdoc": "cpp/library/ranges/zip_transform_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/zip_transform_view/iterator", + "cppdoc": "cpp/library/ranges/zip_transform_view/iterator" + }, + { + "cppref": "cpp/ranges/zip_transform_view/zip_transform_view", + "cppdoc": "cpp/library/ranges/zip_transform_view/zip_transform_view" + }, + { + "cppref": "cpp/ranges/zip_transform_view/sentinel/sentinel", + "cppdoc": "cpp/library/ranges/zip_transform_view/sentinel/sentinel" + }, + { + "cppref": "cpp/ranges/zip_transform_view/sentinel/operator_cmp", + "cppdoc": "cpp/library/ranges/zip_transform_view/sentinel/operator_cmp" + }, + { + "cppref": "cpp/ranges/zip_transform_view/sentinel/operator-", + "cppdoc": "cpp/library/ranges/zip_transform_view/sentinel/operator-" + }, + { + "cppref": "cpp/ranges/zip_transform_view/iterator/operator_at", + "cppdoc": "cpp/library/ranges/zip_transform_view/iterator/operator_at" + }, + { + "cppref": "cpp/ranges/zip_transform_view/iterator/operator_arith", + "cppdoc": "cpp/library/ranges/zip_transform_view/iterator/operator_arith" + }, + { + "cppref": "cpp/ranges/zip_transform_view/iterator/iterator", + "cppdoc": "cpp/library/ranges/zip_transform_view/iterator/iterator" + }, + { + "cppref": "cpp/ranges/zip_transform_view/iterator/operator_star_", + "cppdoc": "cpp/library/ranges/zip_transform_view/iterator/operator_star_" + }, + { + "cppref": "cpp/ranges/zip_transform_view/iterator/operator_cmp", + "cppdoc": "cpp/library/ranges/zip_transform_view/iterator/operator_cmp" + }, + { + "cppref": "cpp/ranges/zip_transform_view/iterator/operator_arith2", + "cppdoc": "cpp/library/ranges/zip_transform_view/iterator/operator_arith2" + }, + { + "cppref": "cpp/ranges/lazy_split_view/lazy_split_view", + "cppdoc": "cpp/library/ranges/lazy_split_view/lazy_split_view" + }, + { + "cppref": "cpp/ranges/lazy_split_view/value_type", + "cppdoc": "cpp/library/ranges/lazy_split_view/value_type" + }, + { + "cppref": "cpp/ranges/lazy_split_view/inner_iterator", + "cppdoc": "cpp/library/ranges/lazy_split_view/inner_iterator" + }, + { + "cppref": "cpp/ranges/lazy_split_view/end", + "cppdoc": "cpp/library/ranges/lazy_split_view/end" + }, + { + "cppref": "cpp/ranges/lazy_split_view/begin", + "cppdoc": "cpp/library/ranges/lazy_split_view/begin" + }, + { + "cppref": "cpp/ranges/lazy_split_view/deduction_guides", + "cppdoc": "cpp/library/ranges/lazy_split_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/lazy_split_view/outer_iterator", + "cppdoc": "cpp/library/ranges/lazy_split_view/outer_iterator" + }, + { + "cppref": "cpp/ranges/lazy_split_view/base", + "cppdoc": "cpp/library/ranges/lazy_split_view/base" + }, + { + "cppref": "cpp/ranges/common_view/common_view", + "cppdoc": "cpp/library/ranges/common_view/common_view" + }, + { + "cppref": "cpp/ranges/common_view/size", + "cppdoc": "cpp/library/ranges/common_view/size" + }, + { + "cppref": "cpp/ranges/common_view/end", + "cppdoc": "cpp/library/ranges/common_view/end" + }, + { + "cppref": "cpp/ranges/common_view/begin", + "cppdoc": "cpp/library/ranges/common_view/begin" + }, + { + "cppref": "cpp/ranges/common_view/deduction_guides", + "cppdoc": "cpp/library/ranges/common_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/common_view/base", + "cppdoc": "cpp/library/ranges/common_view/base" + }, + { + "cppref": "cpp/ranges/stride_view/stride", + "cppdoc": "cpp/library/ranges/stride_view/stride" + }, + { + "cppref": "cpp/ranges/stride_view/size", + "cppdoc": "cpp/library/ranges/stride_view/size" + }, + { + "cppref": "cpp/ranges/stride_view/end", + "cppdoc": "cpp/library/ranges/stride_view/end" + }, + { + "cppref": "cpp/ranges/stride_view/begin", + "cppdoc": "cpp/library/ranges/stride_view/begin" + }, + { + "cppref": "cpp/ranges/stride_view/deduction_guides", + "cppdoc": "cpp/library/ranges/stride_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/stride_view/iterator", + "cppdoc": "cpp/library/ranges/stride_view/iterator" + }, + { + "cppref": "cpp/ranges/stride_view/stride_view", + "cppdoc": "cpp/library/ranges/stride_view/stride_view" + }, + { + "cppref": "cpp/ranges/stride_view/base", + "cppdoc": "cpp/library/ranges/stride_view/base" + }, + { + "cppref": "cpp/ranges/stride_view/iterator/operator_at", + "cppdoc": "cpp/library/ranges/stride_view/iterator/operator_at" + }, + { + "cppref": "cpp/ranges/stride_view/iterator/iter_move", + "cppdoc": "cpp/library/ranges/stride_view/iterator/iter_move" + }, + { + "cppref": "cpp/ranges/stride_view/iterator/operator_arith", + "cppdoc": "cpp/library/ranges/stride_view/iterator/operator_arith" + }, + { + "cppref": "cpp/ranges/stride_view/iterator/iterator", + "cppdoc": "cpp/library/ranges/stride_view/iterator/iterator" + }, + { + "cppref": "cpp/ranges/stride_view/iterator/operator_star_", + "cppdoc": "cpp/library/ranges/stride_view/iterator/operator_star_" + }, + { + "cppref": "cpp/ranges/stride_view/iterator/operator_cmp", + "cppdoc": "cpp/library/ranges/stride_view/iterator/operator_cmp" + }, + { + "cppref": "cpp/ranges/stride_view/iterator/iter_swap", + "cppdoc": "cpp/library/ranges/stride_view/iterator/iter_swap" + }, + { + "cppref": "cpp/ranges/stride_view/iterator/operator_arith2", + "cppdoc": "cpp/library/ranges/stride_view/iterator/operator_arith2" + }, + { + "cppref": "cpp/ranges/stride_view/iterator/base", + "cppdoc": "cpp/library/ranges/stride_view/iterator/base" + }, + { + "cppref": "cpp/ranges/split_view/sentinel", + "cppdoc": "cpp/library/ranges/split_view/sentinel" + }, + { + "cppref": "cpp/ranges/split_view/end", + "cppdoc": "cpp/library/ranges/split_view/end" + }, + { + "cppref": "cpp/ranges/split_view/begin", + "cppdoc": "cpp/library/ranges/split_view/begin" + }, + { + "cppref": "cpp/ranges/split_view/deduction_guides", + "cppdoc": "cpp/library/ranges/split_view/deduction_guides" + }, + { + "cppref": "cpp/ranges/split_view/iterator", + "cppdoc": "cpp/library/ranges/split_view/iterator" + }, + { + "cppref": "cpp/ranges/split_view/split_view", + "cppdoc": "cpp/library/ranges/split_view/split_view" + }, + { + "cppref": "cpp/ranges/split_view/base", + "cppdoc": "cpp/library/ranges/split_view/base" + }, + { + "cppref": "cpp/ranges/split_view/find_next", + "cppdoc": "cpp/library/ranges/split_view/find_next" + }, + { + "cppref": "cpp/ranges/filter_view/sentinel", + "cppdoc": "cpp/library/ranges/filter_view/sentinel" + }, + { + "cppref": "cpp/ranges/filter_view/iterator", + "cppdoc": "cpp/library/ranges/filter_view/iterator" + }, + { + "cppref": "cpp/iterator/mergeable", + "cppdoc": "cpp/library/iterator/mergeable" + }, + { + "cppref": "cpp/iterator/default_sentinel", + "cppdoc": "cpp/library/iterator/default_sentinel" + }, + { + "cppref": "cpp/iterator/indirect_result_t", + "cppdoc": "cpp/library/iterator/indirect_result_t" + }, + { + "cppref": "cpp/iterator/const_iterator", + "cppdoc": "cpp/library/iterator/const_iterator" + }, + { + "cppref": "cpp/iterator/ostreambuf_iterator", + "cppdoc": "cpp/library/iterator/ostreambuf_iterator" + }, + { + "cppref": "cpp/iterator/basic_const_iterator", + "cppdoc": "cpp/library/iterator/basic_const_iterator" + }, + { + "cppref": "cpp/iterator/move_sentinel", + "cppdoc": "cpp/library/iterator/move_sentinel" + }, + { + "cppref": "cpp/iterator/istream_iterator", + "cppdoc": "cpp/library/iterator/istream_iterator" + }, + { + "cppref": "cpp/iterator/sentinel_for", + "cppdoc": "cpp/library/iterator/sentinel_for" + }, + { + "cppref": "cpp/iterator/front_insert_iterator", + "cppdoc": "cpp/library/iterator/front_insert_iterator" + }, + { + "cppref": "cpp/iterator/prev", + "cppdoc": "cpp/library/iterator/prev" + }, + { + "cppref": "cpp/iterator/bidirectional_iterator", + "cppdoc": "cpp/library/iterator/bidirectional_iterator" + }, + { + "cppref": "cpp/iterator/next", + "cppdoc": "cpp/library/iterator/next" + }, + { + "cppref": "cpp/iterator/default_sentinel_t", + "cppdoc": "cpp/library/iterator/default_sentinel_t" + }, + { + "cppref": "cpp/iterator/empty", + "cppdoc": "cpp/library/iterator/empty" + }, + { + "cppref": "cpp/iterator/back_inserter", + "cppdoc": "cpp/library/iterator/back_inserter" + }, + { + "cppref": "cpp/iterator/projected", + "cppdoc": "cpp/library/iterator/projected" + }, + { + "cppref": "cpp/iterator/incrementable", + "cppdoc": "cpp/library/iterator/incrementable" + }, + { + "cppref": "cpp/iterator/size", + "cppdoc": "cpp/library/iterator/size" + }, + { + "cppref": "cpp/iterator/indirectly_copyable_storable", + "cppdoc": "cpp/library/iterator/indirectly_copyable_storable" + }, + { + "cppref": "cpp/iterator/is-integer-like", + "cppdoc": "cpp/library/iterator/is-integer-like" + }, + { + "cppref": "cpp/iterator/contiguous_iterator", + "cppdoc": "cpp/library/iterator/contiguous_iterator" + }, + { + "cppref": "cpp/iterator/back_insert_iterator", + "cppdoc": "cpp/library/iterator/back_insert_iterator" + }, + { + "cppref": "cpp/iterator/indirectly_swappable", + "cppdoc": "cpp/library/iterator/indirectly_swappable" + }, + { + "cppref": "cpp/iterator/const_sentinel", + "cppdoc": "cpp/library/iterator/const_sentinel" + }, + { + "cppref": "cpp/iterator/indirect_unary_predicate", + "cppdoc": "cpp/library/iterator/indirect_unary_predicate" + }, + { + "cppref": "cpp/iterator/output_iterator", + "cppdoc": "cpp/library/iterator/output_iterator" + }, + { + "cppref": "cpp/iterator/end", + "cppdoc": "cpp/library/iterator/end" + }, + { + "cppref": "cpp/iterator/rend", + "cppdoc": "cpp/library/iterator/rend" + }, + { + "cppref": "cpp/iterator/make_move_iterator", + "cppdoc": "cpp/library/iterator/make_move_iterator" + }, + { + "cppref": "cpp/iterator/begin", + "cppdoc": "cpp/library/iterator/begin" + }, + { + "cppref": "cpp/iterator/indirect_equivalence_relation", + "cppdoc": "cpp/library/iterator/indirect_equivalence_relation" + }, + { + "cppref": "cpp/iterator/input_or_output_iterator", + "cppdoc": "cpp/library/iterator/input_or_output_iterator" + }, + { + "cppref": "cpp/iterator/reverse_iterator", + "cppdoc": "cpp/library/iterator/reverse_iterator" + }, + { + "cppref": "cpp/iterator/ostream_iterator", + "cppdoc": "cpp/library/iterator/ostream_iterator" + }, + { + "cppref": "cpp/iterator/unreachable_sentinel_t", + "cppdoc": "cpp/library/iterator/unreachable_sentinel_t" + }, + { + "cppref": "cpp/iterator/iter_t", + "cppdoc": "cpp/library/iterator/iter_t" + }, + { + "cppref": "cpp/iterator/indirectly_movable_storable", + "cppdoc": "cpp/library/iterator/indirectly_movable_storable" + }, + { + "cppref": "cpp/iterator/forward_iterator", + "cppdoc": "cpp/library/iterator/forward_iterator" + }, + { + "cppref": "cpp/iterator/indirectly_readable", + "cppdoc": "cpp/library/iterator/indirectly_readable" + }, + { + "cppref": "cpp/iterator/rbegin", + "cppdoc": "cpp/library/iterator/rbegin" + }, + { + "cppref": "cpp/iterator/sized_sentinel_for", + "cppdoc": "cpp/library/iterator/sized_sentinel_for" + }, + { + "cppref": "cpp/iterator/indirectly_writable", + "cppdoc": "cpp/library/iterator/indirectly_writable" + }, + { + "cppref": "cpp/iterator/make_const_sentinel", + "cppdoc": "cpp/library/iterator/make_const_sentinel" + }, + { + "cppref": "cpp/iterator/indirectly_readable_traits", + "cppdoc": "cpp/library/iterator/indirectly_readable_traits" + }, + { + "cppref": "cpp/iterator/projected_value_t", + "cppdoc": "cpp/library/iterator/projected_value_t" + }, + { + "cppref": "cpp/iterator/iterator", + "cppdoc": "cpp/library/iterator/iterator" + }, + { + "cppref": "cpp/iterator/iterator_tags", + "cppdoc": "cpp/library/iterator/iterator_tags" + }, + { + "cppref": "cpp/iterator/indirectly_unary_invocable", + "cppdoc": "cpp/library/iterator/indirectly_unary_invocable" + }, + { + "cppref": "cpp/iterator/indirect_strict_weak_order", + "cppdoc": "cpp/library/iterator/indirect_strict_weak_order" + }, + { + "cppref": "cpp/iterator/incrementable_traits", + "cppdoc": "cpp/library/iterator/incrementable_traits" + }, + { + "cppref": "cpp/iterator/indirectly_comparable", + "cppdoc": "cpp/library/iterator/indirectly_comparable" + }, + { + "cppref": "cpp/iterator/indirectly_copyable", + "cppdoc": "cpp/library/iterator/indirectly_copyable" + }, + { + "cppref": "cpp/iterator/input_iterator", + "cppdoc": "cpp/library/iterator/input_iterator" + }, + { + "cppref": "cpp/iterator/indirectly_movable", + "cppdoc": "cpp/library/iterator/indirectly_movable" + }, + { + "cppref": "cpp/iterator/front_inserter", + "cppdoc": "cpp/library/iterator/front_inserter" + }, + { + "cppref": "cpp/iterator/insert_iterator", + "cppdoc": "cpp/library/iterator/insert_iterator" + }, + { + "cppref": "cpp/iterator/iterator_traits", + "cppdoc": "cpp/library/iterator/iterator_traits" + }, + { + "cppref": "cpp/iterator/istreambuf_iterator", + "cppdoc": "cpp/library/iterator/istreambuf_iterator" + }, + { + "cppref": "cpp/iterator/distance", + "cppdoc": "cpp/library/iterator/distance" + }, + { + "cppref": "cpp/iterator/counted_iterator", + "cppdoc": "cpp/library/iterator/counted_iterator" + }, + { + "cppref": "cpp/iterator/make_reverse_iterator", + "cppdoc": "cpp/library/iterator/make_reverse_iterator" + }, + { + "cppref": "cpp/iterator/common_iterator", + "cppdoc": "cpp/library/iterator/common_iterator" + }, + { + "cppref": "cpp/iterator/indirect_binary_predicate", + "cppdoc": "cpp/library/iterator/indirect_binary_predicate" + }, + { + "cppref": "cpp/iterator/data", + "cppdoc": "cpp/library/iterator/data" + }, + { + "cppref": "cpp/iterator/random_access_iterator", + "cppdoc": "cpp/library/iterator/random_access_iterator" + }, + { + "cppref": "cpp/iterator/sortable", + "cppdoc": "cpp/library/iterator/sortable" + }, + { + "cppref": "cpp/iterator/move_iterator", + "cppdoc": "cpp/library/iterator/move_iterator" + }, + { + "cppref": "cpp/iterator/weakly_incrementable", + "cppdoc": "cpp/library/iterator/weakly_incrementable" + }, + { + "cppref": "cpp/iterator/permutable", + "cppdoc": "cpp/library/iterator/permutable" + }, + { + "cppref": "cpp/iterator/advance", + "cppdoc": "cpp/library/iterator/advance" + }, + { + "cppref": "cpp/iterator/make_const_iterator", + "cppdoc": "cpp/library/iterator/make_const_iterator" + }, + { + "cppref": "cpp/iterator/inserter", + "cppdoc": "cpp/library/iterator/inserter" + }, + { + "cppref": "cpp/iterator/move_sentinel/move_sentinel", + "cppdoc": "cpp/library/iterator/move_sentinel/move_sentinel" + }, + { + "cppref": "cpp/iterator/move_sentinel/operator=", + "cppdoc": "cpp/library/iterator/move_sentinel/operator=" + }, + { + "cppref": "cpp/iterator/move_sentinel/base", + "cppdoc": "cpp/library/iterator/move_sentinel/base" + }, + { + "cppref": "cpp/iterator/ostreambuf_iterator/ostreambuf_iterator", + "cppdoc": "cpp/library/iterator/ostreambuf_iterator/ostreambuf_iterator" + }, + { + "cppref": "cpp/iterator/ostreambuf_iterator/operator_arith", + "cppdoc": "cpp/library/iterator/ostreambuf_iterator/operator_arith" + }, + { + "cppref": "cpp/iterator/ostreambuf_iterator/operator_star_", + "cppdoc": "cpp/library/iterator/ostreambuf_iterator/operator_star_" + }, + { + "cppref": "cpp/iterator/ostreambuf_iterator/failed", + "cppdoc": "cpp/library/iterator/ostreambuf_iterator/failed" + }, + { + "cppref": "cpp/iterator/ostreambuf_iterator/operator=", + "cppdoc": "cpp/library/iterator/ostreambuf_iterator/operator=" + }, + { + "cppref": "cpp/iterator/counted_iterator/operator_at", + "cppdoc": "cpp/library/iterator/counted_iterator/operator_at" + }, + { + "cppref": "cpp/iterator/counted_iterator/iter_move", + "cppdoc": "cpp/library/iterator/counted_iterator/iter_move" + }, + { + "cppref": "cpp/iterator/counted_iterator/operator_cmp2", + "cppdoc": "cpp/library/iterator/counted_iterator/operator_cmp2" + }, + { + "cppref": "cpp/iterator/counted_iterator/operator_arith", + "cppdoc": "cpp/library/iterator/counted_iterator/operator_arith" + }, + { + "cppref": "cpp/iterator/counted_iterator/operator+", + "cppdoc": "cpp/library/iterator/counted_iterator/operator+" + }, + { + "cppref": "cpp/iterator/counted_iterator/operator_star_", + "cppdoc": "cpp/library/iterator/counted_iterator/operator_star_" + }, + { + "cppref": "cpp/iterator/counted_iterator/count", + "cppdoc": "cpp/library/iterator/counted_iterator/count" + }, + { + "cppref": "cpp/iterator/counted_iterator/operator_cmp", + "cppdoc": "cpp/library/iterator/counted_iterator/operator_cmp" + }, + { + "cppref": "cpp/iterator/counted_iterator/iter_swap", + "cppdoc": "cpp/library/iterator/counted_iterator/iter_swap" + }, + { + "cppref": "cpp/iterator/counted_iterator/iterator_traits", + "cppdoc": "cpp/library/iterator/counted_iterator/iterator_traits" + }, + { + "cppref": "cpp/iterator/counted_iterator/operator-", + "cppdoc": "cpp/library/iterator/counted_iterator/operator-" + }, + { + "cppref": "cpp/iterator/counted_iterator/counted_iterator", + "cppdoc": "cpp/library/iterator/counted_iterator/counted_iterator" + }, + { + "cppref": "cpp/iterator/counted_iterator/operator=", + "cppdoc": "cpp/library/iterator/counted_iterator/operator=" + }, + { + "cppref": "cpp/iterator/counted_iterator/base", + "cppdoc": "cpp/library/iterator/counted_iterator/base" + }, + { + "cppref": "cpp/iterator/counted_iterator/operator-2", + "cppdoc": "cpp/library/iterator/counted_iterator/operator-2" + }, + { + "cppref": "cpp/iterator/back_insert_iterator/back_insert_iterator", + "cppdoc": "cpp/library/iterator/back_insert_iterator/back_insert_iterator" + }, + { + "cppref": "cpp/iterator/back_insert_iterator/operator_star_", + "cppdoc": "cpp/library/iterator/back_insert_iterator/operator_star_" + }, + { + "cppref": "cpp/iterator/back_insert_iterator/operator++", + "cppdoc": "cpp/library/iterator/back_insert_iterator/operator++" + }, + { + "cppref": "cpp/iterator/back_insert_iterator/operator=", + "cppdoc": "cpp/library/iterator/back_insert_iterator/operator=" + }, + { + "cppref": "cpp/iterator/ranges/prev", + "cppdoc": "cpp/library/iterator/ranges/prev" + }, + { + "cppref": "cpp/iterator/ranges/next", + "cppdoc": "cpp/library/iterator/ranges/next" + }, + { + "cppref": "cpp/iterator/ranges/iter_move", + "cppdoc": "cpp/library/iterator/ranges/iter_move" + }, + { + "cppref": "cpp/iterator/ranges/iter_swap", + "cppdoc": "cpp/library/iterator/ranges/iter_swap" + }, + { + "cppref": "cpp/iterator/ranges/distance", + "cppdoc": "cpp/library/iterator/ranges/distance" + }, + { + "cppref": "cpp/iterator/ranges/advance", + "cppdoc": "cpp/library/iterator/ranges/advance" + }, + { + "cppref": "cpp/iterator/front_insert_iterator/front_insert_iterator", + "cppdoc": "cpp/library/iterator/front_insert_iterator/front_insert_iterator" + }, + { + "cppref": "cpp/iterator/front_insert_iterator/operator_star_", + "cppdoc": "cpp/library/iterator/front_insert_iterator/operator_star_" + }, + { + "cppref": "cpp/iterator/front_insert_iterator/operator++", + "cppdoc": "cpp/library/iterator/front_insert_iterator/operator++" + }, + { + "cppref": "cpp/iterator/front_insert_iterator/operator=", + "cppdoc": "cpp/library/iterator/front_insert_iterator/operator=" + }, + { + "cppref": "cpp/iterator/reverse_iterator/operator_at", + "cppdoc": "cpp/library/iterator/reverse_iterator/operator_at" + }, + { + "cppref": "cpp/iterator/reverse_iterator/iter_move", + "cppdoc": "cpp/library/iterator/reverse_iterator/iter_move" + }, + { + "cppref": "cpp/iterator/reverse_iterator/reverse_iterator", + "cppdoc": "cpp/library/iterator/reverse_iterator/reverse_iterator" + }, + { + "cppref": "cpp/iterator/reverse_iterator/operator_arith", + "cppdoc": "cpp/library/iterator/reverse_iterator/operator_arith" + }, + { + "cppref": "cpp/iterator/reverse_iterator/operator+", + "cppdoc": "cpp/library/iterator/reverse_iterator/operator+" + }, + { + "cppref": "cpp/iterator/reverse_iterator/operator_star_", + "cppdoc": "cpp/library/iterator/reverse_iterator/operator_star_" + }, + { + "cppref": "cpp/iterator/reverse_iterator/operator_cmp", + "cppdoc": "cpp/library/iterator/reverse_iterator/operator_cmp" + }, + { + "cppref": "cpp/iterator/reverse_iterator/iter_swap", + "cppdoc": "cpp/library/iterator/reverse_iterator/iter_swap" + }, + { + "cppref": "cpp/iterator/reverse_iterator/operator-", + "cppdoc": "cpp/library/iterator/reverse_iterator/operator-" + }, + { + "cppref": "cpp/iterator/reverse_iterator/operator=", + "cppdoc": "cpp/library/iterator/reverse_iterator/operator=" + }, + { + "cppref": "cpp/iterator/reverse_iterator/base", + "cppdoc": "cpp/library/iterator/reverse_iterator/base" + }, + { + "cppref": "cpp/iterator/basic_const_iterator/operator_at", + "cppdoc": "cpp/library/iterator/basic_const_iterator/operator_at" + }, + { + "cppref": "cpp/iterator/basic_const_iterator/basic_const_iterator", + "cppdoc": "cpp/library/iterator/basic_const_iterator/basic_const_iterator" + }, + { + "cppref": "cpp/iterator/basic_const_iterator/iter_move", + "cppdoc": "cpp/library/iterator/basic_const_iterator/iter_move" + }, + { + "cppref": "cpp/iterator/basic_const_iterator/operator_cmp2", + "cppdoc": "cpp/library/iterator/basic_const_iterator/operator_cmp2" + }, + { + "cppref": "cpp/iterator/basic_const_iterator/operator_constant_iterator", + "cppdoc": "cpp/library/iterator/basic_const_iterator/operator_constant_iterator" + }, + { + "cppref": "cpp/iterator/basic_const_iterator/operator_arith", + "cppdoc": "cpp/library/iterator/basic_const_iterator/operator_arith" + }, + { + "cppref": "cpp/iterator/basic_const_iterator/common_type", + "cppdoc": "cpp/library/iterator/basic_const_iterator/common_type" + }, + { + "cppref": "cpp/iterator/basic_const_iterator/operator_star_", + "cppdoc": "cpp/library/iterator/basic_const_iterator/operator_star_" + }, + { + "cppref": "cpp/iterator/basic_const_iterator/operator_cmp", + "cppdoc": "cpp/library/iterator/basic_const_iterator/operator_cmp" + }, + { + "cppref": "cpp/iterator/basic_const_iterator/operator-", + "cppdoc": "cpp/library/iterator/basic_const_iterator/operator-" + }, + { + "cppref": "cpp/iterator/basic_const_iterator/operator_arith2", + "cppdoc": "cpp/library/iterator/basic_const_iterator/operator_arith2" + }, + { + "cppref": "cpp/iterator/basic_const_iterator/base", + "cppdoc": "cpp/library/iterator/basic_const_iterator/base" + }, + { + "cppref": "cpp/iterator/common_iterator/iter_move", + "cppdoc": "cpp/library/iterator/common_iterator/iter_move" + }, + { + "cppref": "cpp/iterator/common_iterator/operator_arith", + "cppdoc": "cpp/library/iterator/common_iterator/operator_arith" + }, + { + "cppref": "cpp/iterator/common_iterator/operator_star_", + "cppdoc": "cpp/library/iterator/common_iterator/operator_star_" + }, + { + "cppref": "cpp/iterator/common_iterator/incrementable_traits", + "cppdoc": "cpp/library/iterator/common_iterator/incrementable_traits" + }, + { + "cppref": "cpp/iterator/common_iterator/operator_cmp", + "cppdoc": "cpp/library/iterator/common_iterator/operator_cmp" + }, + { + "cppref": "cpp/iterator/common_iterator/iter_swap", + "cppdoc": "cpp/library/iterator/common_iterator/iter_swap" + }, + { + "cppref": "cpp/iterator/common_iterator/iterator_traits", + "cppdoc": "cpp/library/iterator/common_iterator/iterator_traits" + }, + { + "cppref": "cpp/iterator/common_iterator/operator-", + "cppdoc": "cpp/library/iterator/common_iterator/operator-" + }, + { + "cppref": "cpp/iterator/common_iterator/common_iterator", + "cppdoc": "cpp/library/iterator/common_iterator/common_iterator" + }, + { + "cppref": "cpp/iterator/common_iterator/operator=", + "cppdoc": "cpp/library/iterator/common_iterator/operator=" + }, + { + "cppref": "cpp/iterator/ostream_iterator/~ostream_iterator", + "cppdoc": "cpp/library/iterator/ostream_iterator/~ostream_iterator" + }, + { + "cppref": "cpp/iterator/ostream_iterator/ostream_iterator", + "cppdoc": "cpp/library/iterator/ostream_iterator/ostream_iterator" + }, + { + "cppref": "cpp/iterator/ostream_iterator/operator_arith", + "cppdoc": "cpp/library/iterator/ostream_iterator/operator_arith" + }, + { + "cppref": "cpp/iterator/ostream_iterator/operator_star_", + "cppdoc": "cpp/library/iterator/ostream_iterator/operator_star_" + }, + { + "cppref": "cpp/iterator/ostream_iterator/operator=", + "cppdoc": "cpp/library/iterator/ostream_iterator/operator=" + }, + { + "cppref": "cpp/iterator/istream_iterator/istream_iterator", + "cppdoc": "cpp/library/iterator/istream_iterator/istream_iterator" + }, + { + "cppref": "cpp/iterator/istream_iterator/~istream_iterator", + "cppdoc": "cpp/library/iterator/istream_iterator/~istream_iterator" + }, + { + "cppref": "cpp/iterator/istream_iterator/operator_arith", + "cppdoc": "cpp/library/iterator/istream_iterator/operator_arith" + }, + { + "cppref": "cpp/iterator/istream_iterator/operator_star_", + "cppdoc": "cpp/library/iterator/istream_iterator/operator_star_" + }, + { + "cppref": "cpp/iterator/istream_iterator/operator_cmp", + "cppdoc": "cpp/library/iterator/istream_iterator/operator_cmp" + }, + { + "cppref": "cpp/iterator/insert_iterator/operator_star_", + "cppdoc": "cpp/library/iterator/insert_iterator/operator_star_" + }, + { + "cppref": "cpp/iterator/insert_iterator/insert_iterator", + "cppdoc": "cpp/library/iterator/insert_iterator/insert_iterator" + }, + { + "cppref": "cpp/iterator/insert_iterator/operator++", + "cppdoc": "cpp/library/iterator/insert_iterator/operator++" + }, + { + "cppref": "cpp/iterator/insert_iterator/operator=", + "cppdoc": "cpp/library/iterator/insert_iterator/operator=" + }, + { + "cppref": "cpp/iterator/move_iterator/operator_at", + "cppdoc": "cpp/library/iterator/move_iterator/operator_at" + }, + { + "cppref": "cpp/iterator/move_iterator/iter_move", + "cppdoc": "cpp/library/iterator/move_iterator/iter_move" + }, + { + "cppref": "cpp/iterator/move_iterator/operator_cmp2", + "cppdoc": "cpp/library/iterator/move_iterator/operator_cmp2" + }, + { + "cppref": "cpp/iterator/move_iterator/operator_arith", + "cppdoc": "cpp/library/iterator/move_iterator/operator_arith" + }, + { + "cppref": "cpp/iterator/move_iterator/operator+", + "cppdoc": "cpp/library/iterator/move_iterator/operator+" + }, + { + "cppref": "cpp/iterator/move_iterator/operator_star_", + "cppdoc": "cpp/library/iterator/move_iterator/operator_star_" + }, + { + "cppref": "cpp/iterator/move_iterator/operator_cmp", + "cppdoc": "cpp/library/iterator/move_iterator/operator_cmp" + }, + { + "cppref": "cpp/iterator/move_iterator/iter_swap", + "cppdoc": "cpp/library/iterator/move_iterator/iter_swap" + }, + { + "cppref": "cpp/iterator/move_iterator/operator-", + "cppdoc": "cpp/library/iterator/move_iterator/operator-" + }, + { + "cppref": "cpp/iterator/move_iterator/operator=", + "cppdoc": "cpp/library/iterator/move_iterator/operator=" + }, + { + "cppref": "cpp/iterator/move_iterator/base", + "cppdoc": "cpp/library/iterator/move_iterator/base" + }, + { + "cppref": "cpp/iterator/move_iterator/move_iterator", + "cppdoc": "cpp/library/iterator/move_iterator/move_iterator" + }, + { + "cppref": "cpp/iterator/move_iterator/operator-2", + "cppdoc": "cpp/library/iterator/move_iterator/operator-2" + }, + { + "cppref": "cpp/iterator/istreambuf_iterator/operator_arith", + "cppdoc": "cpp/library/iterator/istreambuf_iterator/operator_arith" + }, + { + "cppref": "cpp/iterator/istreambuf_iterator/operator_star_", + "cppdoc": "cpp/library/iterator/istreambuf_iterator/operator_star_" + }, + { + "cppref": "cpp/iterator/istreambuf_iterator/equal", + "cppdoc": "cpp/library/iterator/istreambuf_iterator/equal" + }, + { + "cppref": "cpp/iterator/istreambuf_iterator/operator_cmp", + "cppdoc": "cpp/library/iterator/istreambuf_iterator/operator_cmp" + }, + { + "cppref": "cpp/iterator/istreambuf_iterator/istreambuf_iterator", + "cppdoc": "cpp/library/iterator/istreambuf_iterator/istreambuf_iterator" + }, + { + "cppref": "cpp/standard_library/decay-copy", + "cppdoc": "cpp/library/standard_library/decay-copy" + }, + { + "cppref": "cpp/standard_library/synth-three-way", + "cppdoc": "cpp/library/standard_library/synth-three-way" + }, + { + "cppref": "cpp/links/libs", + "cppdoc": "cpp/library/links/libs" + }, + { + "cppref": "cpp/memory/voidify", + "cppdoc": "cpp/library/memory/voidify" + }, + { + "cppref": "cpp/memory/auto_ptr", + "cppdoc": "cpp/library/memory/auto_ptr" + }, + { + "cppref": "cpp/memory/uses_allocator_construction_args", + "cppdoc": "cpp/library/memory/uses_allocator_construction_args" + }, + { + "cppref": "cpp/memory/uninitialized_value_construct_n", + "cppdoc": "cpp/library/memory/uninitialized_value_construct_n" + }, + { + "cppref": "cpp/memory/owner_less_void", + "cppdoc": "cpp/library/memory/owner_less_void" + }, + { + "cppref": "cpp/memory/set_default_resource", + "cppdoc": "cpp/library/memory/set_default_resource" + }, + { + "cppref": "cpp/memory/uninitialized_construct_using_allocator", + "cppdoc": "cpp/library/memory/uninitialized_construct_using_allocator" + }, + { + "cppref": "cpp/memory/owner_less", + "cppdoc": "cpp/library/memory/owner_less" + }, + { + "cppref": "cpp/memory/scoped_allocator_adaptor", + "cppdoc": "cpp/library/memory/scoped_allocator_adaptor" + }, + { + "cppref": "cpp/memory/get_default_resource", + "cppdoc": "cpp/library/memory/get_default_resource" + }, + { + "cppref": "cpp/memory/polymorphic_allocator", + "cppdoc": "cpp/library/memory/polymorphic_allocator" + }, + { + "cppref": "cpp/memory/raw_storage_iterator", + "cppdoc": "cpp/library/memory/raw_storage_iterator" + }, + { + "cppref": "cpp/memory/uninitialized_move", + "cppdoc": "cpp/library/memory/uninitialized_move" + }, + { + "cppref": "cpp/memory/monotonic_buffer_resource", + "cppdoc": "cpp/library/memory/monotonic_buffer_resource" + }, + { + "cppref": "cpp/memory/addressof", + "cppdoc": "cpp/library/memory/addressof" + }, + { + "cppref": "cpp/memory/pool_options", + "cppdoc": "cpp/library/memory/pool_options" + }, + { + "cppref": "cpp/memory/bad_weak_ptr", + "cppdoc": "cpp/library/memory/bad_weak_ptr" + }, + { + "cppref": "cpp/memory/uninitialized_move_n", + "cppdoc": "cpp/library/memory/uninitialized_move_n" + }, + { + "cppref": "cpp/memory/unsynchronized_pool_resource", + "cppdoc": "cpp/library/memory/unsynchronized_pool_resource" + }, + { + "cppref": "cpp/memory/assume_aligned", + "cppdoc": "cpp/library/memory/assume_aligned" + }, + { + "cppref": "cpp/memory/new_delete_resource", + "cppdoc": "cpp/library/memory/new_delete_resource" + }, + { + "cppref": "cpp/memory/shared_ptr", + "cppdoc": "cpp/library/memory/shared_ptr" + }, + { + "cppref": "cpp/memory/pointer_traits", + "cppdoc": "cpp/library/memory/pointer_traits" + }, + { + "cppref": "cpp/memory/new", + "cppdoc": "cpp/library/memory/new" + }, + { + "cppref": "cpp/memory/to_address", + "cppdoc": "cpp/library/memory/to_address" + }, + { + "cppref": "cpp/memory/make_obj_using_allocator", + "cppdoc": "cpp/library/memory/make_obj_using_allocator" + }, + { + "cppref": "cpp/memory/weak_ptr", + "cppdoc": "cpp/library/memory/weak_ptr" + }, + { + "cppref": "cpp/memory/allocator_traits", + "cppdoc": "cpp/library/memory/allocator_traits" + }, + { + "cppref": "cpp/memory/owner_equal", + "cppdoc": "cpp/library/memory/owner_equal" + }, + { + "cppref": "cpp/memory/uninitialized_copy", + "cppdoc": "cpp/library/memory/uninitialized_copy" + }, + { + "cppref": "cpp/memory/default_delete", + "cppdoc": "cpp/library/memory/default_delete" + }, + { + "cppref": "cpp/memory/get_temporary_buffer", + "cppdoc": "cpp/library/memory/get_temporary_buffer" + }, + { + "cppref": "cpp/memory/owner_hash", + "cppdoc": "cpp/library/memory/owner_hash" + }, + { + "cppref": "cpp/memory/uninitialized_fill", + "cppdoc": "cpp/library/memory/uninitialized_fill" + }, + { + "cppref": "cpp/memory/uninitialized_fill_n", + "cppdoc": "cpp/library/memory/uninitialized_fill_n" + }, + { + "cppref": "cpp/memory/allocator_arg", + "cppdoc": "cpp/library/memory/allocator_arg" + }, + { + "cppref": "cpp/memory/allocation_result", + "cppdoc": "cpp/library/memory/allocation_result" + }, + { + "cppref": "cpp/memory/c", + "cppdoc": "cpp/library/memory/c" + }, + { + "cppref": "cpp/memory/out_ptr_t", + "cppdoc": "cpp/library/memory/out_ptr_t" + }, + { + "cppref": "cpp/memory/align", + "cppdoc": "cpp/library/memory/align" + }, + { + "cppref": "cpp/memory/destroy", + "cppdoc": "cpp/library/memory/destroy" + }, + { + "cppref": "cpp/memory/inout_ptr_t", + "cppdoc": "cpp/library/memory/inout_ptr_t" + }, + { + "cppref": "cpp/memory/uninitialized_default_construct", + "cppdoc": "cpp/library/memory/uninitialized_default_construct" + }, + { + "cppref": "cpp/memory/destroy_at", + "cppdoc": "cpp/library/memory/destroy_at" + }, + { + "cppref": "cpp/memory/start_lifetime_as", + "cppdoc": "cpp/library/memory/start_lifetime_as" + }, + { + "cppref": "cpp/memory/destroy_n", + "cppdoc": "cpp/library/memory/destroy_n" + }, + { + "cppref": "cpp/memory/construct_at", + "cppdoc": "cpp/library/memory/construct_at" + }, + { + "cppref": "cpp/memory/uninitialized_value_construct", + "cppdoc": "cpp/library/memory/uninitialized_value_construct" + }, + { + "cppref": "cpp/memory/is_sufficiently_aligned", + "cppdoc": "cpp/library/memory/is_sufficiently_aligned" + }, + { + "cppref": "cpp/memory/uninitialized_default_construct_n", + "cppdoc": "cpp/library/memory/uninitialized_default_construct_n" + }, + { + "cppref": "cpp/memory/enable_shared_from_this", + "cppdoc": "cpp/library/memory/enable_shared_from_this" + }, + { + "cppref": "cpp/memory/return_temporary_buffer", + "cppdoc": "cpp/library/memory/return_temporary_buffer" + }, + { + "cppref": "cpp/memory/allocator", + "cppdoc": "cpp/library/memory/allocator" + }, + { + "cppref": "cpp/memory/allocator_arg_t", + "cppdoc": "cpp/library/memory/allocator_arg_t" + }, + { + "cppref": "cpp/memory/synchronized_pool_resource", + "cppdoc": "cpp/library/memory/synchronized_pool_resource" + }, + { + "cppref": "cpp/memory/null_memory_resource", + "cppdoc": "cpp/library/memory/null_memory_resource" + }, + { + "cppref": "cpp/memory/uninitialized_copy_n", + "cppdoc": "cpp/library/memory/uninitialized_copy_n" + }, + { + "cppref": "cpp/memory/uses_allocator", + "cppdoc": "cpp/library/memory/uses_allocator" + }, + { + "cppref": "cpp/memory/unique_ptr", + "cppdoc": "cpp/library/memory/unique_ptr" + }, + { + "cppref": "cpp/memory/memory_resource", + "cppdoc": "cpp/library/memory/memory_resource" + }, + { + "cppref": "cpp/memory/enable_shared_from_this/shared_from_this", + "cppdoc": "cpp/library/memory/enable_shared_from_this/shared_from_this" + }, + { + "cppref": "cpp/memory/enable_shared_from_this/weak_from_this", + "cppdoc": "cpp/library/memory/enable_shared_from_this/weak_from_this" + }, + { + "cppref": "cpp/memory/enable_shared_from_this/~enable_shared_from_this", + "cppdoc": "cpp/library/memory/enable_shared_from_this/~enable_shared_from_this" + }, + { + "cppref": "cpp/memory/enable_shared_from_this/operator=", + "cppdoc": "cpp/library/memory/enable_shared_from_this/operator=" + }, + { + "cppref": "cpp/memory/enable_shared_from_this/enable_shared_from_this", + "cppdoc": "cpp/library/memory/enable_shared_from_this/enable_shared_from_this" + }, + { + "cppref": "cpp/memory/auto_ptr/auto_ptr", + "cppdoc": "cpp/library/memory/auto_ptr/auto_ptr" + }, + { + "cppref": "cpp/memory/auto_ptr/operator_auto_ptr", + "cppdoc": "cpp/library/memory/auto_ptr/operator_auto_ptr" + }, + { + "cppref": "cpp/memory/auto_ptr/~auto_ptr", + "cppdoc": "cpp/library/memory/auto_ptr/~auto_ptr" + }, + { + "cppref": "cpp/memory/auto_ptr/reset", + "cppdoc": "cpp/library/memory/auto_ptr/reset" + }, + { + "cppref": "cpp/memory/auto_ptr/operator_star_", + "cppdoc": "cpp/library/memory/auto_ptr/operator_star_" + }, + { + "cppref": "cpp/memory/auto_ptr/release", + "cppdoc": "cpp/library/memory/auto_ptr/release" + }, + { + "cppref": "cpp/memory/auto_ptr/get", + "cppdoc": "cpp/library/memory/auto_ptr/get" + }, + { + "cppref": "cpp/memory/auto_ptr/operator=", + "cppdoc": "cpp/library/memory/auto_ptr/operator=" + }, + { + "cppref": "cpp/memory/unsynchronized_pool_resource/do_is_equal", + "cppdoc": "cpp/library/memory/unsynchronized_pool_resource/do_is_equal" + }, + { + "cppref": "cpp/memory/unsynchronized_pool_resource/do_deallocate", + "cppdoc": "cpp/library/memory/unsynchronized_pool_resource/do_deallocate" + }, + { + "cppref": "cpp/memory/unsynchronized_pool_resource/unsynchronized_pool_resource", + "cppdoc": "cpp/library/memory/unsynchronized_pool_resource/unsynchronized_pool_resource" + }, + { + "cppref": "cpp/memory/unsynchronized_pool_resource/do_allocate", + "cppdoc": "cpp/library/memory/unsynchronized_pool_resource/do_allocate" + }, + { + "cppref": "cpp/memory/unsynchronized_pool_resource/options", + "cppdoc": "cpp/library/memory/unsynchronized_pool_resource/options" + }, + { + "cppref": "cpp/memory/unsynchronized_pool_resource/release", + "cppdoc": "cpp/library/memory/unsynchronized_pool_resource/release" + }, + { + "cppref": "cpp/memory/unsynchronized_pool_resource/~unsynchronized_pool_resource", + "cppdoc": "cpp/library/memory/unsynchronized_pool_resource/~unsynchronized_pool_resource" + }, + { + "cppref": "cpp/memory/unsynchronized_pool_resource/upstream_resource", + "cppdoc": "cpp/library/memory/unsynchronized_pool_resource/upstream_resource" + }, + { + "cppref": "cpp/memory/memory_resource/do_is_equal", + "cppdoc": "cpp/library/memory/memory_resource/do_is_equal" + }, + { + "cppref": "cpp/memory/memory_resource/operator_eq", + "cppdoc": "cpp/library/memory/memory_resource/operator_eq" + }, + { + "cppref": "cpp/memory/memory_resource/allocate", + "cppdoc": "cpp/library/memory/memory_resource/allocate" + }, + { + "cppref": "cpp/memory/memory_resource/deallocate", + "cppdoc": "cpp/library/memory/memory_resource/deallocate" + }, + { + "cppref": "cpp/memory/memory_resource/do_deallocate", + "cppdoc": "cpp/library/memory/memory_resource/do_deallocate" + }, + { + "cppref": "cpp/memory/memory_resource/do_allocate", + "cppdoc": "cpp/library/memory/memory_resource/do_allocate" + }, + { + "cppref": "cpp/memory/memory_resource/is_equal", + "cppdoc": "cpp/library/memory/memory_resource/is_equal" + }, + { + "cppref": "cpp/memory/memory_resource/memory_resource", + "cppdoc": "cpp/library/memory/memory_resource/memory_resource" + }, + { + "cppref": "cpp/memory/new/operator_new", + "cppdoc": "cpp/library/memory/new/operator_new" + }, + { + "cppref": "cpp/memory/new/set_new_handler", + "cppdoc": "cpp/library/memory/new/set_new_handler" + }, + { + "cppref": "cpp/memory/new/get_new_handler", + "cppdoc": "cpp/library/memory/new/get_new_handler" + }, + { + "cppref": "cpp/memory/new/bad_alloc", + "cppdoc": "cpp/library/memory/new/bad_alloc" + }, + { + "cppref": "cpp/memory/new/align_val_t", + "cppdoc": "cpp/library/memory/new/align_val_t" + }, + { + "cppref": "cpp/memory/new/nothrow_t", + "cppdoc": "cpp/library/memory/new/nothrow_t" + }, + { + "cppref": "cpp/memory/new/nothrow", + "cppdoc": "cpp/library/memory/new/nothrow" + }, + { + "cppref": "cpp/memory/new/new_handler", + "cppdoc": "cpp/library/memory/new/new_handler" + }, + { + "cppref": "cpp/memory/new/bad_array_new_length", + "cppdoc": "cpp/library/memory/new/bad_array_new_length" + }, + { + "cppref": "cpp/memory/new/destroying_delete_t", + "cppdoc": "cpp/library/memory/new/destroying_delete_t" + }, + { + "cppref": "cpp/memory/new/operator_delete", + "cppdoc": "cpp/library/memory/new/operator_delete" + }, + { + "cppref": "cpp/memory/monotonic_buffer_resource/~monotonic_buffer_resource", + "cppdoc": "cpp/library/memory/monotonic_buffer_resource/~monotonic_buffer_resource" + }, + { + "cppref": "cpp/memory/monotonic_buffer_resource/do_is_equal", + "cppdoc": "cpp/library/memory/monotonic_buffer_resource/do_is_equal" + }, + { + "cppref": "cpp/memory/monotonic_buffer_resource/monotonic_buffer_resource", + "cppdoc": "cpp/library/memory/monotonic_buffer_resource/monotonic_buffer_resource" + }, + { + "cppref": "cpp/memory/monotonic_buffer_resource/do_deallocate", + "cppdoc": "cpp/library/memory/monotonic_buffer_resource/do_deallocate" + }, + { + "cppref": "cpp/memory/monotonic_buffer_resource/do_allocate", + "cppdoc": "cpp/library/memory/monotonic_buffer_resource/do_allocate" + }, + { + "cppref": "cpp/memory/monotonic_buffer_resource/release", + "cppdoc": "cpp/library/memory/monotonic_buffer_resource/release" + }, + { + "cppref": "cpp/memory/monotonic_buffer_resource/upstream_resource", + "cppdoc": "cpp/library/memory/monotonic_buffer_resource/upstream_resource" + }, + { + "cppref": "cpp/memory/scoped_allocator_adaptor/helpers", + "cppdoc": "cpp/library/memory/scoped_allocator_adaptor/helpers" + }, + { + "cppref": "cpp/memory/scoped_allocator_adaptor/outer_allocator", + "cppdoc": "cpp/library/memory/scoped_allocator_adaptor/outer_allocator" + }, + { + "cppref": "cpp/memory/scoped_allocator_adaptor/allocate", + "cppdoc": "cpp/library/memory/scoped_allocator_adaptor/allocate" + }, + { + "cppref": "cpp/memory/scoped_allocator_adaptor/inner_allocator", + "cppdoc": "cpp/library/memory/scoped_allocator_adaptor/inner_allocator" + }, + { + "cppref": "cpp/memory/scoped_allocator_adaptor/scoped_allocator_adaptor", + "cppdoc": "cpp/library/memory/scoped_allocator_adaptor/scoped_allocator_adaptor" + }, + { + "cppref": "cpp/memory/scoped_allocator_adaptor/deallocate", + "cppdoc": "cpp/library/memory/scoped_allocator_adaptor/deallocate" + }, + { + "cppref": "cpp/memory/scoped_allocator_adaptor/max_size", + "cppdoc": "cpp/library/memory/scoped_allocator_adaptor/max_size" + }, + { + "cppref": "cpp/memory/scoped_allocator_adaptor/deduction_guides", + "cppdoc": "cpp/library/memory/scoped_allocator_adaptor/deduction_guides" + }, + { + "cppref": "cpp/memory/scoped_allocator_adaptor/select_on_container_copy_construction", + "cppdoc": "cpp/library/memory/scoped_allocator_adaptor/select_on_container_copy_construction" + }, + { + "cppref": "cpp/memory/scoped_allocator_adaptor/construct", + "cppdoc": "cpp/library/memory/scoped_allocator_adaptor/construct" + }, + { + "cppref": "cpp/memory/scoped_allocator_adaptor/operator_cmp", + "cppdoc": "cpp/library/memory/scoped_allocator_adaptor/operator_cmp" + }, + { + "cppref": "cpp/memory/scoped_allocator_adaptor/destroy", + "cppdoc": "cpp/library/memory/scoped_allocator_adaptor/destroy" + }, + { + "cppref": "cpp/memory/scoped_allocator_adaptor/operator=", + "cppdoc": "cpp/library/memory/scoped_allocator_adaptor/operator=" + }, + { + "cppref": "cpp/memory/scoped_allocator_adaptor/~scoped_allocator_adaptor", + "cppdoc": "cpp/library/memory/scoped_allocator_adaptor/~scoped_allocator_adaptor" + }, + { + "cppref": "cpp/memory/unique_ptr/operator_at", + "cppdoc": "cpp/library/memory/unique_ptr/operator_at" + }, + { + "cppref": "cpp/memory/unique_ptr/get_deleter", + "cppdoc": "cpp/library/memory/unique_ptr/get_deleter" + }, + { + "cppref": "cpp/memory/unique_ptr/hash", + "cppdoc": "cpp/library/memory/unique_ptr/hash" + }, + { + "cppref": "cpp/memory/unique_ptr/swap2", + "cppdoc": "cpp/library/memory/unique_ptr/swap2" + }, + { + "cppref": "cpp/memory/unique_ptr/reset", + "cppdoc": "cpp/library/memory/unique_ptr/reset" + }, + { + "cppref": "cpp/memory/unique_ptr/swap", + "cppdoc": "cpp/library/memory/unique_ptr/swap" + }, + { + "cppref": "cpp/memory/unique_ptr/operator_star_", + "cppdoc": "cpp/library/memory/unique_ptr/operator_star_" + }, + { + "cppref": "cpp/memory/unique_ptr/release", + "cppdoc": "cpp/library/memory/unique_ptr/release" + }, + { + "cppref": "cpp/memory/unique_ptr/get", + "cppdoc": "cpp/library/memory/unique_ptr/get" + }, + { + "cppref": "cpp/memory/unique_ptr/make_unique", + "cppdoc": "cpp/library/memory/unique_ptr/make_unique" + }, + { + "cppref": "cpp/memory/unique_ptr/operator_cmp", + "cppdoc": "cpp/library/memory/unique_ptr/operator_cmp" + }, + { + "cppref": "cpp/memory/unique_ptr/~unique_ptr", + "cppdoc": "cpp/library/memory/unique_ptr/~unique_ptr" + }, + { + "cppref": "cpp/memory/unique_ptr/operator_bool", + "cppdoc": "cpp/library/memory/unique_ptr/operator_bool" + }, + { + "cppref": "cpp/memory/unique_ptr/operator=", + "cppdoc": "cpp/library/memory/unique_ptr/operator=" + }, + { + "cppref": "cpp/memory/unique_ptr/operator_ltlt", + "cppdoc": "cpp/library/memory/unique_ptr/operator_ltlt" + }, + { + "cppref": "cpp/memory/unique_ptr/unique_ptr", + "cppdoc": "cpp/library/memory/unique_ptr/unique_ptr" + }, + { + "cppref": "cpp/memory/ranges/uninitialized_value_construct_n", + "cppdoc": "cpp/library/memory/ranges/uninitialized_value_construct_n" + }, + { + "cppref": "cpp/memory/ranges/nothrow_concepts", + "cppdoc": "cpp/library/memory/ranges/nothrow_concepts" + }, + { + "cppref": "cpp/memory/ranges/uninitialized_move", + "cppdoc": "cpp/library/memory/ranges/uninitialized_move" + }, + { + "cppref": "cpp/memory/ranges/uninitialized_move_n", + "cppdoc": "cpp/library/memory/ranges/uninitialized_move_n" + }, + { + "cppref": "cpp/memory/ranges/uninitialized_copy", + "cppdoc": "cpp/library/memory/ranges/uninitialized_copy" + }, + { + "cppref": "cpp/memory/ranges/uninitialized_fill", + "cppdoc": "cpp/library/memory/ranges/uninitialized_fill" + }, + { + "cppref": "cpp/memory/ranges/uninitialized_fill_n", + "cppdoc": "cpp/library/memory/ranges/uninitialized_fill_n" + }, + { + "cppref": "cpp/memory/ranges/destroy", + "cppdoc": "cpp/library/memory/ranges/destroy" + }, + { + "cppref": "cpp/memory/ranges/uninitialized_default_construct", + "cppdoc": "cpp/library/memory/ranges/uninitialized_default_construct" + }, + { + "cppref": "cpp/memory/ranges/destroy_at", + "cppdoc": "cpp/library/memory/ranges/destroy_at" + }, + { + "cppref": "cpp/memory/ranges/destroy_n", + "cppdoc": "cpp/library/memory/ranges/destroy_n" + }, + { + "cppref": "cpp/memory/ranges/construct_at", + "cppdoc": "cpp/library/memory/ranges/construct_at" + }, + { + "cppref": "cpp/memory/ranges/uninitialized_value_construct", + "cppdoc": "cpp/library/memory/ranges/uninitialized_value_construct" + }, + { + "cppref": "cpp/memory/ranges/uninitialized_default_construct_n", + "cppdoc": "cpp/library/memory/ranges/uninitialized_default_construct_n" + }, + { + "cppref": "cpp/memory/ranges/uninitialized_copy_n", + "cppdoc": "cpp/library/memory/ranges/uninitialized_copy_n" + }, + { + "cppref": "cpp/memory/inout_ptr_t/inout_ptr", + "cppdoc": "cpp/library/memory/inout_ptr_t/inout_ptr" + }, + { + "cppref": "cpp/memory/inout_ptr_t/~inout_ptr_t", + "cppdoc": "cpp/library/memory/inout_ptr_t/~inout_ptr_t" + }, + { + "cppref": "cpp/memory/inout_ptr_t/operator_ptr", + "cppdoc": "cpp/library/memory/inout_ptr_t/operator_ptr" + }, + { + "cppref": "cpp/memory/inout_ptr_t/inout_ptr_t", + "cppdoc": "cpp/library/memory/inout_ptr_t/inout_ptr_t" + }, + { + "cppref": "cpp/memory/polymorphic_allocator/allocate_object", + "cppdoc": "cpp/library/memory/polymorphic_allocator/allocate_object" + }, + { + "cppref": "cpp/memory/polymorphic_allocator/operator_eq", + "cppdoc": "cpp/library/memory/polymorphic_allocator/operator_eq" + }, + { + "cppref": "cpp/memory/polymorphic_allocator/allocate", + "cppdoc": "cpp/library/memory/polymorphic_allocator/allocate" + }, + { + "cppref": "cpp/memory/polymorphic_allocator/deallocate", + "cppdoc": "cpp/library/memory/polymorphic_allocator/deallocate" + }, + { + "cppref": "cpp/memory/polymorphic_allocator/polymorphic_allocator", + "cppdoc": "cpp/library/memory/polymorphic_allocator/polymorphic_allocator" + }, + { + "cppref": "cpp/memory/polymorphic_allocator/deallocate_bytes", + "cppdoc": "cpp/library/memory/polymorphic_allocator/deallocate_bytes" + }, + { + "cppref": "cpp/memory/polymorphic_allocator/delete_object", + "cppdoc": "cpp/library/memory/polymorphic_allocator/delete_object" + }, + { + "cppref": "cpp/memory/polymorphic_allocator/deallocate_object", + "cppdoc": "cpp/library/memory/polymorphic_allocator/deallocate_object" + }, + { + "cppref": "cpp/memory/polymorphic_allocator/allocate_bytes", + "cppdoc": "cpp/library/memory/polymorphic_allocator/allocate_bytes" + }, + { + "cppref": "cpp/memory/polymorphic_allocator/select_on_container_copy_construction", + "cppdoc": "cpp/library/memory/polymorphic_allocator/select_on_container_copy_construction" + }, + { + "cppref": "cpp/memory/polymorphic_allocator/construct", + "cppdoc": "cpp/library/memory/polymorphic_allocator/construct" + }, + { + "cppref": "cpp/memory/polymorphic_allocator/new_object", + "cppdoc": "cpp/library/memory/polymorphic_allocator/new_object" + }, + { + "cppref": "cpp/memory/polymorphic_allocator/destroy", + "cppdoc": "cpp/library/memory/polymorphic_allocator/destroy" + }, + { + "cppref": "cpp/memory/polymorphic_allocator/resource", + "cppdoc": "cpp/library/memory/polymorphic_allocator/resource" + }, + { + "cppref": "cpp/memory/c/free", + "cppdoc": "cpp/library/memory/c/free" + }, + { + "cppref": "cpp/memory/c/calloc", + "cppdoc": "cpp/library/memory/c/calloc" + }, + { + "cppref": "cpp/memory/c/realloc", + "cppdoc": "cpp/library/memory/c/realloc" + }, + { + "cppref": "cpp/memory/c/malloc", + "cppdoc": "cpp/library/memory/c/malloc" + }, + { + "cppref": "cpp/memory/c/aligned_alloc", + "cppdoc": "cpp/library/memory/c/aligned_alloc" + }, + { + "cppref": "cpp/memory/shared_ptr/operator_at", + "cppdoc": "cpp/library/memory/shared_ptr/operator_at" + }, + { + "cppref": "cpp/memory/shared_ptr/get_deleter", + "cppdoc": "cpp/library/memory/shared_ptr/get_deleter" + }, + { + "cppref": "cpp/memory/shared_ptr/atomic", + "cppdoc": "cpp/library/memory/shared_ptr/atomic" + }, + { + "cppref": "cpp/memory/shared_ptr/use_count", + "cppdoc": "cpp/library/memory/shared_ptr/use_count" + }, + { + "cppref": "cpp/memory/shared_ptr/owner_before", + "cppdoc": "cpp/library/memory/shared_ptr/owner_before" + }, + { + "cppref": "cpp/memory/shared_ptr/hash", + "cppdoc": "cpp/library/memory/shared_ptr/hash" + }, + { + "cppref": "cpp/memory/shared_ptr/swap2", + "cppdoc": "cpp/library/memory/shared_ptr/swap2" + }, + { + "cppref": "cpp/memory/shared_ptr/deduction_guides", + "cppdoc": "cpp/library/memory/shared_ptr/deduction_guides" + }, + { + "cppref": "cpp/memory/shared_ptr/reset", + "cppdoc": "cpp/library/memory/shared_ptr/reset" + }, + { + "cppref": "cpp/memory/shared_ptr/shared_ptr", + "cppdoc": "cpp/library/memory/shared_ptr/shared_ptr" + }, + { + "cppref": "cpp/memory/shared_ptr/swap", + "cppdoc": "cpp/library/memory/shared_ptr/swap" + }, + { + "cppref": "cpp/memory/shared_ptr/owner_equal", + "cppdoc": "cpp/library/memory/shared_ptr/owner_equal" + }, + { + "cppref": "cpp/memory/shared_ptr/atomic2", + "cppdoc": "cpp/library/memory/shared_ptr/atomic2" + }, + { + "cppref": "cpp/memory/shared_ptr/owner_hash", + "cppdoc": "cpp/library/memory/shared_ptr/owner_hash" + }, + { + "cppref": "cpp/memory/shared_ptr/operator_star_", + "cppdoc": "cpp/library/memory/shared_ptr/operator_star_" + }, + { + "cppref": "cpp/memory/shared_ptr/get", + "cppdoc": "cpp/library/memory/shared_ptr/get" + }, + { + "cppref": "cpp/memory/shared_ptr/operator_cmp", + "cppdoc": "cpp/library/memory/shared_ptr/operator_cmp" + }, + { + "cppref": "cpp/memory/shared_ptr/make_shared", + "cppdoc": "cpp/library/memory/shared_ptr/make_shared" + }, + { + "cppref": "cpp/memory/shared_ptr/unique", + "cppdoc": "cpp/library/memory/shared_ptr/unique" + }, + { + "cppref": "cpp/memory/shared_ptr/allocate_shared", + "cppdoc": "cpp/library/memory/shared_ptr/allocate_shared" + }, + { + "cppref": "cpp/memory/shared_ptr/operator_bool", + "cppdoc": "cpp/library/memory/shared_ptr/operator_bool" + }, + { + "cppref": "cpp/memory/shared_ptr/pointer_cast", + "cppdoc": "cpp/library/memory/shared_ptr/pointer_cast" + }, + { + "cppref": "cpp/memory/shared_ptr/operator=", + "cppdoc": "cpp/library/memory/shared_ptr/operator=" + }, + { + "cppref": "cpp/memory/shared_ptr/operator_ltlt", + "cppdoc": "cpp/library/memory/shared_ptr/operator_ltlt" + }, + { + "cppref": "cpp/memory/shared_ptr/~shared_ptr", + "cppdoc": "cpp/library/memory/shared_ptr/~shared_ptr" + }, + { + "cppref": "cpp/memory/weak_ptr/use_count", + "cppdoc": "cpp/library/memory/weak_ptr/use_count" + }, + { + "cppref": "cpp/memory/weak_ptr/owner_before", + "cppdoc": "cpp/library/memory/weak_ptr/owner_before" + }, + { + "cppref": "cpp/memory/weak_ptr/~weak_ptr", + "cppdoc": "cpp/library/memory/weak_ptr/~weak_ptr" + }, + { + "cppref": "cpp/memory/weak_ptr/swap2", + "cppdoc": "cpp/library/memory/weak_ptr/swap2" + }, + { + "cppref": "cpp/memory/weak_ptr/expired", + "cppdoc": "cpp/library/memory/weak_ptr/expired" + }, + { + "cppref": "cpp/memory/weak_ptr/deduction_guides", + "cppdoc": "cpp/library/memory/weak_ptr/deduction_guides" + }, + { + "cppref": "cpp/memory/weak_ptr/reset", + "cppdoc": "cpp/library/memory/weak_ptr/reset" + }, + { + "cppref": "cpp/memory/weak_ptr/weak_ptr", + "cppdoc": "cpp/library/memory/weak_ptr/weak_ptr" + }, + { + "cppref": "cpp/memory/weak_ptr/swap", + "cppdoc": "cpp/library/memory/weak_ptr/swap" + }, + { + "cppref": "cpp/memory/weak_ptr/owner_equal", + "cppdoc": "cpp/library/memory/weak_ptr/owner_equal" + }, + { + "cppref": "cpp/memory/weak_ptr/atomic2", + "cppdoc": "cpp/library/memory/weak_ptr/atomic2" + }, + { + "cppref": "cpp/memory/weak_ptr/lock", + "cppdoc": "cpp/library/memory/weak_ptr/lock" + }, + { + "cppref": "cpp/memory/weak_ptr/owner_hash", + "cppdoc": "cpp/library/memory/weak_ptr/owner_hash" + }, + { + "cppref": "cpp/memory/weak_ptr/operator=", + "cppdoc": "cpp/library/memory/weak_ptr/operator=" + }, + { + "cppref": "cpp/memory/raw_storage_iterator/raw_storage_iterator", + "cppdoc": "cpp/library/memory/raw_storage_iterator/raw_storage_iterator" + }, + { + "cppref": "cpp/memory/raw_storage_iterator/operator_arith", + "cppdoc": "cpp/library/memory/raw_storage_iterator/operator_arith" + }, + { + "cppref": "cpp/memory/raw_storage_iterator/operator_star_", + "cppdoc": "cpp/library/memory/raw_storage_iterator/operator_star_" + }, + { + "cppref": "cpp/memory/raw_storage_iterator/operator=", + "cppdoc": "cpp/library/memory/raw_storage_iterator/operator=" + }, + { + "cppref": "cpp/memory/raw_storage_iterator/base", + "cppdoc": "cpp/library/memory/raw_storage_iterator/base" + }, + { + "cppref": "cpp/memory/allocator/allocate", + "cppdoc": "cpp/library/memory/allocator/allocate" + }, + { + "cppref": "cpp/memory/allocator/deallocate", + "cppdoc": "cpp/library/memory/allocator/deallocate" + }, + { + "cppref": "cpp/memory/allocator/max_size", + "cppdoc": "cpp/library/memory/allocator/max_size" + }, + { + "cppref": "cpp/memory/allocator/~allocator", + "cppdoc": "cpp/library/memory/allocator/~allocator" + }, + { + "cppref": "cpp/memory/allocator/address", + "cppdoc": "cpp/library/memory/allocator/address" + }, + { + "cppref": "cpp/memory/allocator/allocate_at_least", + "cppdoc": "cpp/library/memory/allocator/allocate_at_least" + }, + { + "cppref": "cpp/memory/allocator/construct", + "cppdoc": "cpp/library/memory/allocator/construct" + }, + { + "cppref": "cpp/memory/allocator/operator_cmp", + "cppdoc": "cpp/library/memory/allocator/operator_cmp" + }, + { + "cppref": "cpp/memory/allocator/destroy", + "cppdoc": "cpp/library/memory/allocator/destroy" + }, + { + "cppref": "cpp/memory/allocator/allocator", + "cppdoc": "cpp/library/memory/allocator/allocator" + }, + { + "cppref": "cpp/memory/pointer_traits/pointer_to", + "cppdoc": "cpp/library/memory/pointer_traits/pointer_to" + }, + { + "cppref": "cpp/memory/pointer_traits/to_address", + "cppdoc": "cpp/library/memory/pointer_traits/to_address" + }, + { + "cppref": "cpp/memory/out_ptr_t/out_ptr", + "cppdoc": "cpp/library/memory/out_ptr_t/out_ptr" + }, + { + "cppref": "cpp/memory/out_ptr_t/~out_ptr_t", + "cppdoc": "cpp/library/memory/out_ptr_t/~out_ptr_t" + }, + { + "cppref": "cpp/memory/out_ptr_t/out_ptr_t", + "cppdoc": "cpp/library/memory/out_ptr_t/out_ptr_t" + }, + { + "cppref": "cpp/memory/out_ptr_t/operator_ptr", + "cppdoc": "cpp/library/memory/out_ptr_t/operator_ptr" + }, + { + "cppref": "cpp/memory/gc/get_pointer_safety", + "cppdoc": "cpp/library/memory/gc/get_pointer_safety" + }, + { + "cppref": "cpp/memory/gc/declare_no_pointers", + "cppdoc": "cpp/library/memory/gc/declare_no_pointers" + }, + { + "cppref": "cpp/memory/gc/undeclare_no_pointers", + "cppdoc": "cpp/library/memory/gc/undeclare_no_pointers" + }, + { + "cppref": "cpp/memory/gc/declare_reachable", + "cppdoc": "cpp/library/memory/gc/declare_reachable" + }, + { + "cppref": "cpp/memory/gc/pointer_safety", + "cppdoc": "cpp/library/memory/gc/pointer_safety" + }, + { + "cppref": "cpp/memory/gc/undeclare_reachable", + "cppdoc": "cpp/library/memory/gc/undeclare_reachable" + }, + { + "cppref": "cpp/memory/allocator_traits/allocate", + "cppdoc": "cpp/library/memory/allocator_traits/allocate" + }, + { + "cppref": "cpp/memory/allocator_traits/deallocate", + "cppdoc": "cpp/library/memory/allocator_traits/deallocate" + }, + { + "cppref": "cpp/memory/allocator_traits/max_size", + "cppdoc": "cpp/library/memory/allocator_traits/max_size" + }, + { + "cppref": "cpp/memory/allocator_traits/allocate_at_least", + "cppdoc": "cpp/library/memory/allocator_traits/allocate_at_least" + }, + { + "cppref": "cpp/memory/allocator_traits/select_on_container_copy_construction", + "cppdoc": "cpp/library/memory/allocator_traits/select_on_container_copy_construction" + }, + { + "cppref": "cpp/memory/allocator_traits/construct", + "cppdoc": "cpp/library/memory/allocator_traits/construct" + }, + { + "cppref": "cpp/memory/allocator_traits/destroy", + "cppdoc": "cpp/library/memory/allocator_traits/destroy" + }, + { + "cppref": "cpp/memory/synchronized_pool_resource/do_is_equal", + "cppdoc": "cpp/library/memory/synchronized_pool_resource/do_is_equal" + }, + { + "cppref": "cpp/memory/synchronized_pool_resource/do_deallocate", + "cppdoc": "cpp/library/memory/synchronized_pool_resource/do_deallocate" + }, + { + "cppref": "cpp/memory/synchronized_pool_resource/do_allocate", + "cppdoc": "cpp/library/memory/synchronized_pool_resource/do_allocate" + }, + { + "cppref": "cpp/memory/synchronized_pool_resource/options", + "cppdoc": "cpp/library/memory/synchronized_pool_resource/options" + }, + { + "cppref": "cpp/memory/synchronized_pool_resource/release", + "cppdoc": "cpp/library/memory/synchronized_pool_resource/release" + }, + { + "cppref": "cpp/memory/synchronized_pool_resource/~synchronized_pool_resource", + "cppdoc": "cpp/library/memory/synchronized_pool_resource/~synchronized_pool_resource" + }, + { + "cppref": "cpp/memory/synchronized_pool_resource/synchronized_pool_resource", + "cppdoc": "cpp/library/memory/synchronized_pool_resource/synchronized_pool_resource" + }, + { + "cppref": "cpp/memory/synchronized_pool_resource/upstream_resource", + "cppdoc": "cpp/library/memory/synchronized_pool_resource/upstream_resource" + }, + { + "cppref": "cpp/atomic/atomic_is_lock_free", + "cppdoc": "cpp/library/atomic/atomic_is_lock_free" + }, + { + "cppref": "cpp/atomic/atomic_flag", + "cppdoc": "cpp/library/atomic/atomic_flag" + }, + { + "cppref": "cpp/atomic/atomic", + "cppdoc": "cpp/library/atomic/atomic" + }, + { + "cppref": "cpp/atomic/atomic_load", + "cppdoc": "cpp/library/atomic/atomic_load" + }, + { + "cppref": "cpp/atomic/atomic_flag_notify_one", + "cppdoc": "cpp/library/atomic/atomic_flag_notify_one" + }, + { + "cppref": "cpp/atomic/atomic_signal_fence", + "cppdoc": "cpp/library/atomic/atomic_signal_fence" + }, + { + "cppref": "cpp/atomic/atomic_store", + "cppdoc": "cpp/library/atomic/atomic_store" + }, + { + "cppref": "cpp/atomic/atomic_fetch_sub", + "cppdoc": "cpp/library/atomic/atomic_fetch_sub" + }, + { + "cppref": "cpp/atomic/atomic_fetch_max", + "cppdoc": "cpp/library/atomic/atomic_fetch_max" + }, + { + "cppref": "cpp/atomic/atomic_fetch_and", + "cppdoc": "cpp/library/atomic/atomic_fetch_and" + }, + { + "cppref": "cpp/atomic/ATOMIC_FLAG_INIT", + "cppdoc": "cpp/library/atomic/ATOMIC_FLAG_INIT" + }, + { + "cppref": "cpp/atomic/atomic_flag_test", + "cppdoc": "cpp/library/atomic/atomic_flag_test" + }, + { + "cppref": "cpp/atomic/atomic_ref", + "cppdoc": "cpp/library/atomic/atomic_ref" + }, + { + "cppref": "cpp/atomic/kill_dependency", + "cppdoc": "cpp/library/atomic/kill_dependency" + }, + { + "cppref": "cpp/atomic/atomic_flag_clear", + "cppdoc": "cpp/library/atomic/atomic_flag_clear" + }, + { + "cppref": "cpp/atomic/atomic_notify_one", + "cppdoc": "cpp/library/atomic/atomic_notify_one" + }, + { + "cppref": "cpp/atomic/atomic_notify_all", + "cppdoc": "cpp/library/atomic/atomic_notify_all" + }, + { + "cppref": "cpp/atomic/atomic_flag_notify_all", + "cppdoc": "cpp/library/atomic/atomic_flag_notify_all" + }, + { + "cppref": "cpp/atomic/atomic_fetch_or", + "cppdoc": "cpp/library/atomic/atomic_fetch_or" + }, + { + "cppref": "cpp/atomic/memory_order", + "cppdoc": "cpp/library/atomic/memory_order" + }, + { + "cppref": "cpp/atomic/atomic_wait", + "cppdoc": "cpp/library/atomic/atomic_wait" + }, + { + "cppref": "cpp/atomic/atomic_init", + "cppdoc": "cpp/library/atomic/atomic_init" + }, + { + "cppref": "cpp/atomic/atomic_fetch_min", + "cppdoc": "cpp/library/atomic/atomic_fetch_min" + }, + { + "cppref": "cpp/atomic/atomic_flag_wait", + "cppdoc": "cpp/library/atomic/atomic_flag_wait" + }, + { + "cppref": "cpp/atomic/atomic_fetch_xor", + "cppdoc": "cpp/library/atomic/atomic_fetch_xor" + }, + { + "cppref": "cpp/atomic/atomic_exchange", + "cppdoc": "cpp/library/atomic/atomic_exchange" + }, + { + "cppref": "cpp/atomic/ATOMIC_VAR_INIT", + "cppdoc": "cpp/library/atomic/ATOMIC_VAR_INIT" + }, + { + "cppref": "cpp/atomic/atomic_flag_test_and_set", + "cppdoc": "cpp/library/atomic/atomic_flag_test_and_set" + }, + { + "cppref": "cpp/atomic/atomic_compare_exchange", + "cppdoc": "cpp/library/atomic/atomic_compare_exchange" + }, + { + "cppref": "cpp/atomic/atomic_thread_fence", + "cppdoc": "cpp/library/atomic/atomic_thread_fence" + }, + { + "cppref": "cpp/atomic/atomic_fetch_add", + "cppdoc": "cpp/library/atomic/atomic_fetch_add" + }, + { + "cppref": "cpp/atomic/atomic_flag/atomic_flag", + "cppdoc": "cpp/library/atomic/atomic_flag/atomic_flag" + }, + { + "cppref": "cpp/atomic/atomic_flag/notify_all", + "cppdoc": "cpp/library/atomic/atomic_flag/notify_all" + }, + { + "cppref": "cpp/atomic/atomic_flag/test", + "cppdoc": "cpp/library/atomic/atomic_flag/test" + }, + { + "cppref": "cpp/atomic/atomic_flag/test_and_set", + "cppdoc": "cpp/library/atomic/atomic_flag/test_and_set" + }, + { + "cppref": "cpp/atomic/atomic_flag/notify_one", + "cppdoc": "cpp/library/atomic/atomic_flag/notify_one" + }, + { + "cppref": "cpp/atomic/atomic_flag/wait", + "cppdoc": "cpp/library/atomic/atomic_flag/wait" + }, + { + "cppref": "cpp/atomic/atomic_flag/operator=", + "cppdoc": "cpp/library/atomic/atomic_flag/operator=" + }, + { + "cppref": "cpp/atomic/atomic_flag/clear", + "cppdoc": "cpp/library/atomic/atomic_flag/clear" + }, + { + "cppref": "cpp/atomic/atomic/atomic", + "cppdoc": "cpp/library/atomic/atomic/atomic" + }, + { + "cppref": "cpp/atomic/atomic/exchange", + "cppdoc": "cpp/library/atomic/atomic/exchange" + }, + { + "cppref": "cpp/atomic/atomic/fetch_min", + "cppdoc": "cpp/library/atomic/atomic/fetch_min" + }, + { + "cppref": "cpp/atomic/atomic/fetch_xor", + "cppdoc": "cpp/library/atomic/atomic/fetch_xor" + }, + { + "cppref": "cpp/atomic/atomic/notify_all", + "cppdoc": "cpp/library/atomic/atomic/notify_all" + }, + { + "cppref": "cpp/atomic/atomic/is_always_lock_free", + "cppdoc": "cpp/library/atomic/atomic/is_always_lock_free" + }, + { + "cppref": "cpp/atomic/atomic/fetch_and", + "cppdoc": "cpp/library/atomic/atomic/fetch_and" + }, + { + "cppref": "cpp/atomic/atomic/compare_exchange", + "cppdoc": "cpp/library/atomic/atomic/compare_exchange" + }, + { + "cppref": "cpp/atomic/atomic/operator_arith", + "cppdoc": "cpp/library/atomic/atomic/operator_arith" + }, + { + "cppref": "cpp/atomic/atomic/operator_arith3", + "cppdoc": "cpp/library/atomic/atomic/operator_arith3" + }, + { + "cppref": "cpp/atomic/atomic/fetch_max", + "cppdoc": "cpp/library/atomic/atomic/fetch_max" + }, + { + "cppref": "cpp/atomic/atomic/notify_one", + "cppdoc": "cpp/library/atomic/atomic/notify_one" + }, + { + "cppref": "cpp/atomic/atomic/fetch_sub", + "cppdoc": "cpp/library/atomic/atomic/fetch_sub" + }, + { + "cppref": "cpp/atomic/atomic/wait", + "cppdoc": "cpp/library/atomic/atomic/wait" + }, + { + "cppref": "cpp/atomic/atomic/fetch_add", + "cppdoc": "cpp/library/atomic/atomic/fetch_add" + }, + { + "cppref": "cpp/atomic/atomic/is_lock_free", + "cppdoc": "cpp/library/atomic/atomic/is_lock_free" + }, + { + "cppref": "cpp/atomic/atomic/fetch_or", + "cppdoc": "cpp/library/atomic/atomic/fetch_or" + }, + { + "cppref": "cpp/atomic/atomic/operator_arith2", + "cppdoc": "cpp/library/atomic/atomic/operator_arith2" + }, + { + "cppref": "cpp/atomic/atomic/operator=", + "cppdoc": "cpp/library/atomic/atomic/operator=" + }, + { + "cppref": "cpp/atomic/atomic/store", + "cppdoc": "cpp/library/atomic/atomic/store" + }, + { + "cppref": "cpp/atomic/atomic/load", + "cppdoc": "cpp/library/atomic/atomic/load" + }, + { + "cppref": "cpp/atomic/atomic/operator_T", + "cppdoc": "cpp/library/atomic/atomic/operator_T" + }, + { + "cppref": "cpp/atomic/atomic_ref/required_alignment", + "cppdoc": "cpp/library/atomic/atomic_ref/required_alignment" + }, + { + "cppref": "cpp/atomic/atomic_ref/exchange", + "cppdoc": "cpp/library/atomic/atomic_ref/exchange" + }, + { + "cppref": "cpp/atomic/atomic_ref/fetch_min", + "cppdoc": "cpp/library/atomic/atomic_ref/fetch_min" + }, + { + "cppref": "cpp/atomic/atomic_ref/fetch_xor", + "cppdoc": "cpp/library/atomic/atomic_ref/fetch_xor" + }, + { + "cppref": "cpp/atomic/atomic_ref/notify_all", + "cppdoc": "cpp/library/atomic/atomic_ref/notify_all" + }, + { + "cppref": "cpp/atomic/atomic_ref/address", + "cppdoc": "cpp/library/atomic/atomic_ref/address" + }, + { + "cppref": "cpp/atomic/atomic_ref/atomic_ref", + "cppdoc": "cpp/library/atomic/atomic_ref/atomic_ref" + }, + { + "cppref": "cpp/atomic/atomic_ref/is_always_lock_free", + "cppdoc": "cpp/library/atomic/atomic_ref/is_always_lock_free" + }, + { + "cppref": "cpp/atomic/atomic_ref/fetch_and", + "cppdoc": "cpp/library/atomic/atomic_ref/fetch_and" + }, + { + "cppref": "cpp/atomic/atomic_ref/compare_exchange", + "cppdoc": "cpp/library/atomic/atomic_ref/compare_exchange" + }, + { + "cppref": "cpp/atomic/atomic_ref/operator_arith", + "cppdoc": "cpp/library/atomic/atomic_ref/operator_arith" + }, + { + "cppref": "cpp/atomic/atomic_ref/operator_arith3", + "cppdoc": "cpp/library/atomic/atomic_ref/operator_arith3" + }, + { + "cppref": "cpp/atomic/atomic_ref/fetch_max", + "cppdoc": "cpp/library/atomic/atomic_ref/fetch_max" + }, + { + "cppref": "cpp/atomic/atomic_ref/notify_one", + "cppdoc": "cpp/library/atomic/atomic_ref/notify_one" + }, + { + "cppref": "cpp/atomic/atomic_ref/fetch_sub", + "cppdoc": "cpp/library/atomic/atomic_ref/fetch_sub" + }, + { + "cppref": "cpp/atomic/atomic_ref/wait", + "cppdoc": "cpp/library/atomic/atomic_ref/wait" + }, + { + "cppref": "cpp/atomic/atomic_ref/fetch_add", + "cppdoc": "cpp/library/atomic/atomic_ref/fetch_add" + }, + { + "cppref": "cpp/atomic/atomic_ref/is_lock_free", + "cppdoc": "cpp/library/atomic/atomic_ref/is_lock_free" + }, + { + "cppref": "cpp/atomic/atomic_ref/fetch_or", + "cppdoc": "cpp/library/atomic/atomic_ref/fetch_or" + }, + { + "cppref": "cpp/atomic/atomic_ref/operator_arith2", + "cppdoc": "cpp/library/atomic/atomic_ref/operator_arith2" + }, + { + "cppref": "cpp/atomic/atomic_ref/operator=", + "cppdoc": "cpp/library/atomic/atomic_ref/operator=" + }, + { + "cppref": "cpp/atomic/atomic_ref/store", + "cppdoc": "cpp/library/atomic/atomic_ref/store" + }, + { + "cppref": "cpp/atomic/atomic_ref/load", + "cppdoc": "cpp/library/atomic/atomic_ref/load" + }, + { + "cppref": "cpp/atomic/atomic_ref/operator_T", + "cppdoc": "cpp/library/atomic/atomic_ref/operator_T" + }, + { + "cppref": "cpp/utility/to_chars", + "cppdoc": "cpp/library/text/to_chars" + }, + { + "cppref": "cpp/utility/as_const", + "cppdoc": "cpp/library/utility/as_const" + }, + { + "cppref": "cpp/utility/initializer_list", + "cppdoc": "cpp/library/utility/initializer_list" + }, + { + "cppref": "cpp/utility/exchange", + "cppdoc": "cpp/library/utility/exchange" + }, + { + "cppref": "cpp/utility/declval", + "cppdoc": "cpp/library/utility/declval" + }, + { + "cppref": "cpp/utility/source_location", + "cppdoc": "cpp/library/utility/source_location" + }, + { + "cppref": "cpp/utility/hash", + "cppdoc": "cpp/library/utility/hash" + }, + { + "cppref": "cpp/utility/integer_sequence", + "cppdoc": "cpp/library/meta/integer_sequence" + }, + { + "cppref": "cpp/utility/move", + "cppdoc": "cpp/library/utility/move" + }, + { + "cppref": "cpp/utility/any", + "cppdoc": "cpp/library/utility/any" + }, + { + "cppref": "cpp/utility/breakpoint_if_debugging", + "cppdoc": "cpp/library/error/breakpoint_if_debugging" + }, + { + "cppref": "cpp/utility/tuple", + "cppdoc": "cpp/library/utility/tuple" + }, + { + "cppref": "cpp/utility/basic_stacktrace", + "cppdoc": "cpp/library/error/basic_stacktrace" + }, + { + "cppref": "cpp/utility/format", + "cppdoc": "cpp/library/text/format" + }, + { + "cppref": "cpp/utility/variant", + "cppdoc": "cpp/library/utility/variant" + }, + { + "cppref": "cpp/utility/from_chars", + "cppdoc": "cpp/library/text/from_chars" + }, + { + "cppref": "cpp/utility/to_chars_result", + "cppdoc": "cpp/library/text/to_chars_result" + }, + { + "cppref": "cpp/utility/variadic", + "cppdoc": "cpp/library/utility/variadic" + }, + { + "cppref": "cpp/utility/launder", + "cppdoc": "cpp/library/memory/new/launder" + }, + { + "cppref": "cpp/utility/in_place", + "cppdoc": "cpp/library/utility/in_place" + }, + { + "cppref": "cpp/utility/bitset", + "cppdoc": "cpp/library/utility/bitset" + }, + { + "cppref": "cpp/utility/swap", + "cppdoc": "cpp/library/algorithm/swap" + }, + { + "cppref": "cpp/utility/make_from_tuple", + "cppdoc": "cpp/library/utility/make_from_tuple" + }, + { + "cppref": "cpp/utility/feature_test", + "cppdoc": "cpp/library/utility/feature_test" + }, + { + "cppref": "cpp/utility/from_chars_result", + "cppdoc": "cpp/library/text/from_chars_result" + }, + { + "cppref": "cpp/utility/tuple_size", + "cppdoc": "cpp/library/utility/tuple_size" + }, + { + "cppref": "cpp/utility/stacktrace_entry", + "cppdoc": "cpp/library/error/stacktrace_entry" + }, + { + "cppref": "cpp/utility/forward", + "cppdoc": "cpp/library/utility/forward" + }, + { + "cppref": "cpp/utility/bit", + "cppdoc": "cpp/library/utility/bit" + }, + { + "cppref": "cpp/utility/pair", + "cppdoc": "cpp/library/utility/pair" + }, + { + "cppref": "cpp/utility/apply", + "cppdoc": "cpp/library/utility/apply" + }, + { + "cppref": "cpp/utility/intcmp", + "cppdoc": "cpp/library/utility/intcmp" + }, + { + "cppref": "cpp/utility/forward_like", + "cppdoc": "cpp/library/utility/forward_like" + }, + { + "cppref": "cpp/utility/expected", + "cppdoc": "cpp/library/utility/expected" + }, + { + "cppref": "cpp/utility/breakpoint", + "cppdoc": "cpp/library/error/breakpoint" + }, + { + "cppref": "cpp/utility/tuple_element", + "cppdoc": "cpp/library/utility/tuple_element" + }, + { + "cppref": "cpp/utility/chars_format", + "cppdoc": "cpp/library/text/chars_format" + }, + { + "cppref": "cpp/utility/optional", + "cppdoc": "cpp/library/utility/optional" + }, + { + "cppref": "cpp/utility/functional", + "cppdoc": "cpp/library/utility/functional" + }, + { + "cppref": "cpp/utility/to_underlying", + "cppdoc": "cpp/library/utility/to_underlying" + }, + { + "cppref": "cpp/utility/move_if_noexcept", + "cppdoc": "cpp/library/utility/move_if_noexcept" + }, + { + "cppref": "cpp/utility/in_range", + "cppdoc": "cpp/library/utility/in_range" + }, + { + "cppref": "cpp/utility/rtti", + "cppdoc": "cpp/library/utility/rtti" + }, + { + "cppref": "cpp/utility/program", + "cppdoc": "cpp/library/utility/program" + }, + { + "cppref": "cpp/utility/is_debugger_present", + "cppdoc": "cpp/library/error/is_debugger_present" + }, + { + "cppref": "cpp/utility/pair/make_pair", + "cppdoc": "cpp/library/utility/pair/make_pair" + }, + { + "cppref": "cpp/utility/pair/swap2", + "cppdoc": "cpp/library/utility/pair/swap2" + }, + { + "cppref": "cpp/utility/pair/deduction_guides", + "cppdoc": "cpp/library/utility/pair/deduction_guides" + }, + { + "cppref": "cpp/utility/pair/swap", + "cppdoc": "cpp/library/utility/pair/swap" + }, + { + "cppref": "cpp/utility/pair/tuple_size", + "cppdoc": "cpp/library/utility/pair/tuple_size" + }, + { + "cppref": "cpp/utility/pair/common_type", + "cppdoc": "cpp/library/utility/pair/common_type" + }, + { + "cppref": "cpp/utility/pair/get", + "cppdoc": "cpp/library/utility/pair/get" + }, + { + "cppref": "cpp/utility/pair/pair", + "cppdoc": "cpp/library/utility/pair/pair" + }, + { + "cppref": "cpp/utility/pair/operator_cmp", + "cppdoc": "cpp/library/utility/pair/operator_cmp" + }, + { + "cppref": "cpp/utility/pair/tuple_element", + "cppdoc": "cpp/library/utility/pair/tuple_element" + }, + { + "cppref": "cpp/utility/pair/operator=", + "cppdoc": "cpp/library/utility/pair/operator=" + }, + { + "cppref": "cpp/utility/pair/basic_common_reference", + "cppdoc": "cpp/library/utility/pair/basic_common_reference" + }, + { + "cppref": "cpp/utility/variadic/va_list", + "cppdoc": "cpp/library/utility/variadic/va_list" + }, + { + "cppref": "cpp/utility/variadic/va_copy", + "cppdoc": "cpp/library/utility/variadic/va_copy" + }, + { + "cppref": "cpp/utility/variadic/va_arg", + "cppdoc": "cpp/library/utility/variadic/va_arg" + }, + { + "cppref": "cpp/utility/variadic/va_start", + "cppdoc": "cpp/library/utility/variadic/va_start" + }, + { + "cppref": "cpp/utility/variadic/va_end", + "cppdoc": "cpp/library/utility/variadic/va_end" + }, + { + "cppref": "cpp/utility/any/~any", + "cppdoc": "cpp/library/utility/any/~any" + }, + { + "cppref": "cpp/utility/any/emplace", + "cppdoc": "cpp/library/utility/any/emplace" + }, + { + "cppref": "cpp/utility/any/make_any", + "cppdoc": "cpp/library/utility/any/make_any" + }, + { + "cppref": "cpp/utility/any/any", + "cppdoc": "cpp/library/utility/any/any" + }, + { + "cppref": "cpp/utility/any/swap2", + "cppdoc": "cpp/library/utility/any/swap2" + }, + { + "cppref": "cpp/utility/any/reset", + "cppdoc": "cpp/library/utility/any/reset" + }, + { + "cppref": "cpp/utility/any/swap", + "cppdoc": "cpp/library/utility/any/swap" + }, + { + "cppref": "cpp/utility/any/any_cast", + "cppdoc": "cpp/library/utility/any/any_cast" + }, + { + "cppref": "cpp/utility/any/type", + "cppdoc": "cpp/library/utility/any/type" + }, + { + "cppref": "cpp/utility/any/bad_any_cast", + "cppdoc": "cpp/library/utility/any/bad_any_cast" + }, + { + "cppref": "cpp/utility/any/operator=", + "cppdoc": "cpp/library/utility/any/operator=" + }, + { + "cppref": "cpp/utility/any/has_value", + "cppdoc": "cpp/library/utility/any/has_value" + }, + { + "cppref": "cpp/utility/compare/compare_three_way_result", + "cppdoc": "cpp/library/utility/compare/compare_three_way_result" + }, + { + "cppref": "cpp/utility/compare/compare_weak_order_fallback", + "cppdoc": "cpp/library/utility/compare/compare_weak_order_fallback" + }, + { + "cppref": "cpp/utility/compare/compare_strong_order_fallback", + "cppdoc": "cpp/library/utility/compare/compare_strong_order_fallback" + }, + { + "cppref": "cpp/utility/compare/named_comparison_functions", + "cppdoc": "cpp/library/utility/compare/named_comparison_functions" + }, + { + "cppref": "cpp/utility/compare/partial_order", + "cppdoc": "cpp/library/utility/compare/partial_order" + }, + { + "cppref": "cpp/utility/compare/strong_order", + "cppdoc": "cpp/library/utility/compare/strong_order" + }, + { + "cppref": "cpp/utility/compare/weak_order", + "cppdoc": "cpp/library/utility/compare/weak_order" + }, + { + "cppref": "cpp/utility/compare/strong_ordering", + "cppdoc": "cpp/library/utility/compare/strong_ordering" + }, + { + "cppref": "cpp/utility/compare/three_way_comparable", + "cppdoc": "cpp/library/utility/compare/three_way_comparable" + }, + { + "cppref": "cpp/utility/compare/compare_three_way", + "cppdoc": "cpp/library/utility/functional/compare_three_way" + }, + { + "cppref": "cpp/utility/compare/compare_partial_order_fallback", + "cppdoc": "cpp/library/utility/compare/compare_partial_order_fallback" + }, + { + "cppref": "cpp/utility/compare/weak_ordering", + "cppdoc": "cpp/library/utility/compare/weak_ordering" + }, + { + "cppref": "cpp/utility/compare/partial_ordering", + "cppdoc": "cpp/library/utility/compare/partial_ordering" + }, + { + "cppref": "cpp/utility/compare/common_comparison_category", + "cppdoc": "cpp/library/utility/compare/common_comparison_category" + }, + { + "cppref": "cpp/utility/stacktrace_entry/hash", + "cppdoc": "cpp/library/error/stacktrace_entry/hash" + }, + { + "cppref": "cpp/utility/stacktrace_entry/to_string", + "cppdoc": "cpp/library/error/stacktrace_entry/to_string" + }, + { + "cppref": "cpp/utility/stacktrace_entry/formatter", + "cppdoc": "cpp/library/error/stacktrace_entry/formatter" + }, + { + "cppref": "cpp/utility/stacktrace_entry/source_file", + "cppdoc": "cpp/library/error/stacktrace_entry/source_file" + }, + { + "cppref": "cpp/utility/stacktrace_entry/source_line", + "cppdoc": "cpp/library/error/stacktrace_entry/source_line" + }, + { + "cppref": "cpp/utility/stacktrace_entry/stacktrace_entry", + "cppdoc": "cpp/library/error/stacktrace_entry/stacktrace_entry" + }, + { + "cppref": "cpp/utility/stacktrace_entry/operator_cmp", + "cppdoc": "cpp/library/error/stacktrace_entry/operator_cmp" + }, + { + "cppref": "cpp/utility/stacktrace_entry/operator_bool", + "cppdoc": "cpp/library/error/stacktrace_entry/operator_bool" + }, + { + "cppref": "cpp/utility/stacktrace_entry/operator=", + "cppdoc": "cpp/library/error/stacktrace_entry/operator=" + }, + { + "cppref": "cpp/utility/stacktrace_entry/operator_ltlt", + "cppdoc": "cpp/library/error/stacktrace_entry/operator_ltlt" + }, + { + "cppref": "cpp/utility/stacktrace_entry/description", + "cppdoc": "cpp/library/error/stacktrace_entry/description" + }, + { + "cppref": "cpp/utility/stacktrace_entry/native_handle", + "cppdoc": "cpp/library/error/stacktrace_entry/native_handle" + }, + { + "cppref": "cpp/utility/ranges/swap", + "cppdoc": "cpp/library/utility/ranges/swap" + }, + { + "cppref": "cpp/utility/source_location/file_name", + "cppdoc": "cpp/library/utility/source_location/file_name" + }, + { + "cppref": "cpp/utility/source_location/source_location", + "cppdoc": "cpp/library/utility/source_location/source_location" + }, + { + "cppref": "cpp/utility/source_location/line", + "cppdoc": "cpp/library/utility/source_location/line" + }, + { + "cppref": "cpp/utility/source_location/current", + "cppdoc": "cpp/library/utility/source_location/current" + }, + { + "cppref": "cpp/utility/source_location/function_name", + "cppdoc": "cpp/library/utility/source_location/function_name" + }, + { + "cppref": "cpp/utility/source_location/column", + "cppdoc": "cpp/library/utility/source_location/column" + }, + { + "cppref": "cpp/utility/bitset/operator_at", + "cppdoc": "cpp/library/utility/bitset/operator_at" + }, + { + "cppref": "cpp/utility/bitset/to_ullong", + "cppdoc": "cpp/library/utility/bitset/to_ullong" + }, + { + "cppref": "cpp/utility/bitset/hash", + "cppdoc": "cpp/library/utility/bitset/hash" + }, + { + "cppref": "cpp/utility/bitset/size", + "cppdoc": "cpp/library/utility/bitset/size" + }, + { + "cppref": "cpp/utility/bitset/test", + "cppdoc": "cpp/library/utility/bitset/test" + }, + { + "cppref": "cpp/utility/bitset/to_string", + "cppdoc": "cpp/library/utility/bitset/to_string" + }, + { + "cppref": "cpp/utility/bitset/operator_ltltgtgt", + "cppdoc": "cpp/library/utility/bitset/operator_ltltgtgt" + }, + { + "cppref": "cpp/utility/bitset/reset", + "cppdoc": "cpp/library/utility/bitset/reset" + }, + { + "cppref": "cpp/utility/bitset/operator_logic", + "cppdoc": "cpp/library/utility/bitset/operator_logic" + }, + { + "cppref": "cpp/utility/bitset/bitset", + "cppdoc": "cpp/library/utility/bitset/bitset" + }, + { + "cppref": "cpp/utility/bitset/to_ulong", + "cppdoc": "cpp/library/utility/bitset/to_ulong" + }, + { + "cppref": "cpp/utility/bitset/count", + "cppdoc": "cpp/library/utility/bitset/count" + }, + { + "cppref": "cpp/utility/bitset/flip", + "cppdoc": "cpp/library/utility/bitset/flip" + }, + { + "cppref": "cpp/utility/bitset/operator_ltltgtgt2", + "cppdoc": "cpp/library/utility/bitset/operator_ltltgtgt2" + }, + { + "cppref": "cpp/utility/bitset/operator_cmp", + "cppdoc": "cpp/library/utility/bitset/operator_cmp" + }, + { + "cppref": "cpp/utility/bitset/all_any_none", + "cppdoc": "cpp/library/utility/bitset/all_any_none" + }, + { + "cppref": "cpp/utility/bitset/operator_logic2", + "cppdoc": "cpp/library/utility/bitset/operator_logic2" + }, + { + "cppref": "cpp/utility/bitset/reference", + "cppdoc": "cpp/library/utility/bitset/reference" + }, + { + "cppref": "cpp/utility/bitset/set", + "cppdoc": "cpp/library/utility/bitset/set" + }, + { + "cppref": "cpp/utility/rel_ops/operator_cmp", + "cppdoc": "cpp/library/utility/rel_ops/operator_cmp" + }, + { + "cppref": "cpp/utility/expected/and_then", + "cppdoc": "cpp/library/utility/expected/and_then" + }, + { + "cppref": "cpp/utility/expected/emplace", + "cppdoc": "cpp/library/utility/expected/emplace" + }, + { + "cppref": "cpp/utility/expected/value_or", + "cppdoc": "cpp/library/utility/expected/value_or" + }, + { + "cppref": "cpp/utility/expected/transform_error", + "cppdoc": "cpp/library/utility/expected/transform_error" + }, + { + "cppref": "cpp/utility/expected/bad_expected_access", + "cppdoc": "cpp/library/utility/expected/bad_expected_access" + }, + { + "cppref": "cpp/utility/expected/swap2", + "cppdoc": "cpp/library/utility/expected/swap2" + }, + { + "cppref": "cpp/utility/expected/unexpect_t", + "cppdoc": "cpp/library/utility/expected/unexpect_t" + }, + { + "cppref": "cpp/utility/expected/or_else", + "cppdoc": "cpp/library/utility/expected/or_else" + }, + { + "cppref": "cpp/utility/expected/error", + "cppdoc": "cpp/library/utility/expected/error" + }, + { + "cppref": "cpp/utility/expected/error_or", + "cppdoc": "cpp/library/utility/expected/error_or" + }, + { + "cppref": "cpp/utility/expected/swap", + "cppdoc": "cpp/library/utility/expected/swap" + }, + { + "cppref": "cpp/utility/expected/value", + "cppdoc": "cpp/library/utility/expected/value" + }, + { + "cppref": "cpp/utility/expected/unexpected", + "cppdoc": "cpp/library/utility/expected/unexpected" + }, + { + "cppref": "cpp/utility/expected/operator_star_", + "cppdoc": "cpp/library/utility/expected/operator_star_" + }, + { + "cppref": "cpp/utility/expected/operator_cmp", + "cppdoc": "cpp/library/utility/expected/operator_cmp" + }, + { + "cppref": "cpp/utility/expected/expected", + "cppdoc": "cpp/library/utility/expected/expected" + }, + { + "cppref": "cpp/utility/expected/operator_bool", + "cppdoc": "cpp/library/utility/expected/operator_bool" + }, + { + "cppref": "cpp/utility/expected/operator=", + "cppdoc": "cpp/library/utility/expected/operator=" + }, + { + "cppref": "cpp/utility/expected/transform", + "cppdoc": "cpp/library/utility/expected/transform" + }, + { + "cppref": "cpp/utility/expected/~expected", + "cppdoc": "cpp/library/utility/expected/~expected" + }, + { + "cppref": "cpp/utility/tuple/make_tuple", + "cppdoc": "cpp/library/utility/tuple/make_tuple" + }, + { + "cppref": "cpp/utility/tuple/tie", + "cppdoc": "cpp/library/utility/tuple/tie" + }, + { + "cppref": "cpp/utility/tuple/tuple-like", + "cppdoc": "cpp/library/utility/tuple/tuple-like" + }, + { + "cppref": "cpp/utility/tuple/tuple", + "cppdoc": "cpp/library/utility/tuple/tuple" + }, + { + "cppref": "cpp/utility/tuple/forward_as_tuple", + "cppdoc": "cpp/library/utility/tuple/forward_as_tuple" + }, + { + "cppref": "cpp/utility/tuple/swap2", + "cppdoc": "cpp/library/utility/tuple/swap2" + }, + { + "cppref": "cpp/utility/tuple/tuple_cat", + "cppdoc": "cpp/library/utility/tuple/tuple_cat" + }, + { + "cppref": "cpp/utility/tuple/deduction_guides", + "cppdoc": "cpp/library/utility/tuple/deduction_guides" + }, + { + "cppref": "cpp/utility/tuple/ignore", + "cppdoc": "cpp/library/utility/tuple/ignore" + }, + { + "cppref": "cpp/utility/tuple/swap", + "cppdoc": "cpp/library/utility/tuple/swap" + }, + { + "cppref": "cpp/utility/tuple/tuple_size", + "cppdoc": "cpp/library/utility/tuple/tuple_size" + }, + { + "cppref": "cpp/utility/tuple/common_type", + "cppdoc": "cpp/library/utility/tuple/common_type" + }, + { + "cppref": "cpp/utility/tuple/get", + "cppdoc": "cpp/library/utility/tuple/get" + }, + { + "cppref": "cpp/utility/tuple/operator_cmp", + "cppdoc": "cpp/library/utility/tuple/operator_cmp" + }, + { + "cppref": "cpp/utility/tuple/tuple_element", + "cppdoc": "cpp/library/utility/tuple/tuple_element" + }, + { + "cppref": "cpp/utility/tuple/operator=", + "cppdoc": "cpp/library/utility/tuple/operator=" + }, + { + "cppref": "cpp/utility/tuple/basic_common_reference", + "cppdoc": "cpp/library/utility/tuple/basic_common_reference" + }, + { + "cppref": "cpp/utility/tuple/uses_allocator", + "cppdoc": "cpp/library/utility/tuple/uses_allocator" + }, + { + "cppref": "cpp/utility/hash/hash", + "cppdoc": "cpp/library/utility/hash/hash" + }, + { + "cppref": "cpp/utility/hash/operator()", + "cppdoc": "cpp/library/utility/hash/operator()" + }, + { + "cppref": "cpp/utility/functional/multiplies", + "cppdoc": "cpp/library/utility/functional/multiplies" + }, + { + "cppref": "cpp/utility/functional/greater_void", + "cppdoc": "cpp/library/utility/functional/greater_void" + }, + { + "cppref": "cpp/utility/functional/less_void", + "cppdoc": "cpp/library/utility/functional/less_void" + }, + { + "cppref": "cpp/utility/functional/plus", + "cppdoc": "cpp/library/utility/functional/plus" + }, + { + "cppref": "cpp/utility/functional/logical_or_void", + "cppdoc": "cpp/library/utility/functional/logical_or_void" + }, + { + "cppref": "cpp/utility/functional/not_equal_to_void", + "cppdoc": "cpp/library/utility/functional/not_equal_to_void" + }, + { + "cppref": "cpp/utility/functional/not1", + "cppdoc": "cpp/library/utility/functional/not1" + }, + { + "cppref": "cpp/utility/functional/bit_not", + "cppdoc": "cpp/library/utility/functional/bit_not" + }, + { + "cppref": "cpp/utility/functional/logical_and", + "cppdoc": "cpp/library/utility/functional/logical_and" + }, + { + "cppref": "cpp/utility/functional/invoke", + "cppdoc": "cpp/library/utility/functional/invoke" + }, + { + "cppref": "cpp/utility/functional/not_equal_to", + "cppdoc": "cpp/library/utility/functional/not_equal_to" + }, + { + "cppref": "cpp/utility/functional/bind", + "cppdoc": "cpp/library/utility/functional/bind" + }, + { + "cppref": "cpp/utility/functional/boyer_moore_searcher", + "cppdoc": "cpp/library/utility/functional/boyer_moore_searcher" + }, + { + "cppref": "cpp/utility/functional/binary_negate", + "cppdoc": "cpp/library/utility/functional/binary_negate" + }, + { + "cppref": "cpp/utility/functional/unary_function", + "cppdoc": "cpp/library/utility/functional/unary_function" + }, + { + "cppref": "cpp/utility/functional/equal_to", + "cppdoc": "cpp/library/utility/functional/equal_to" + }, + { + "cppref": "cpp/utility/functional/bit_and", + "cppdoc": "cpp/library/utility/functional/bit_and" + }, + { + "cppref": "cpp/utility/functional/minus_void", + "cppdoc": "cpp/library/utility/functional/minus_void" + }, + { + "cppref": "cpp/utility/functional/placeholders", + "cppdoc": "cpp/library/utility/functional/placeholders" + }, + { + "cppref": "cpp/utility/functional/divides", + "cppdoc": "cpp/library/utility/functional/divides" + }, + { + "cppref": "cpp/utility/functional/not_fn", + "cppdoc": "cpp/library/utility/functional/not_fn" + }, + { + "cppref": "cpp/utility/functional/less", + "cppdoc": "cpp/library/utility/functional/less" + }, + { + "cppref": "cpp/utility/functional/default_searcher", + "cppdoc": "cpp/library/utility/functional/default_searcher" + }, + { + "cppref": "cpp/utility/functional/mem_fn", + "cppdoc": "cpp/library/utility/functional/mem_fn" + }, + { + "cppref": "cpp/utility/functional/mem_fun_t", + "cppdoc": "cpp/library/utility/functional/mem_fun_t" + }, + { + "cppref": "cpp/utility/functional/ref", + "cppdoc": "cpp/library/utility/functional/ref" + }, + { + "cppref": "cpp/utility/functional/ptr_fun", + "cppdoc": "cpp/library/utility/functional/ptr_fun" + }, + { + "cppref": "cpp/utility/functional/mem_fun", + "cppdoc": "cpp/library/utility/functional/mem_fun" + }, + { + "cppref": "cpp/utility/functional/binary_function", + "cppdoc": "cpp/library/utility/functional/binary_function" + }, + { + "cppref": "cpp/utility/functional/bind12", + "cppdoc": "cpp/library/utility/functional/bind12" + }, + { + "cppref": "cpp/utility/functional/logical_not", + "cppdoc": "cpp/library/utility/functional/logical_not" + }, + { + "cppref": "cpp/utility/functional/identity", + "cppdoc": "cpp/library/utility/functional/identity" + }, + { + "cppref": "cpp/utility/functional/logical_or", + "cppdoc": "cpp/library/utility/functional/logical_or" + }, + { + "cppref": "cpp/utility/functional/logical_and_void", + "cppdoc": "cpp/library/utility/functional/logical_and_void" + }, + { + "cppref": "cpp/utility/functional/boyer_moore_horspool_searcher", + "cppdoc": "cpp/library/utility/functional/boyer_moore_horspool_searcher" + }, + { + "cppref": "cpp/utility/functional/modulus", + "cppdoc": "cpp/library/utility/functional/modulus" + }, + { + "cppref": "cpp/utility/functional/logical_not_void", + "cppdoc": "cpp/library/utility/functional/logical_not_void" + }, + { + "cppref": "cpp/utility/functional/divides_void", + "cppdoc": "cpp/library/utility/functional/divides_void" + }, + { + "cppref": "cpp/utility/functional/plus_void", + "cppdoc": "cpp/library/utility/functional/plus_void" + }, + { + "cppref": "cpp/utility/functional/bit_not_void", + "cppdoc": "cpp/library/utility/functional/bit_not_void" + }, + { + "cppref": "cpp/utility/functional/mem_fun_ref", + "cppdoc": "cpp/library/utility/functional/mem_fun_ref" + }, + { + "cppref": "cpp/utility/functional/modulus_void", + "cppdoc": "cpp/library/utility/functional/modulus_void" + }, + { + "cppref": "cpp/utility/functional/negate", + "cppdoc": "cpp/library/utility/functional/negate" + }, + { + "cppref": "cpp/utility/functional/function", + "cppdoc": "cpp/library/utility/functional/function" + }, + { + "cppref": "cpp/utility/functional/minus", + "cppdoc": "cpp/library/utility/functional/minus" + }, + { + "cppref": "cpp/utility/functional/reference_wrapper", + "cppdoc": "cpp/library/utility/functional/reference_wrapper" + }, + { + "cppref": "cpp/utility/functional/multiplies_void", + "cppdoc": "cpp/library/utility/functional/multiplies_void" + }, + { + "cppref": "cpp/utility/functional/greater_equal", + "cppdoc": "cpp/library/utility/functional/greater_equal" + }, + { + "cppref": "cpp/utility/functional/greater_equal_void", + "cppdoc": "cpp/library/utility/functional/greater_equal_void" + }, + { + "cppref": "cpp/utility/functional/is_placeholder", + "cppdoc": "cpp/library/utility/functional/is_placeholder" + }, + { + "cppref": "cpp/utility/functional/bit_or_void", + "cppdoc": "cpp/library/utility/functional/bit_or_void" + }, + { + "cppref": "cpp/utility/functional/pointer_to_unary_function", + "cppdoc": "cpp/library/utility/functional/pointer_to_unary_function" + }, + { + "cppref": "cpp/utility/functional/unwrap_reference", + "cppdoc": "cpp/library/utility/functional/unwrap_reference" + }, + { + "cppref": "cpp/utility/functional/not2", + "cppdoc": "cpp/library/utility/functional/not2" + }, + { + "cppref": "cpp/utility/functional/binder12", + "cppdoc": "cpp/library/utility/functional/binder12" + }, + { + "cppref": "cpp/utility/functional/move_only_function", + "cppdoc": "cpp/library/utility/functional/move_only_function" + }, + { + "cppref": "cpp/utility/functional/unary_negate", + "cppdoc": "cpp/library/utility/functional/unary_negate" + }, + { + "cppref": "cpp/utility/functional/bit_and_void", + "cppdoc": "cpp/library/utility/functional/bit_and_void" + }, + { + "cppref": "cpp/utility/functional/pointer_to_binary_function", + "cppdoc": "cpp/library/utility/functional/pointer_to_binary_function" + }, + { + "cppref": "cpp/utility/functional/negate_void", + "cppdoc": "cpp/library/utility/functional/negate_void" + }, + { + "cppref": "cpp/utility/functional/mem_fun_ref_t", + "cppdoc": "cpp/library/utility/functional/mem_fun_ref_t" + }, + { + "cppref": "cpp/utility/functional/function_ref", + "cppdoc": "cpp/library/utility/functional/function_ref" + }, + { + "cppref": "cpp/utility/functional/is_bind_expression", + "cppdoc": "cpp/library/utility/functional/is_bind_expression" + }, + { + "cppref": "cpp/utility/functional/bind_front", + "cppdoc": "cpp/library/utility/functional/bind_front" + }, + { + "cppref": "cpp/utility/functional/bit_or", + "cppdoc": "cpp/library/utility/functional/bit_or" + }, + { + "cppref": "cpp/utility/functional/equal_to_void", + "cppdoc": "cpp/library/utility/functional/equal_to_void" + }, + { + "cppref": "cpp/utility/functional/bad_function_call", + "cppdoc": "cpp/library/utility/functional/bad_function_call" + }, + { + "cppref": "cpp/utility/functional/less_equal", + "cppdoc": "cpp/library/utility/functional/less_equal" + }, + { + "cppref": "cpp/utility/functional/greater", + "cppdoc": "cpp/library/utility/functional/greater" + }, + { + "cppref": "cpp/utility/functional/less_equal_void", + "cppdoc": "cpp/library/utility/functional/less_equal_void" + }, + { + "cppref": "cpp/utility/functional/bit_xor", + "cppdoc": "cpp/library/utility/functional/bit_xor" + }, + { + "cppref": "cpp/utility/functional/copyable_function", + "cppdoc": "cpp/library/utility/functional/copyable_function" + }, + { + "cppref": "cpp/utility/functional/bit_xor_void", + "cppdoc": "cpp/library/utility/functional/bit_xor_void" + }, + { + "cppref": "cpp/utility/functional/move_only_function/operator==", + "cppdoc": "cpp/library/utility/functional/move_only_function/operator==" + }, + { + "cppref": "cpp/utility/functional/move_only_function/~move_only_function", + "cppdoc": "cpp/library/utility/functional/move_only_function/~move_only_function" + }, + { + "cppref": "cpp/utility/functional/move_only_function/swap2", + "cppdoc": "cpp/library/utility/functional/move_only_function/swap2" + }, + { + "cppref": "cpp/utility/functional/move_only_function/swap", + "cppdoc": "cpp/library/utility/functional/move_only_function/swap" + }, + { + "cppref": "cpp/utility/functional/move_only_function/operator()", + "cppdoc": "cpp/library/utility/functional/move_only_function/operator()" + }, + { + "cppref": "cpp/utility/functional/move_only_function/move_only_function", + "cppdoc": "cpp/library/utility/functional/move_only_function/move_only_function" + }, + { + "cppref": "cpp/utility/functional/move_only_function/operator_bool", + "cppdoc": "cpp/library/utility/functional/move_only_function/operator_bool" + }, + { + "cppref": "cpp/utility/functional/move_only_function/operator=", + "cppdoc": "cpp/library/utility/functional/move_only_function/operator=" + }, + { + "cppref": "cpp/utility/functional/copyable_function/operator==", + "cppdoc": "cpp/library/utility/functional/copyable_function/operator==" + }, + { + "cppref": "cpp/utility/functional/copyable_function/~copyable_function", + "cppdoc": "cpp/library/utility/functional/copyable_function/~copyable_function" + }, + { + "cppref": "cpp/utility/functional/copyable_function/swap2", + "cppdoc": "cpp/library/utility/functional/copyable_function/swap2" + }, + { + "cppref": "cpp/utility/functional/copyable_function/swap", + "cppdoc": "cpp/library/utility/functional/copyable_function/swap" + }, + { + "cppref": "cpp/utility/functional/copyable_function/operator()", + "cppdoc": "cpp/library/utility/functional/copyable_function/operator()" + }, + { + "cppref": "cpp/utility/functional/copyable_function/operator_bool", + "cppdoc": "cpp/library/utility/functional/copyable_function/operator_bool" + }, + { + "cppref": "cpp/utility/functional/copyable_function/operator=", + "cppdoc": "cpp/library/utility/functional/copyable_function/operator=" + }, + { + "cppref": "cpp/utility/functional/copyable_function/copyable_function", + "cppdoc": "cpp/library/utility/functional/copyable_function/copyable_function" + }, + { + "cppref": "cpp/utility/functional/function_ref/deduction_guides", + "cppdoc": "cpp/library/utility/functional/function_ref/deduction_guides" + }, + { + "cppref": "cpp/utility/functional/function_ref/operator()", + "cppdoc": "cpp/library/utility/functional/function_ref/operator()" + }, + { + "cppref": "cpp/utility/functional/function_ref/operator=", + "cppdoc": "cpp/library/utility/functional/function_ref/operator=" + }, + { + "cppref": "cpp/utility/functional/function_ref/function_ref", + "cppdoc": "cpp/library/utility/functional/function_ref/function_ref" + }, + { + "cppref": "cpp/utility/functional/ranges/not_equal_to", + "cppdoc": "cpp/library/utility/functional/ranges/not_equal_to" + }, + { + "cppref": "cpp/utility/functional/ranges/equal_to", + "cppdoc": "cpp/library/utility/functional/ranges/equal_to" + }, + { + "cppref": "cpp/utility/functional/ranges/less", + "cppdoc": "cpp/library/utility/functional/ranges/less" + }, + { + "cppref": "cpp/utility/functional/ranges/greater_equal", + "cppdoc": "cpp/library/utility/functional/ranges/greater_equal" + }, + { + "cppref": "cpp/utility/functional/ranges/less_equal", + "cppdoc": "cpp/library/utility/functional/ranges/less_equal" + }, + { + "cppref": "cpp/utility/functional/ranges/greater", + "cppdoc": "cpp/library/utility/functional/ranges/greater" + }, + { + "cppref": "cpp/utility/functional/function/assign", + "cppdoc": "cpp/library/utility/functional/function/assign" + }, + { + "cppref": "cpp/utility/functional/function/~function", + "cppdoc": "cpp/library/utility/functional/function/~function" + }, + { + "cppref": "cpp/utility/functional/function/target", + "cppdoc": "cpp/library/utility/functional/function/target" + }, + { + "cppref": "cpp/utility/functional/function/swap2", + "cppdoc": "cpp/library/utility/functional/function/swap2" + }, + { + "cppref": "cpp/utility/functional/function/deduction_guides", + "cppdoc": "cpp/library/utility/functional/function/deduction_guides" + }, + { + "cppref": "cpp/utility/functional/function/swap", + "cppdoc": "cpp/library/utility/functional/function/swap" + }, + { + "cppref": "cpp/utility/functional/function/operator()", + "cppdoc": "cpp/library/utility/functional/function/operator()" + }, + { + "cppref": "cpp/utility/functional/function/function", + "cppdoc": "cpp/library/utility/functional/function/function" + }, + { + "cppref": "cpp/utility/functional/function/operator_cmp", + "cppdoc": "cpp/library/utility/functional/function/operator_cmp" + }, + { + "cppref": "cpp/utility/functional/function/operator_bool", + "cppdoc": "cpp/library/utility/functional/function/operator_bool" + }, + { + "cppref": "cpp/utility/functional/function/operator=", + "cppdoc": "cpp/library/utility/functional/function/operator=" + }, + { + "cppref": "cpp/utility/functional/function/target_type", + "cppdoc": "cpp/library/utility/functional/function/target_type" + }, + { + "cppref": "cpp/utility/functional/function/uses_allocator", + "cppdoc": "cpp/library/utility/functional/function/uses_allocator" + }, + { + "cppref": "cpp/utility/functional/reference_wrapper/deduction_guides", + "cppdoc": "cpp/library/utility/functional/reference_wrapper/deduction_guides" + }, + { + "cppref": "cpp/utility/functional/reference_wrapper/operator()", + "cppdoc": "cpp/library/utility/functional/reference_wrapper/operator()" + }, + { + "cppref": "cpp/utility/functional/reference_wrapper/get", + "cppdoc": "cpp/library/utility/functional/reference_wrapper/get" + }, + { + "cppref": "cpp/utility/functional/reference_wrapper/reference_wrapper", + "cppdoc": "cpp/library/utility/functional/reference_wrapper/reference_wrapper" + }, + { + "cppref": "cpp/utility/functional/reference_wrapper/operator_cmp", + "cppdoc": "cpp/library/utility/functional/reference_wrapper/operator_cmp" + }, + { + "cppref": "cpp/utility/functional/reference_wrapper/operator=", + "cppdoc": "cpp/library/utility/functional/reference_wrapper/operator=" + }, + { + "cppref": "cpp/utility/functional/reference_wrapper/basic_common_reference", + "cppdoc": "cpp/library/utility/functional/reference_wrapper/basic_common_reference" + }, + { + "cppref": "cpp/utility/format/enable_nonlocking_formatter_optimization", + "cppdoc": "cpp/library/text/format/enable_nonlocking_formatter_optimization" + }, + { + "cppref": "cpp/utility/format/spec", + "cppdoc": "cpp/library/text/format/spec" + }, + { + "cppref": "cpp/utility/format/basic_format_string", + "cppdoc": "cpp/library/text/format/basic_format_string" + }, + { + "cppref": "cpp/utility/format/vformat_to", + "cppdoc": "cpp/library/text/format/vformat_to" + }, + { + "cppref": "cpp/utility/format/formatted_size", + "cppdoc": "cpp/library/text/format/formatted_size" + }, + { + "cppref": "cpp/utility/format/basic_format_args", + "cppdoc": "cpp/library/text/format/basic_format_args" + }, + { + "cppref": "cpp/utility/format/visit_format_arg", + "cppdoc": "cpp/library/text/format/visit_format_arg" + }, + { + "cppref": "cpp/utility/format/format_kind", + "cppdoc": "cpp/library/text/format/format_kind" + }, + { + "cppref": "cpp/utility/format/format_error", + "cppdoc": "cpp/library/text/format/format_error" + }, + { + "cppref": "cpp/utility/format/formattable", + "cppdoc": "cpp/library/text/format/formattable" + }, + { + "cppref": "cpp/utility/format/range_format", + "cppdoc": "cpp/library/text/format/range_format" + }, + { + "cppref": "cpp/utility/format/basic_format_context", + "cppdoc": "cpp/library/text/format/basic_format_context" + }, + { + "cppref": "cpp/utility/format/formatter", + "cppdoc": "cpp/library/text/format/formatter" + }, + { + "cppref": "cpp/utility/format/format", + "cppdoc": "cpp/library/text/format/format" + }, + { + "cppref": "cpp/utility/format/basic_format_arg", + "cppdoc": "cpp/library/text/format/basic_format_arg" + }, + { + "cppref": "cpp/utility/format/format_to", + "cppdoc": "cpp/library/text/format/format_to" + }, + { + "cppref": "cpp/utility/format/vformat", + "cppdoc": "cpp/library/text/format/vformat" + }, + { + "cppref": "cpp/utility/format/tuple_formatter", + "cppdoc": "cpp/library/text/format/tuple_formatter" + }, + { + "cppref": "cpp/utility/format/make_format_args", + "cppdoc": "cpp/library/text/format/make_format_args" + }, + { + "cppref": "cpp/utility/format/basic_format_parse_context", + "cppdoc": "cpp/library/text/format/basic_format_parse_context" + }, + { + "cppref": "cpp/utility/format/ranges_formatter", + "cppdoc": "cpp/library/text/format/ranges_formatter" + }, + { + "cppref": "cpp/utility/format/format_to_n", + "cppdoc": "cpp/library/text/format/format_to_n" + }, + { + "cppref": "cpp/utility/format/range_formatter", + "cppdoc": "cpp/library/text/format/range_formatter" + }, + { + "cppref": "cpp/utility/format/runtime_format", + "cppdoc": "cpp/library/text/format/runtime_format" + }, + { + "cppref": "cpp/utility/format/ranges_formatter/range_default_formatter_string", + "cppdoc": "cpp/library/text/format/ranges_formatter/range_default_formatter_string" + }, + { + "cppref": "cpp/utility/format/ranges_formatter/range_default_formatter_map", + "cppdoc": "cpp/library/text/format/ranges_formatter/range_default_formatter_map" + }, + { + "cppref": "cpp/utility/format/ranges_formatter/range_default_formatter_set", + "cppdoc": "cpp/library/text/format/ranges_formatter/range_default_formatter_set" + }, + { + "cppref": "cpp/utility/format/ranges_formatter/range_default_formatter_sequence", + "cppdoc": "cpp/library/text/format/ranges_formatter/range_default_formatter_sequence" + }, + { + "cppref": "cpp/utility/format/basic_format_arg/handle", + "cppdoc": "cpp/library/text/format/basic_format_arg/handle" + }, + { + "cppref": "cpp/utility/optional/make_optional", + "cppdoc": "cpp/library/utility/optional/make_optional" + }, + { + "cppref": "cpp/utility/optional/and_then", + "cppdoc": "cpp/library/utility/optional/and_then" + }, + { + "cppref": "cpp/utility/optional/nullopt_t", + "cppdoc": "cpp/library/utility/optional/nullopt_t" + }, + { + "cppref": "cpp/utility/optional/emplace", + "cppdoc": "cpp/library/utility/optional/emplace" + }, + { + "cppref": "cpp/utility/optional/value_or", + "cppdoc": "cpp/library/utility/optional/value_or" + }, + { + "cppref": "cpp/utility/optional/hash", + "cppdoc": "cpp/library/utility/optional/hash" + }, + { + "cppref": "cpp/utility/optional/nullopt", + "cppdoc": "cpp/library/utility/optional/nullopt" + }, + { + "cppref": "cpp/utility/optional/swap2", + "cppdoc": "cpp/library/utility/optional/swap2" + }, + { + "cppref": "cpp/utility/optional/end", + "cppdoc": "cpp/library/utility/optional/end" + }, + { + "cppref": "cpp/utility/optional/or_else", + "cppdoc": "cpp/library/utility/optional/or_else" + }, + { + "cppref": "cpp/utility/optional/begin", + "cppdoc": "cpp/library/utility/optional/begin" + }, + { + "cppref": "cpp/utility/optional/deduction_guides", + "cppdoc": "cpp/library/utility/optional/deduction_guides" + }, + { + "cppref": "cpp/utility/optional/reset", + "cppdoc": "cpp/library/utility/optional/reset" + }, + { + "cppref": "cpp/utility/optional/bad_optional_access", + "cppdoc": "cpp/library/utility/optional/bad_optional_access" + }, + { + "cppref": "cpp/utility/optional/~optional", + "cppdoc": "cpp/library/utility/optional/~optional" + }, + { + "cppref": "cpp/utility/optional/swap", + "cppdoc": "cpp/library/utility/optional/swap" + }, + { + "cppref": "cpp/utility/optional/value", + "cppdoc": "cpp/library/utility/optional/value" + }, + { + "cppref": "cpp/utility/optional/operator_star_", + "cppdoc": "cpp/library/utility/optional/operator_star_" + }, + { + "cppref": "cpp/utility/optional/operator_cmp", + "cppdoc": "cpp/library/utility/optional/operator_cmp" + }, + { + "cppref": "cpp/utility/optional/operator_bool", + "cppdoc": "cpp/library/utility/optional/operator_bool" + }, + { + "cppref": "cpp/utility/optional/operator=", + "cppdoc": "cpp/library/utility/optional/operator=" + }, + { + "cppref": "cpp/utility/optional/optional", + "cppdoc": "cpp/library/utility/optional/optional" + }, + { + "cppref": "cpp/utility/optional/transform", + "cppdoc": "cpp/library/utility/optional/transform" + }, + { + "cppref": "cpp/utility/initializer_list/end2", + "cppdoc": "cpp/library/utility/initializer_list/end2" + }, + { + "cppref": "cpp/utility/initializer_list/initializer_list", + "cppdoc": "cpp/library/utility/initializer_list/initializer_list" + }, + { + "cppref": "cpp/utility/initializer_list/size", + "cppdoc": "cpp/library/utility/initializer_list/size" + }, + { + "cppref": "cpp/utility/initializer_list/end", + "cppdoc": "cpp/library/utility/initializer_list/end" + }, + { + "cppref": "cpp/utility/initializer_list/begin2", + "cppdoc": "cpp/library/utility/initializer_list/begin2" + }, + { + "cppref": "cpp/utility/initializer_list/begin", + "cppdoc": "cpp/library/utility/initializer_list/begin" + }, + { + "cppref": "cpp/utility/program/at_quick_exit", + "cppdoc": "cpp/library/utility/program/at_quick_exit" + }, + { + "cppref": "cpp/utility/program/raise", + "cppdoc": "cpp/library/utility/program/raise" + }, + { + "cppref": "cpp/utility/program/EXIT_status", + "cppdoc": "cpp/library/utility/program/EXIT_status" + }, + { + "cppref": "cpp/utility/program/longjmp", + "cppdoc": "cpp/library/utility/program/longjmp" + }, + { + "cppref": "cpp/utility/program/jmp_buf", + "cppdoc": "cpp/library/utility/program/jmp_buf" + }, + { + "cppref": "cpp/utility/program/quick_exit", + "cppdoc": "cpp/library/utility/program/quick_exit" + }, + { + "cppref": "cpp/utility/program/atexit", + "cppdoc": "cpp/library/utility/program/atexit" + }, + { + "cppref": "cpp/utility/program/signal", + "cppdoc": "cpp/library/utility/program/signal" + }, + { + "cppref": "cpp/utility/program/sig_atomic_t", + "cppdoc": "cpp/library/utility/program/sig_atomic_t" + }, + { + "cppref": "cpp/utility/program/SIG_types", + "cppdoc": "cpp/library/utility/program/SIG_types" + }, + { + "cppref": "cpp/utility/program/abort", + "cppdoc": "cpp/library/utility/program/abort" + }, + { + "cppref": "cpp/utility/program/system", + "cppdoc": "cpp/library/utility/program/system" + }, + { + "cppref": "cpp/utility/program/exit", + "cppdoc": "cpp/library/utility/program/exit" + }, + { + "cppref": "cpp/utility/program/setjmp", + "cppdoc": "cpp/library/utility/program/setjmp" + }, + { + "cppref": "cpp/utility/program/_Exit", + "cppdoc": "cpp/library/utility/program/_Exit" + }, + { + "cppref": "cpp/utility/program/getenv", + "cppdoc": "cpp/library/utility/program/getenv" + }, + { + "cppref": "cpp/utility/program/SIG_strategies", + "cppdoc": "cpp/library/utility/program/SIG_strategies" + }, + { + "cppref": "cpp/utility/program/SIG_ERR", + "cppdoc": "cpp/library/utility/program/SIG_ERR" + }, + { + "cppref": "cpp/utility/basic_stacktrace/operator_at", + "cppdoc": "cpp/library/error/basic_stacktrace/operator_at" + }, + { + "cppref": "cpp/utility/basic_stacktrace/at", + "cppdoc": "cpp/library/error/basic_stacktrace/at" + }, + { + "cppref": "cpp/utility/basic_stacktrace/empty", + "cppdoc": "cpp/library/error/basic_stacktrace/empty" + }, + { + "cppref": "cpp/utility/basic_stacktrace/hash", + "cppdoc": "cpp/library/error/basic_stacktrace/hash" + }, + { + "cppref": "cpp/utility/basic_stacktrace/max_size", + "cppdoc": "cpp/library/error/basic_stacktrace/max_size" + }, + { + "cppref": "cpp/utility/basic_stacktrace/size", + "cppdoc": "cpp/library/error/basic_stacktrace/size" + }, + { + "cppref": "cpp/utility/basic_stacktrace/to_string", + "cppdoc": "cpp/library/error/basic_stacktrace/to_string" + }, + { + "cppref": "cpp/utility/basic_stacktrace/basic_stacktrace", + "cppdoc": "cpp/library/error/basic_stacktrace/basic_stacktrace" + }, + { + "cppref": "cpp/utility/basic_stacktrace/swap2", + "cppdoc": "cpp/library/error/basic_stacktrace/swap2" + }, + { + "cppref": "cpp/utility/basic_stacktrace/end", + "cppdoc": "cpp/library/error/basic_stacktrace/end" + }, + { + "cppref": "cpp/utility/basic_stacktrace/formatter", + "cppdoc": "cpp/library/error/basic_stacktrace/formatter" + }, + { + "cppref": "cpp/utility/basic_stacktrace/rend", + "cppdoc": "cpp/library/error/basic_stacktrace/rend" + }, + { + "cppref": "cpp/utility/basic_stacktrace/begin", + "cppdoc": "cpp/library/error/basic_stacktrace/begin" + }, + { + "cppref": "cpp/utility/basic_stacktrace/current", + "cppdoc": "cpp/library/error/basic_stacktrace/current" + }, + { + "cppref": "cpp/utility/basic_stacktrace/swap", + "cppdoc": "cpp/library/error/basic_stacktrace/swap" + }, + { + "cppref": "cpp/utility/basic_stacktrace/rbegin", + "cppdoc": "cpp/library/error/basic_stacktrace/rbegin" + }, + { + "cppref": "cpp/utility/basic_stacktrace/~basic_stacktrace", + "cppdoc": "cpp/library/error/basic_stacktrace/~basic_stacktrace" + }, + { + "cppref": "cpp/utility/basic_stacktrace/operator_cmp", + "cppdoc": "cpp/library/error/basic_stacktrace/operator_cmp" + }, + { + "cppref": "cpp/utility/basic_stacktrace/get_allocator", + "cppdoc": "cpp/library/error/basic_stacktrace/get_allocator" + }, + { + "cppref": "cpp/utility/basic_stacktrace/operator=", + "cppdoc": "cpp/library/error/basic_stacktrace/operator=" + }, + { + "cppref": "cpp/utility/basic_stacktrace/operator_ltlt", + "cppdoc": "cpp/library/error/basic_stacktrace/operator_ltlt" + }, + { + "cppref": "cpp/utility/variant/monostate", + "cppdoc": "cpp/library/utility/variant/monostate" + }, + { + "cppref": "cpp/utility/variant/index", + "cppdoc": "cpp/library/utility/variant/index" + }, + { + "cppref": "cpp/utility/variant/emplace", + "cppdoc": "cpp/library/utility/variant/emplace" + }, + { + "cppref": "cpp/utility/variant/hash", + "cppdoc": "cpp/library/utility/variant/hash" + }, + { + "cppref": "cpp/utility/variant/valueless_by_exception", + "cppdoc": "cpp/library/utility/variant/valueless_by_exception" + }, + { + "cppref": "cpp/utility/variant/swap2", + "cppdoc": "cpp/library/utility/variant/swap2" + }, + { + "cppref": "cpp/utility/variant/variant_alternative", + "cppdoc": "cpp/library/utility/variant/variant_alternative" + }, + { + "cppref": "cpp/utility/variant/variant", + "cppdoc": "cpp/library/utility/variant/variant" + }, + { + "cppref": "cpp/utility/variant/swap", + "cppdoc": "cpp/library/utility/variant/swap" + }, + { + "cppref": "cpp/utility/variant/visit2", + "cppdoc": "cpp/library/utility/variant/visit2" + }, + { + "cppref": "cpp/utility/variant/get", + "cppdoc": "cpp/library/utility/variant/get" + }, + { + "cppref": "cpp/utility/variant/operator_cmp", + "cppdoc": "cpp/library/utility/variant/operator_cmp" + }, + { + "cppref": "cpp/utility/variant/visit", + "cppdoc": "cpp/library/utility/variant/visit" + }, + { + "cppref": "cpp/utility/variant/variant_npos", + "cppdoc": "cpp/library/utility/variant/variant_npos" + }, + { + "cppref": "cpp/utility/variant/get_if", + "cppdoc": "cpp/library/utility/variant/get_if" + }, + { + "cppref": "cpp/utility/variant/holds_alternative", + "cppdoc": "cpp/library/utility/variant/holds_alternative" + }, + { + "cppref": "cpp/utility/variant/variant_size", + "cppdoc": "cpp/library/utility/variant/variant_size" + }, + { + "cppref": "cpp/utility/variant/bad_variant_access", + "cppdoc": "cpp/library/utility/variant/bad_variant_access" + }, + { + "cppref": "cpp/utility/variant/operator=", + "cppdoc": "cpp/library/utility/variant/operator=" + }, + { + "cppref": "cpp/utility/variant/~variant", + "cppdoc": "cpp/library/utility/variant/~variant" + }, + { + "cppref": "cpp/thread/promise", + "cppdoc": "cpp/library/atomic/promise" + }, + { + "cppref": "cpp/thread/shared_lock", + "cppdoc": "cpp/library/atomic/shared_lock" + }, + { + "cppref": "cpp/thread/scoped_lock", + "cppdoc": "cpp/library/atomic/scoped_lock" + }, + { + "cppref": "cpp/thread/latch", + "cppdoc": "cpp/library/atomic/latch" + }, + { + "cppref": "cpp/thread/future", + "cppdoc": "cpp/library/atomic/future" + }, + { + "cppref": "cpp/thread/mutex", + "cppdoc": "cpp/library/atomic/mutex" + }, + { + "cppref": "cpp/thread/jthread", + "cppdoc": "cpp/library/atomic/jthread" + }, + { + "cppref": "cpp/thread/thread", + "cppdoc": "cpp/library/atomic/thread" + }, + { + "cppref": "cpp/thread/async", + "cppdoc": "cpp/library/atomic/async" + }, + { + "cppref": "cpp/thread/packaged_task", + "cppdoc": "cpp/library/atomic/packaged_task" + }, + { + "cppref": "cpp/thread/condition_variable", + "cppdoc": "cpp/library/atomic/condition_variable" + }, + { + "cppref": "cpp/thread/future_category", + "cppdoc": "cpp/library/atomic/future_category" + }, + { + "cppref": "cpp/thread/lock_tag_t", + "cppdoc": "cpp/library/atomic/lock_tag_t" + }, + { + "cppref": "cpp/thread/get_id", + "cppdoc": "cpp/library/atomic/get_id" + }, + { + "cppref": "cpp/thread/barrier", + "cppdoc": "cpp/library/atomic/barrier" + }, + { + "cppref": "cpp/thread/stop_callback_for_t", + "cppdoc": "cpp/library/atomic/stop_callback_for_t" + }, + { + "cppref": "cpp/thread/timed_mutex", + "cppdoc": "cpp/library/atomic/timed_mutex" + }, + { + "cppref": "cpp/thread/shared_timed_mutex", + "cppdoc": "cpp/library/atomic/shared_timed_mutex" + }, + { + "cppref": "cpp/thread/shared_future", + "cppdoc": "cpp/library/atomic/shared_future" + }, + { + "cppref": "cpp/thread/future_status", + "cppdoc": "cpp/library/atomic/future_status" + }, + { + "cppref": "cpp/thread/future_error", + "cppdoc": "cpp/library/atomic/future_error" + }, + { + "cppref": "cpp/thread/hardware_destructive_interference_size", + "cppdoc": "cpp/library/atomic/hardware_destructive_interference_size" + }, + { + "cppref": "cpp/thread/future_errc", + "cppdoc": "cpp/library/atomic/future_errc" + }, + { + "cppref": "cpp/thread/sleep_for", + "cppdoc": "cpp/library/atomic/sleep_for" + }, + { + "cppref": "cpp/thread/call_once", + "cppdoc": "cpp/library/atomic/call_once" + }, + { + "cppref": "cpp/thread/cv_status", + "cppdoc": "cpp/library/atomic/cv_status" + }, + { + "cppref": "cpp/thread/lock_tag", + "cppdoc": "cpp/library/atomic/lock_tag" + }, + { + "cppref": "cpp/thread/recursive_timed_mutex", + "cppdoc": "cpp/library/atomic/recursive_timed_mutex" + }, + { + "cppref": "cpp/thread/recursive_mutex", + "cppdoc": "cpp/library/atomic/recursive_mutex" + }, + { + "cppref": "cpp/thread/lock", + "cppdoc": "cpp/library/atomic/lock" + }, + { + "cppref": "cpp/thread/stop_callback", + "cppdoc": "cpp/library/atomic/stop_callback" + }, + { + "cppref": "cpp/thread/stop_token", + "cppdoc": "cpp/library/atomic/stop_token" + }, + { + "cppref": "cpp/thread/notify_all_at_thread_exit", + "cppdoc": "cpp/library/atomic/notify_all_at_thread_exit" + }, + { + "cppref": "cpp/thread/lock_guard", + "cppdoc": "cpp/library/atomic/lock_guard" + }, + { + "cppref": "cpp/thread/counting_semaphore", + "cppdoc": "cpp/library/atomic/counting_semaphore" + }, + { + "cppref": "cpp/thread/unstoppable_token", + "cppdoc": "cpp/library/atomic/unstoppable_token" + }, + { + "cppref": "cpp/thread/yield", + "cppdoc": "cpp/library/atomic/yield" + }, + { + "cppref": "cpp/thread/try_lock", + "cppdoc": "cpp/library/atomic/try_lock" + }, + { + "cppref": "cpp/thread/once_flag", + "cppdoc": "cpp/library/atomic/once_flag" + }, + { + "cppref": "cpp/thread/unique_lock", + "cppdoc": "cpp/library/atomic/unique_lock" + }, + { + "cppref": "cpp/thread/stop_source", + "cppdoc": "cpp/library/atomic/stop_source" + }, + { + "cppref": "cpp/thread/condition_variable_any", + "cppdoc": "cpp/library/atomic/condition_variable_any" + }, + { + "cppref": "cpp/thread/shared_mutex", + "cppdoc": "cpp/library/atomic/shared_mutex" + }, + { + "cppref": "cpp/thread/sleep_until", + "cppdoc": "cpp/library/atomic/sleep_until" + }, + { + "cppref": "cpp/thread/stoppable_token", + "cppdoc": "cpp/library/atomic/stoppable_token" + }, + { + "cppref": "cpp/thread/launch", + "cppdoc": "cpp/library/atomic/launch" + }, + { + "cppref": "cpp/thread/never_stop_token", + "cppdoc": "cpp/library/atomic/never_stop_token" + }, + { + "cppref": "cpp/thread/mutex/~mutex", + "cppdoc": "cpp/library/atomic/mutex/~mutex" + }, + { + "cppref": "cpp/thread/mutex/mutex", + "cppdoc": "cpp/library/atomic/mutex/mutex" + }, + { + "cppref": "cpp/thread/mutex/lock", + "cppdoc": "cpp/library/atomic/mutex/lock" + }, + { + "cppref": "cpp/thread/mutex/try_lock", + "cppdoc": "cpp/library/atomic/mutex/try_lock" + }, + { + "cppref": "cpp/thread/mutex/native_handle", + "cppdoc": "cpp/library/atomic/mutex/native_handle" + }, + { + "cppref": "cpp/thread/mutex/unlock", + "cppdoc": "cpp/library/atomic/mutex/unlock" + }, + { + "cppref": "cpp/thread/barrier/barrier", + "cppdoc": "cpp/library/atomic/barrier/barrier" + }, + { + "cppref": "cpp/thread/barrier/arrive", + "cppdoc": "cpp/library/atomic/barrier/arrive" + }, + { + "cppref": "cpp/thread/barrier/max", + "cppdoc": "cpp/library/atomic/barrier/max" + }, + { + "cppref": "cpp/thread/barrier/arrive_and_wait", + "cppdoc": "cpp/library/atomic/barrier/arrive_and_wait" + }, + { + "cppref": "cpp/thread/barrier/wait", + "cppdoc": "cpp/library/atomic/barrier/wait" + }, + { + "cppref": "cpp/thread/barrier/~barrier", + "cppdoc": "cpp/library/atomic/barrier/~barrier" + }, + { + "cppref": "cpp/thread/barrier/arrive_and_drop", + "cppdoc": "cpp/library/atomic/barrier/arrive_and_drop" + }, + { + "cppref": "cpp/thread/shared_future/wait_for", + "cppdoc": "cpp/library/atomic/shared_future/wait_for" + }, + { + "cppref": "cpp/thread/shared_future/shared_future", + "cppdoc": "cpp/library/atomic/shared_future/shared_future" + }, + { + "cppref": "cpp/thread/shared_future/valid", + "cppdoc": "cpp/library/atomic/shared_future/valid" + }, + { + "cppref": "cpp/thread/shared_future/wait", + "cppdoc": "cpp/library/atomic/shared_future/wait" + }, + { + "cppref": "cpp/thread/shared_future/get", + "cppdoc": "cpp/library/atomic/shared_future/get" + }, + { + "cppref": "cpp/thread/shared_future/~shared_future", + "cppdoc": "cpp/library/atomic/shared_future/~shared_future" + }, + { + "cppref": "cpp/thread/shared_future/operator=", + "cppdoc": "cpp/library/atomic/shared_future/operator=" + }, + { + "cppref": "cpp/thread/shared_future/wait_until", + "cppdoc": "cpp/library/atomic/shared_future/wait_until" + }, + { + "cppref": "cpp/thread/latch/~latch", + "cppdoc": "cpp/library/atomic/latch/~latch" + }, + { + "cppref": "cpp/thread/latch/latch", + "cppdoc": "cpp/library/atomic/latch/latch" + }, + { + "cppref": "cpp/thread/latch/max", + "cppdoc": "cpp/library/atomic/latch/max" + }, + { + "cppref": "cpp/thread/latch/arrive_and_wait", + "cppdoc": "cpp/library/atomic/latch/arrive_and_wait" + }, + { + "cppref": "cpp/thread/latch/wait", + "cppdoc": "cpp/library/atomic/latch/wait" + }, + { + "cppref": "cpp/thread/latch/count_down", + "cppdoc": "cpp/library/atomic/latch/count_down" + }, + { + "cppref": "cpp/thread/latch/try_wait", + "cppdoc": "cpp/library/atomic/latch/try_wait" + }, + { + "cppref": "cpp/thread/shared_lock/shared_lock", + "cppdoc": "cpp/library/atomic/shared_lock/shared_lock" + }, + { + "cppref": "cpp/thread/shared_lock/mutex", + "cppdoc": "cpp/library/atomic/shared_lock/mutex" + }, + { + "cppref": "cpp/thread/shared_lock/swap2", + "cppdoc": "cpp/library/atomic/shared_lock/swap2" + }, + { + "cppref": "cpp/thread/shared_lock/try_lock_for", + "cppdoc": "cpp/library/atomic/shared_lock/try_lock_for" + }, + { + "cppref": "cpp/thread/shared_lock/owns_lock", + "cppdoc": "cpp/library/atomic/shared_lock/owns_lock" + }, + { + "cppref": "cpp/thread/shared_lock/swap", + "cppdoc": "cpp/library/atomic/shared_lock/swap" + }, + { + "cppref": "cpp/thread/shared_lock/~shared_lock", + "cppdoc": "cpp/library/atomic/shared_lock/~shared_lock" + }, + { + "cppref": "cpp/thread/shared_lock/lock", + "cppdoc": "cpp/library/atomic/shared_lock/lock" + }, + { + "cppref": "cpp/thread/shared_lock/release", + "cppdoc": "cpp/library/atomic/shared_lock/release" + }, + { + "cppref": "cpp/thread/shared_lock/try_lock_until", + "cppdoc": "cpp/library/atomic/shared_lock/try_lock_until" + }, + { + "cppref": "cpp/thread/shared_lock/try_lock", + "cppdoc": "cpp/library/atomic/shared_lock/try_lock" + }, + { + "cppref": "cpp/thread/shared_lock/operator_bool", + "cppdoc": "cpp/library/atomic/shared_lock/operator_bool" + }, + { + "cppref": "cpp/thread/shared_lock/operator=", + "cppdoc": "cpp/library/atomic/shared_lock/operator=" + }, + { + "cppref": "cpp/thread/shared_lock/unlock", + "cppdoc": "cpp/library/atomic/shared_lock/unlock" + }, + { + "cppref": "cpp/thread/promise/promise", + "cppdoc": "cpp/library/atomic/promise/promise" + }, + { + "cppref": "cpp/thread/promise/swap2", + "cppdoc": "cpp/library/atomic/promise/swap2" + }, + { + "cppref": "cpp/thread/promise/get_future", + "cppdoc": "cpp/library/atomic/promise/get_future" + }, + { + "cppref": "cpp/thread/promise/set_exception_at_thread_exit", + "cppdoc": "cpp/library/atomic/promise/set_exception_at_thread_exit" + }, + { + "cppref": "cpp/thread/promise/~promise", + "cppdoc": "cpp/library/atomic/promise/~promise" + }, + { + "cppref": "cpp/thread/promise/swap", + "cppdoc": "cpp/library/atomic/promise/swap" + }, + { + "cppref": "cpp/thread/promise/set_value_at_thread_exit", + "cppdoc": "cpp/library/atomic/promise/set_value_at_thread_exit" + }, + { + "cppref": "cpp/thread/promise/operator=", + "cppdoc": "cpp/library/atomic/promise/operator=" + }, + { + "cppref": "cpp/thread/promise/set_exception", + "cppdoc": "cpp/library/atomic/promise/set_exception" + }, + { + "cppref": "cpp/thread/promise/set_value", + "cppdoc": "cpp/library/atomic/promise/set_value" + }, + { + "cppref": "cpp/thread/promise/uses_allocator", + "cppdoc": "cpp/library/atomic/promise/uses_allocator" + }, + { + "cppref": "cpp/thread/recursive_timed_mutex/~recursive_timed_mutex", + "cppdoc": "cpp/library/atomic/recursive_timed_mutex/~recursive_timed_mutex" + }, + { + "cppref": "cpp/thread/recursive_timed_mutex/try_lock_for", + "cppdoc": "cpp/library/atomic/recursive_timed_mutex/try_lock_for" + }, + { + "cppref": "cpp/thread/recursive_timed_mutex/recursive_timed_mutex", + "cppdoc": "cpp/library/atomic/recursive_timed_mutex/recursive_timed_mutex" + }, + { + "cppref": "cpp/thread/recursive_timed_mutex/lock", + "cppdoc": "cpp/library/atomic/recursive_timed_mutex/lock" + }, + { + "cppref": "cpp/thread/recursive_timed_mutex/try_lock_until", + "cppdoc": "cpp/library/atomic/recursive_timed_mutex/try_lock_until" + }, + { + "cppref": "cpp/thread/recursive_timed_mutex/try_lock", + "cppdoc": "cpp/library/atomic/recursive_timed_mutex/try_lock" + }, + { + "cppref": "cpp/thread/recursive_timed_mutex/native_handle", + "cppdoc": "cpp/library/atomic/recursive_timed_mutex/native_handle" + }, + { + "cppref": "cpp/thread/recursive_timed_mutex/unlock", + "cppdoc": "cpp/library/atomic/recursive_timed_mutex/unlock" + }, + { + "cppref": "cpp/thread/timed_mutex/try_lock_for", + "cppdoc": "cpp/library/atomic/timed_mutex/try_lock_for" + }, + { + "cppref": "cpp/thread/timed_mutex/timed_mutex", + "cppdoc": "cpp/library/atomic/timed_mutex/timed_mutex" + }, + { + "cppref": "cpp/thread/timed_mutex/lock", + "cppdoc": "cpp/library/atomic/timed_mutex/lock" + }, + { + "cppref": "cpp/thread/timed_mutex/try_lock_until", + "cppdoc": "cpp/library/atomic/timed_mutex/try_lock_until" + }, + { + "cppref": "cpp/thread/timed_mutex/try_lock", + "cppdoc": "cpp/library/atomic/timed_mutex/try_lock" + }, + { + "cppref": "cpp/thread/timed_mutex/native_handle", + "cppdoc": "cpp/library/atomic/timed_mutex/native_handle" + }, + { + "cppref": "cpp/thread/timed_mutex/~timed_mutex", + "cppdoc": "cpp/library/atomic/timed_mutex/~timed_mutex" + }, + { + "cppref": "cpp/thread/timed_mutex/unlock", + "cppdoc": "cpp/library/atomic/timed_mutex/unlock" + }, + { + "cppref": "cpp/thread/packaged_task/packaged_task", + "cppdoc": "cpp/library/atomic/packaged_task/packaged_task" + }, + { + "cppref": "cpp/thread/packaged_task/swap2", + "cppdoc": "cpp/library/atomic/packaged_task/swap2" + }, + { + "cppref": "cpp/thread/packaged_task/make_ready_at_thread_exit", + "cppdoc": "cpp/library/atomic/packaged_task/make_ready_at_thread_exit" + }, + { + "cppref": "cpp/thread/packaged_task/get_future", + "cppdoc": "cpp/library/atomic/packaged_task/get_future" + }, + { + "cppref": "cpp/thread/packaged_task/deduction_guides", + "cppdoc": "cpp/library/atomic/packaged_task/deduction_guides" + }, + { + "cppref": "cpp/thread/packaged_task/reset", + "cppdoc": "cpp/library/atomic/packaged_task/reset" + }, + { + "cppref": "cpp/thread/packaged_task/swap", + "cppdoc": "cpp/library/atomic/packaged_task/swap" + }, + { + "cppref": "cpp/thread/packaged_task/valid", + "cppdoc": "cpp/library/atomic/packaged_task/valid" + }, + { + "cppref": "cpp/thread/packaged_task/operator()", + "cppdoc": "cpp/library/atomic/packaged_task/operator()" + }, + { + "cppref": "cpp/thread/packaged_task/~packaged_task", + "cppdoc": "cpp/library/atomic/packaged_task/~packaged_task" + }, + { + "cppref": "cpp/thread/packaged_task/operator=", + "cppdoc": "cpp/library/atomic/packaged_task/operator=" + }, + { + "cppref": "cpp/thread/packaged_task/uses_allocator", + "cppdoc": "cpp/library/atomic/packaged_task/uses_allocator" + }, + { + "cppref": "cpp/thread/future/future", + "cppdoc": "cpp/library/atomic/future/future" + }, + { + "cppref": "cpp/thread/future/~future", + "cppdoc": "cpp/library/atomic/future/~future" + }, + { + "cppref": "cpp/thread/future/share", + "cppdoc": "cpp/library/atomic/future/share" + }, + { + "cppref": "cpp/thread/future/wait_for", + "cppdoc": "cpp/library/atomic/future/wait_for" + }, + { + "cppref": "cpp/thread/future/valid", + "cppdoc": "cpp/library/atomic/future/valid" + }, + { + "cppref": "cpp/thread/future/wait", + "cppdoc": "cpp/library/atomic/future/wait" + }, + { + "cppref": "cpp/thread/future/get", + "cppdoc": "cpp/library/atomic/future/get" + }, + { + "cppref": "cpp/thread/future/operator=", + "cppdoc": "cpp/library/atomic/future/operator=" + }, + { + "cppref": "cpp/thread/future/wait_until", + "cppdoc": "cpp/library/atomic/future/wait_until" + }, + { + "cppref": "cpp/thread/scoped_lock/scoped_lock", + "cppdoc": "cpp/library/atomic/scoped_lock/scoped_lock" + }, + { + "cppref": "cpp/thread/scoped_lock/~scoped_lock", + "cppdoc": "cpp/library/atomic/scoped_lock/~scoped_lock" + }, + { + "cppref": "cpp/thread/condition_variable/notify_all", + "cppdoc": "cpp/library/atomic/condition_variable/notify_all" + }, + { + "cppref": "cpp/thread/condition_variable/condition_variable", + "cppdoc": "cpp/library/atomic/condition_variable/condition_variable" + }, + { + "cppref": "cpp/thread/condition_variable/wait_for", + "cppdoc": "cpp/library/atomic/condition_variable/wait_for" + }, + { + "cppref": "cpp/thread/condition_variable/~condition_variable", + "cppdoc": "cpp/library/atomic/condition_variable/~condition_variable" + }, + { + "cppref": "cpp/thread/condition_variable/notify_one", + "cppdoc": "cpp/library/atomic/condition_variable/notify_one" + }, + { + "cppref": "cpp/thread/condition_variable/wait", + "cppdoc": "cpp/library/atomic/condition_variable/wait" + }, + { + "cppref": "cpp/thread/condition_variable/wait_until", + "cppdoc": "cpp/library/atomic/condition_variable/wait_until" + }, + { + "cppref": "cpp/thread/condition_variable/native_handle", + "cppdoc": "cpp/library/atomic/condition_variable/native_handle" + }, + { + "cppref": "cpp/thread/lock_guard/~lock_guard", + "cppdoc": "cpp/library/atomic/lock_guard/~lock_guard" + }, + { + "cppref": "cpp/thread/lock_guard/lock_guard", + "cppdoc": "cpp/library/atomic/lock_guard/lock_guard" + }, + { + "cppref": "cpp/thread/stop_callback/deduction_guides", + "cppdoc": "cpp/library/atomic/stop_callback/deduction_guides" + }, + { + "cppref": "cpp/thread/stop_callback/stop_callback", + "cppdoc": "cpp/library/atomic/stop_callback/stop_callback" + }, + { + "cppref": "cpp/thread/stop_callback/~stop_callback", + "cppdoc": "cpp/library/atomic/stop_callback/~stop_callback" + }, + { + "cppref": "cpp/thread/stop_token/swap2", + "cppdoc": "cpp/library/atomic/stop_token/swap2" + }, + { + "cppref": "cpp/thread/stop_token/stop_requested", + "cppdoc": "cpp/library/atomic/stop_token/stop_requested" + }, + { + "cppref": "cpp/thread/stop_token/swap", + "cppdoc": "cpp/library/atomic/stop_token/swap" + }, + { + "cppref": "cpp/thread/stop_token/stop_possible", + "cppdoc": "cpp/library/atomic/stop_token/stop_possible" + }, + { + "cppref": "cpp/thread/stop_token/stop_token", + "cppdoc": "cpp/library/atomic/stop_token/stop_token" + }, + { + "cppref": "cpp/thread/stop_token/operator_cmp", + "cppdoc": "cpp/library/atomic/stop_token/operator_cmp" + }, + { + "cppref": "cpp/thread/stop_token/~stop_token", + "cppdoc": "cpp/library/atomic/stop_token/~stop_token" + }, + { + "cppref": "cpp/thread/stop_token/operator=", + "cppdoc": "cpp/library/atomic/stop_token/operator=" + }, + { + "cppref": "cpp/thread/jthread/~jthread", + "cppdoc": "cpp/library/atomic/jthread/~jthread" + }, + { + "cppref": "cpp/thread/jthread/request_stop", + "cppdoc": "cpp/library/atomic/jthread/request_stop" + }, + { + "cppref": "cpp/thread/jthread/join", + "cppdoc": "cpp/library/atomic/jthread/join" + }, + { + "cppref": "cpp/thread/jthread/get_stop_source", + "cppdoc": "cpp/library/atomic/jthread/get_stop_source" + }, + { + "cppref": "cpp/thread/jthread/jthread", + "cppdoc": "cpp/library/atomic/jthread/jthread" + }, + { + "cppref": "cpp/thread/jthread/get_id", + "cppdoc": "cpp/library/atomic/jthread/get_id" + }, + { + "cppref": "cpp/thread/jthread/swap2", + "cppdoc": "cpp/library/atomic/jthread/swap2" + }, + { + "cppref": "cpp/thread/jthread/get_stop_token", + "cppdoc": "cpp/library/atomic/jthread/get_stop_token" + }, + { + "cppref": "cpp/thread/jthread/swap", + "cppdoc": "cpp/library/atomic/jthread/swap" + }, + { + "cppref": "cpp/thread/jthread/joinable", + "cppdoc": "cpp/library/atomic/jthread/joinable" + }, + { + "cppref": "cpp/thread/jthread/detach", + "cppdoc": "cpp/library/atomic/jthread/detach" + }, + { + "cppref": "cpp/thread/jthread/operator=", + "cppdoc": "cpp/library/atomic/jthread/operator=" + }, + { + "cppref": "cpp/thread/jthread/hardware_concurrency", + "cppdoc": "cpp/library/atomic/jthread/hardware_concurrency" + }, + { + "cppref": "cpp/thread/jthread/native_handle", + "cppdoc": "cpp/library/atomic/jthread/native_handle" + }, + { + "cppref": "cpp/thread/unique_lock/mutex", + "cppdoc": "cpp/library/atomic/unique_lock/mutex" + }, + { + "cppref": "cpp/thread/unique_lock/swap2", + "cppdoc": "cpp/library/atomic/unique_lock/swap2" + }, + { + "cppref": "cpp/thread/unique_lock/try_lock_for", + "cppdoc": "cpp/library/atomic/unique_lock/try_lock_for" + }, + { + "cppref": "cpp/thread/unique_lock/owns_lock", + "cppdoc": "cpp/library/atomic/unique_lock/owns_lock" + }, + { + "cppref": "cpp/thread/unique_lock/swap", + "cppdoc": "cpp/library/atomic/unique_lock/swap" + }, + { + "cppref": "cpp/thread/unique_lock/lock", + "cppdoc": "cpp/library/atomic/unique_lock/lock" + }, + { + "cppref": "cpp/thread/unique_lock/release", + "cppdoc": "cpp/library/atomic/unique_lock/release" + }, + { + "cppref": "cpp/thread/unique_lock/~unique_lock", + "cppdoc": "cpp/library/atomic/unique_lock/~unique_lock" + }, + { + "cppref": "cpp/thread/unique_lock/try_lock_until", + "cppdoc": "cpp/library/atomic/unique_lock/try_lock_until" + }, + { + "cppref": "cpp/thread/unique_lock/try_lock", + "cppdoc": "cpp/library/atomic/unique_lock/try_lock" + }, + { + "cppref": "cpp/thread/unique_lock/operator_bool", + "cppdoc": "cpp/library/atomic/unique_lock/operator_bool" + }, + { + "cppref": "cpp/thread/unique_lock/unique_lock", + "cppdoc": "cpp/library/atomic/unique_lock/unique_lock" + }, + { + "cppref": "cpp/thread/unique_lock/operator=", + "cppdoc": "cpp/library/atomic/unique_lock/operator=" + }, + { + "cppref": "cpp/thread/unique_lock/unlock", + "cppdoc": "cpp/library/atomic/unique_lock/unlock" + }, + { + "cppref": "cpp/thread/counting_semaphore/~counting_semaphore", + "cppdoc": "cpp/library/atomic/counting_semaphore/~counting_semaphore" + }, + { + "cppref": "cpp/thread/counting_semaphore/try_acquire", + "cppdoc": "cpp/library/atomic/counting_semaphore/try_acquire" + }, + { + "cppref": "cpp/thread/counting_semaphore/max", + "cppdoc": "cpp/library/atomic/counting_semaphore/max" + }, + { + "cppref": "cpp/thread/counting_semaphore/try_acquire_for", + "cppdoc": "cpp/library/atomic/counting_semaphore/try_acquire_for" + }, + { + "cppref": "cpp/thread/counting_semaphore/release", + "cppdoc": "cpp/library/atomic/counting_semaphore/release" + }, + { + "cppref": "cpp/thread/counting_semaphore/counting_semaphore", + "cppdoc": "cpp/library/atomic/counting_semaphore/counting_semaphore" + }, + { + "cppref": "cpp/thread/counting_semaphore/acquire", + "cppdoc": "cpp/library/atomic/counting_semaphore/acquire" + }, + { + "cppref": "cpp/thread/counting_semaphore/try_acquire_until", + "cppdoc": "cpp/library/atomic/counting_semaphore/try_acquire_until" + }, + { + "cppref": "cpp/thread/thread/join", + "cppdoc": "cpp/library/atomic/thread/join" + }, + { + "cppref": "cpp/thread/thread/~thread", + "cppdoc": "cpp/library/atomic/thread/~thread" + }, + { + "cppref": "cpp/thread/thread/thread", + "cppdoc": "cpp/library/atomic/thread/thread" + }, + { + "cppref": "cpp/thread/thread/get_id", + "cppdoc": "cpp/library/atomic/thread/get_id" + }, + { + "cppref": "cpp/thread/thread/swap2", + "cppdoc": "cpp/library/atomic/thread/swap2" + }, + { + "cppref": "cpp/thread/thread/swap", + "cppdoc": "cpp/library/atomic/thread/swap" + }, + { + "cppref": "cpp/thread/thread/id", + "cppdoc": "cpp/library/atomic/thread/id" + }, + { + "cppref": "cpp/thread/thread/joinable", + "cppdoc": "cpp/library/atomic/thread/joinable" + }, + { + "cppref": "cpp/thread/thread/detach", + "cppdoc": "cpp/library/atomic/thread/detach" + }, + { + "cppref": "cpp/thread/thread/operator=", + "cppdoc": "cpp/library/atomic/thread/operator=" + }, + { + "cppref": "cpp/thread/thread/hardware_concurrency", + "cppdoc": "cpp/library/atomic/thread/hardware_concurrency" + }, + { + "cppref": "cpp/thread/thread/native_handle", + "cppdoc": "cpp/library/atomic/thread/native_handle" + }, + { + "cppref": "cpp/thread/thread/id/hash", + "cppdoc": "cpp/library/atomic/thread/id/hash" + }, + { + "cppref": "cpp/thread/thread/id/formatter", + "cppdoc": "cpp/library/atomic/thread/id/formatter" + }, + { + "cppref": "cpp/thread/thread/id/id", + "cppdoc": "cpp/library/atomic/thread/id/id" + }, + { + "cppref": "cpp/thread/thread/id/operator_cmp", + "cppdoc": "cpp/library/atomic/thread/id/operator_cmp" + }, + { + "cppref": "cpp/thread/thread/id/operator_ltlt", + "cppdoc": "cpp/library/atomic/thread/id/operator_ltlt" + }, + { + "cppref": "cpp/thread/shared_mutex/unlock_shared", + "cppdoc": "cpp/library/atomic/shared_mutex/unlock_shared" + }, + { + "cppref": "cpp/thread/shared_mutex/lock", + "cppdoc": "cpp/library/atomic/shared_mutex/lock" + }, + { + "cppref": "cpp/thread/shared_mutex/~shared_mutex", + "cppdoc": "cpp/library/atomic/shared_mutex/~shared_mutex" + }, + { + "cppref": "cpp/thread/shared_mutex/try_lock", + "cppdoc": "cpp/library/atomic/shared_mutex/try_lock" + }, + { + "cppref": "cpp/thread/shared_mutex/shared_mutex", + "cppdoc": "cpp/library/atomic/shared_mutex/shared_mutex" + }, + { + "cppref": "cpp/thread/shared_mutex/native_handle", + "cppdoc": "cpp/library/atomic/shared_mutex/native_handle" + }, + { + "cppref": "cpp/thread/shared_mutex/lock_shared", + "cppdoc": "cpp/library/atomic/shared_mutex/lock_shared" + }, + { + "cppref": "cpp/thread/shared_mutex/try_lock_shared", + "cppdoc": "cpp/library/atomic/shared_mutex/try_lock_shared" + }, + { + "cppref": "cpp/thread/shared_mutex/unlock", + "cppdoc": "cpp/library/atomic/shared_mutex/unlock" + }, + { + "cppref": "cpp/thread/stop_source/request_stop", + "cppdoc": "cpp/library/atomic/stop_source/request_stop" + }, + { + "cppref": "cpp/thread/stop_source/swap2", + "cppdoc": "cpp/library/atomic/stop_source/swap2" + }, + { + "cppref": "cpp/thread/stop_source/stop_requested", + "cppdoc": "cpp/library/atomic/stop_source/stop_requested" + }, + { + "cppref": "cpp/thread/stop_source/nostopstate", + "cppdoc": "cpp/library/atomic/stop_source/nostopstate" + }, + { + "cppref": "cpp/thread/stop_source/swap", + "cppdoc": "cpp/library/atomic/stop_source/swap" + }, + { + "cppref": "cpp/thread/stop_source/get_token", + "cppdoc": "cpp/library/atomic/stop_source/get_token" + }, + { + "cppref": "cpp/thread/stop_source/stop_possible", + "cppdoc": "cpp/library/atomic/stop_source/stop_possible" + }, + { + "cppref": "cpp/thread/stop_source/nostopstate_t", + "cppdoc": "cpp/library/atomic/stop_source/nostopstate_t" + }, + { + "cppref": "cpp/thread/stop_source/operator_cmp", + "cppdoc": "cpp/library/atomic/stop_source/operator_cmp" + }, + { + "cppref": "cpp/thread/stop_source/~stop_source", + "cppdoc": "cpp/library/atomic/stop_source/~stop_source" + }, + { + "cppref": "cpp/thread/stop_source/operator=", + "cppdoc": "cpp/library/atomic/stop_source/operator=" + }, + { + "cppref": "cpp/thread/stop_source/stop_source", + "cppdoc": "cpp/library/atomic/stop_source/stop_source" + }, + { + "cppref": "cpp/thread/shared_timed_mutex/unlock_shared", + "cppdoc": "cpp/library/atomic/shared_timed_mutex/unlock_shared" + }, + { + "cppref": "cpp/thread/shared_timed_mutex/try_lock_for", + "cppdoc": "cpp/library/atomic/shared_timed_mutex/try_lock_for" + }, + { + "cppref": "cpp/thread/shared_timed_mutex/try_lock_shared_for", + "cppdoc": "cpp/library/atomic/shared_timed_mutex/try_lock_shared_for" + }, + { + "cppref": "cpp/thread/shared_timed_mutex/shared_timed_mutex", + "cppdoc": "cpp/library/atomic/shared_timed_mutex/shared_timed_mutex" + }, + { + "cppref": "cpp/thread/shared_timed_mutex/try_lock_shared_until", + "cppdoc": "cpp/library/atomic/shared_timed_mutex/try_lock_shared_until" + }, + { + "cppref": "cpp/thread/shared_timed_mutex/lock", + "cppdoc": "cpp/library/atomic/shared_timed_mutex/lock" + }, + { + "cppref": "cpp/thread/shared_timed_mutex/~shared_timed_mutex", + "cppdoc": "cpp/library/atomic/shared_timed_mutex/~shared_timed_mutex" + }, + { + "cppref": "cpp/thread/shared_timed_mutex/try_lock_until", + "cppdoc": "cpp/library/atomic/shared_timed_mutex/try_lock_until" + }, + { + "cppref": "cpp/thread/shared_timed_mutex/try_lock", + "cppdoc": "cpp/library/atomic/shared_timed_mutex/try_lock" + }, + { + "cppref": "cpp/thread/shared_timed_mutex/lock_shared", + "cppdoc": "cpp/library/atomic/shared_timed_mutex/lock_shared" + }, + { + "cppref": "cpp/thread/shared_timed_mutex/try_lock_shared", + "cppdoc": "cpp/library/atomic/shared_timed_mutex/try_lock_shared" + }, + { + "cppref": "cpp/thread/shared_timed_mutex/unlock", + "cppdoc": "cpp/library/atomic/shared_timed_mutex/unlock" + }, + { + "cppref": "cpp/thread/recursive_mutex/recursive_mutex", + "cppdoc": "cpp/library/atomic/recursive_mutex/recursive_mutex" + }, + { + "cppref": "cpp/thread/recursive_mutex/lock", + "cppdoc": "cpp/library/atomic/recursive_mutex/lock" + }, + { + "cppref": "cpp/thread/recursive_mutex/~recursive_mutex", + "cppdoc": "cpp/library/atomic/recursive_mutex/~recursive_mutex" + }, + { + "cppref": "cpp/thread/recursive_mutex/try_lock", + "cppdoc": "cpp/library/atomic/recursive_mutex/try_lock" + }, + { + "cppref": "cpp/thread/recursive_mutex/native_handle", + "cppdoc": "cpp/library/atomic/recursive_mutex/native_handle" + }, + { + "cppref": "cpp/thread/recursive_mutex/unlock", + "cppdoc": "cpp/library/atomic/recursive_mutex/unlock" + }, + { + "cppref": "cpp/thread/future_error/future_error", + "cppdoc": "cpp/library/atomic/future_error/future_error" + }, + { + "cppref": "cpp/thread/future_error/what", + "cppdoc": "cpp/library/atomic/future_error/what" + }, + { + "cppref": "cpp/thread/future_error/code", + "cppdoc": "cpp/library/atomic/future_error/code" + }, + { + "cppref": "cpp/thread/future_error/operator=", + "cppdoc": "cpp/library/atomic/future_error/operator=" + }, + { + "cppref": "cpp/thread/future_errc/make_error_code", + "cppdoc": "cpp/library/atomic/future_errc/make_error_code" + }, + { + "cppref": "cpp/thread/future_errc/make_error_condition", + "cppdoc": "cpp/library/atomic/future_errc/make_error_condition" + }, + { + "cppref": "cpp/thread/future_errc/is_error_code_enum", + "cppdoc": "cpp/library/atomic/future_errc/is_error_code_enum" + }, + { + "cppref": "cpp/thread/condition_variable_any/notify_all", + "cppdoc": "cpp/library/atomic/condition_variable_any/notify_all" + }, + { + "cppref": "cpp/thread/condition_variable_any/wait_for", + "cppdoc": "cpp/library/atomic/condition_variable_any/wait_for" + }, + { + "cppref": "cpp/thread/condition_variable_any/notify_one", + "cppdoc": "cpp/library/atomic/condition_variable_any/notify_one" + }, + { + "cppref": "cpp/thread/condition_variable_any/wait", + "cppdoc": "cpp/library/atomic/condition_variable_any/wait" + }, + { + "cppref": "cpp/thread/condition_variable_any/~condition_variable_any", + "cppdoc": "cpp/library/atomic/condition_variable_any/~condition_variable_any" + }, + { + "cppref": "cpp/thread/condition_variable_any/condition_variable_any", + "cppdoc": "cpp/library/atomic/condition_variable_any/condition_variable_any" + }, + { + "cppref": "cpp/thread/condition_variable_any/wait_until", + "cppdoc": "cpp/library/atomic/condition_variable_any/wait_until" + }, + { + "cppref": "cpp/symbol_index/rel_ops", + "cppdoc": null + }, + { + "cppref": "cpp/symbol_index/this_thread", + "cppdoc": null + }, + { + "cppref": "cpp/symbol_index/ranges", + "cppdoc": null + }, + { + "cppref": "cpp/symbol_index/placeholders", + "cppdoc": null + }, + { + "cppref": "cpp/symbol_index/literals", + "cppdoc": null + }, + { + "cppref": "cpp/symbol_index/filesystem", + "cppdoc": null + }, + { + "cppref": "cpp/symbol_index/linalg", + "cppdoc": null + }, + { + "cppref": "cpp/symbol_index/views", + "cppdoc": null + }, + { + "cppref": "cpp/symbol_index/complex_literals", + "cppdoc": null + }, + { + "cppref": "cpp/symbol_index/macro", + "cppdoc": null + }, + { + "cppref": "cpp/symbol_index/string_literals", + "cppdoc": null + }, + { + "cppref": "cpp/symbol_index/chrono", + "cppdoc": null + }, + { + "cppref": "cpp/symbol_index/zombie_names", + "cppdoc": null + }, + { + "cppref": "cpp/symbol_index/execution", + "cppdoc": null + }, + { + "cppref": "cpp/symbol_index/pmr", + "cppdoc": null + }, + { + "cppref": "cpp/symbol_index/regex_constants", + "cppdoc": null + }, + { + "cppref": "cpp/symbol_index/chrono_literals", + "cppdoc": null + }, + { + "cppref": "cpp/symbol_index/expos", + "cppdoc": null + }, + { + "cppref": "cpp/symbol_index/numbers", + "cppdoc": null + }, + { + "cppref": "cpp/io/basic_ifstream", + "cppdoc": "cpp/library/io/basic_ifstream" + }, + { + "cppref": "cpp/io/streamsize", + "cppdoc": "cpp/library/io/streamsize" + }, + { + "cppref": "cpp/io/strstreambuf", + "cppdoc": "cpp/library/io/strstreambuf" + }, + { + "cppref": "cpp/io/basic_ofstream", + "cppdoc": "cpp/library/io/basic_ofstream" + }, + { + "cppref": "cpp/io/basic_ostringstream", + "cppdoc": "cpp/library/io/basic_ostringstream" + }, + { + "cppref": "cpp/io/basic_filebuf", + "cppdoc": "cpp/library/io/basic_filebuf" + }, + { + "cppref": "cpp/io/basic_istream", + "cppdoc": "cpp/library/io/basic_istream" + }, + { + "cppref": "cpp/io/istrstream", + "cppdoc": "cpp/library/io/istrstream" + }, + { + "cppref": "cpp/io/ios_base", + "cppdoc": "cpp/library/io/ios_base" + }, + { + "cppref": "cpp/io/basic_ispanstream", + "cppdoc": "cpp/library/io/basic_ispanstream" + }, + { + "cppref": "cpp/io/basic_iostream", + "cppdoc": "cpp/library/io/basic_iostream" + }, + { + "cppref": "cpp/io/io_errc", + "cppdoc": "cpp/library/io/io_errc" + }, + { + "cppref": "cpp/io/basic_ios", + "cppdoc": "cpp/library/io/basic_ios" + }, + { + "cppref": "cpp/io/iostream_category", + "cppdoc": "cpp/library/io/iostream_category" + }, + { + "cppref": "cpp/io/basic_ospanstream", + "cppdoc": "cpp/library/io/basic_ospanstream" + }, + { + "cppref": "cpp/io/println", + "cppdoc": "cpp/library/io/println" + }, + { + "cppref": "cpp/io/ostrstream", + "cppdoc": "cpp/library/io/ostrstream" + }, + { + "cppref": "cpp/io/manip", + "cppdoc": "cpp/library/io/manip" + }, + { + "cppref": "cpp/io/vprint_nonunicode", + "cppdoc": "cpp/library/io/vprint_nonunicode" + }, + { + "cppref": "cpp/io/basic_stringstream", + "cppdoc": "cpp/library/io/basic_stringstream" + }, + { + "cppref": "cpp/io/basic_fstream", + "cppdoc": "cpp/library/io/basic_fstream" + }, + { + "cppref": "cpp/io/cin", + "cppdoc": "cpp/library/io/basic_istream/cin" + }, + { + "cppref": "cpp/io/basic_spanbuf", + "cppdoc": "cpp/library/io/basic_spanbuf" + }, + { + "cppref": "cpp/io/c", + "cppdoc": "cpp/library/io/c" + }, + { + "cppref": "cpp/io/strstream", + "cppdoc": "cpp/library/io/strstream" + }, + { + "cppref": "cpp/io/basic_syncbuf", + "cppdoc": "cpp/library/io/basic_syncbuf" + }, + { + "cppref": "cpp/io/basic_stringbuf", + "cppdoc": "cpp/library/io/basic_stringbuf" + }, + { + "cppref": "cpp/io/print", + "cppdoc": "cpp/library/io/print" + }, + { + "cppref": "cpp/io/streamoff", + "cppdoc": "cpp/library/io/streamoff" + }, + { + "cppref": "cpp/io/basic_ostream", + "cppdoc": "cpp/library/io/basic_ostream" + }, + { + "cppref": "cpp/io/vprint_unicode", + "cppdoc": "cpp/library/io/vprint_unicode" + }, + { + "cppref": "cpp/io/fpos", + "cppdoc": "cpp/library/io/fpos" + }, + { + "cppref": "cpp/io/basic_streambuf", + "cppdoc": "cpp/library/io/basic_streambuf" + }, + { + "cppref": "cpp/io/basic_istringstream", + "cppdoc": "cpp/library/io/basic_istringstream" + }, + { + "cppref": "cpp/io/basic_osyncstream", + "cppdoc": "cpp/library/io/basic_osyncstream" + }, + { + "cppref": "cpp/io/basic_spanstream", + "cppdoc": "cpp/library/io/basic_spanstream" + }, + { + "cppref": "cpp/io/basic_stringstream/view", + "cppdoc": "cpp/library/io/basic_stringstream/view" + }, + { + "cppref": "cpp/io/basic_stringstream/swap2", + "cppdoc": "cpp/library/io/basic_stringstream/swap2" + }, + { + "cppref": "cpp/io/basic_stringstream/swap", + "cppdoc": "cpp/library/io/basic_stringstream/swap" + }, + { + "cppref": "cpp/io/basic_stringstream/str", + "cppdoc": "cpp/library/io/basic_stringstream/str" + }, + { + "cppref": "cpp/io/basic_stringstream/basic_stringstream", + "cppdoc": "cpp/library/io/basic_stringstream/basic_stringstream" + }, + { + "cppref": "cpp/io/basic_stringstream/rdbuf", + "cppdoc": "cpp/library/io/basic_stringstream/rdbuf" + }, + { + "cppref": "cpp/io/basic_stringstream/operator=", + "cppdoc": "cpp/library/io/basic_stringstream/operator=" + }, + { + "cppref": "cpp/io/ostrstream/ostrstream", + "cppdoc": "cpp/library/io/ostrstream/ostrstream" + }, + { + "cppref": "cpp/io/ostrstream/pcount", + "cppdoc": "cpp/library/io/ostrstream/pcount" + }, + { + "cppref": "cpp/io/ostrstream/str", + "cppdoc": "cpp/library/io/ostrstream/str" + }, + { + "cppref": "cpp/io/ostrstream/freeze", + "cppdoc": "cpp/library/io/ostrstream/freeze" + }, + { + "cppref": "cpp/io/ostrstream/~ostrstream", + "cppdoc": "cpp/library/io/ostrstream/~ostrstream" + }, + { + "cppref": "cpp/io/ostrstream/rdbuf", + "cppdoc": "cpp/library/io/ostrstream/rdbuf" + }, + { + "cppref": "cpp/io/basic_stringbuf/seekpos", + "cppdoc": "cpp/library/io/basic_stringbuf/seekpos" + }, + { + "cppref": "cpp/io/basic_stringbuf/view", + "cppdoc": "cpp/library/io/basic_stringbuf/view" + }, + { + "cppref": "cpp/io/basic_stringbuf/swap2", + "cppdoc": "cpp/library/io/basic_stringbuf/swap2" + }, + { + "cppref": "cpp/io/basic_stringbuf/underflow", + "cppdoc": "cpp/library/io/basic_stringbuf/underflow" + }, + { + "cppref": "cpp/io/basic_stringbuf/swap", + "cppdoc": "cpp/library/io/basic_stringbuf/swap" + }, + { + "cppref": "cpp/io/basic_stringbuf/init_buf_ptrs", + "cppdoc": "cpp/library/io/basic_stringbuf/init_buf_ptrs" + }, + { + "cppref": "cpp/io/basic_stringbuf/str", + "cppdoc": "cpp/library/io/basic_stringbuf/str" + }, + { + "cppref": "cpp/io/basic_stringbuf/pbackfail", + "cppdoc": "cpp/library/io/basic_stringbuf/pbackfail" + }, + { + "cppref": "cpp/io/basic_stringbuf/overflow", + "cppdoc": "cpp/library/io/basic_stringbuf/overflow" + }, + { + "cppref": "cpp/io/basic_stringbuf/setbuf", + "cppdoc": "cpp/library/io/basic_stringbuf/setbuf" + }, + { + "cppref": "cpp/io/basic_stringbuf/basic_stringbuf", + "cppdoc": "cpp/library/io/basic_stringbuf/basic_stringbuf" + }, + { + "cppref": "cpp/io/basic_stringbuf/get_allocator", + "cppdoc": "cpp/library/io/basic_stringbuf/get_allocator" + }, + { + "cppref": "cpp/io/basic_stringbuf/operator=", + "cppdoc": "cpp/library/io/basic_stringbuf/operator=" + }, + { + "cppref": "cpp/io/basic_stringbuf/seekoff", + "cppdoc": "cpp/library/io/basic_stringbuf/seekoff" + }, + { + "cppref": "cpp/io/basic_filebuf/seekpos", + "cppdoc": "cpp/library/io/basic_filebuf/seekpos" + }, + { + "cppref": "cpp/io/basic_filebuf/basic_filebuf", + "cppdoc": "cpp/library/io/basic_filebuf/basic_filebuf" + }, + { + "cppref": "cpp/io/basic_filebuf/swap2", + "cppdoc": "cpp/library/io/basic_filebuf/swap2" + }, + { + "cppref": "cpp/io/basic_filebuf/underflow", + "cppdoc": "cpp/library/io/basic_filebuf/underflow" + }, + { + "cppref": "cpp/io/basic_filebuf/swap", + "cppdoc": "cpp/library/io/basic_filebuf/swap" + }, + { + "cppref": "cpp/io/basic_filebuf/showmanyc", + "cppdoc": "cpp/library/io/basic_filebuf/showmanyc" + }, + { + "cppref": "cpp/io/basic_filebuf/pbackfail", + "cppdoc": "cpp/library/io/basic_filebuf/pbackfail" + }, + { + "cppref": "cpp/io/basic_filebuf/is_open", + "cppdoc": "cpp/library/io/basic_filebuf/is_open" + }, + { + "cppref": "cpp/io/basic_filebuf/overflow", + "cppdoc": "cpp/library/io/basic_filebuf/overflow" + }, + { + "cppref": "cpp/io/basic_filebuf/close", + "cppdoc": "cpp/library/io/basic_filebuf/close" + }, + { + "cppref": "cpp/io/basic_filebuf/setbuf", + "cppdoc": "cpp/library/io/basic_filebuf/setbuf" + }, + { + "cppref": "cpp/io/basic_filebuf/operator=", + "cppdoc": "cpp/library/io/basic_filebuf/operator=" + }, + { + "cppref": "cpp/io/basic_filebuf/uflow", + "cppdoc": "cpp/library/io/basic_filebuf/uflow" + }, + { + "cppref": "cpp/io/basic_filebuf/open", + "cppdoc": "cpp/library/io/basic_filebuf/open" + }, + { + "cppref": "cpp/io/basic_filebuf/native_handle", + "cppdoc": "cpp/library/io/basic_filebuf/native_handle" + }, + { + "cppref": "cpp/io/basic_filebuf/~basic_filebuf", + "cppdoc": "cpp/library/io/basic_filebuf/~basic_filebuf" + }, + { + "cppref": "cpp/io/basic_filebuf/seekoff", + "cppdoc": "cpp/library/io/basic_filebuf/seekoff" + }, + { + "cppref": "cpp/io/basic_filebuf/imbue", + "cppdoc": "cpp/library/io/basic_filebuf/imbue" + }, + { + "cppref": "cpp/io/basic_filebuf/sync", + "cppdoc": "cpp/library/io/basic_filebuf/sync" + }, + { + "cppref": "cpp/io/io_errc/make_error_code", + "cppdoc": "cpp/library/io/io_errc/make_error_code" + }, + { + "cppref": "cpp/io/io_errc/make_error_condition", + "cppdoc": "cpp/library/io/io_errc/make_error_condition" + }, + { + "cppref": "cpp/io/io_errc/is_error_code_enum", + "cppdoc": "cpp/library/io/io_errc/is_error_code_enum" + }, + { + "cppref": "cpp/io/basic_syncbuf/emit", + "cppdoc": "cpp/library/io/basic_syncbuf/emit" + }, + { + "cppref": "cpp/io/basic_syncbuf/get_wrapped", + "cppdoc": "cpp/library/io/basic_syncbuf/get_wrapped" + }, + { + "cppref": "cpp/io/basic_syncbuf/swap2", + "cppdoc": "cpp/library/io/basic_syncbuf/swap2" + }, + { + "cppref": "cpp/io/basic_syncbuf/swap", + "cppdoc": "cpp/library/io/basic_syncbuf/swap" + }, + { + "cppref": "cpp/io/basic_syncbuf/~basic_syncbuf", + "cppdoc": "cpp/library/io/basic_syncbuf/~basic_syncbuf" + }, + { + "cppref": "cpp/io/basic_syncbuf/basic_syncbuf", + "cppdoc": "cpp/library/io/basic_syncbuf/basic_syncbuf" + }, + { + "cppref": "cpp/io/basic_syncbuf/get_allocator", + "cppdoc": "cpp/library/io/basic_syncbuf/get_allocator" + }, + { + "cppref": "cpp/io/basic_syncbuf/set_emit_on_sync", + "cppdoc": "cpp/library/io/basic_syncbuf/set_emit_on_sync" + }, + { + "cppref": "cpp/io/basic_syncbuf/operator=", + "cppdoc": "cpp/library/io/basic_syncbuf/operator=" + }, + { + "cppref": "cpp/io/basic_syncbuf/sync", + "cppdoc": "cpp/library/io/basic_syncbuf/sync" + }, + { + "cppref": "cpp/io/fpos/state", + "cppdoc": "cpp/library/io/fpos/state" + }, + { + "cppref": "cpp/io/strstream/pcount", + "cppdoc": "cpp/library/io/strstream/pcount" + }, + { + "cppref": "cpp/io/strstream/str", + "cppdoc": "cpp/library/io/strstream/str" + }, + { + "cppref": "cpp/io/strstream/freeze", + "cppdoc": "cpp/library/io/strstream/freeze" + }, + { + "cppref": "cpp/io/strstream/strstream", + "cppdoc": "cpp/library/io/strstream/strstream" + }, + { + "cppref": "cpp/io/strstream/rdbuf", + "cppdoc": "cpp/library/io/strstream/rdbuf" + }, + { + "cppref": "cpp/io/strstream/~strstream", + "cppdoc": "cpp/library/io/strstream/~strstream" + }, + { + "cppref": "cpp/io/basic_streambuf/pptr", + "cppdoc": "cpp/library/io/basic_streambuf/pptr" + }, + { + "cppref": "cpp/io/basic_streambuf/pubseekoff", + "cppdoc": "cpp/library/io/basic_streambuf/pubseekoff" + }, + { + "cppref": "cpp/io/basic_streambuf/sgetn", + "cppdoc": "cpp/library/io/basic_streambuf/sgetn" + }, + { + "cppref": "cpp/io/basic_streambuf/pubseekpos", + "cppdoc": "cpp/library/io/basic_streambuf/pubseekpos" + }, + { + "cppref": "cpp/io/basic_streambuf/getloc", + "cppdoc": "cpp/library/io/basic_streambuf/getloc" + }, + { + "cppref": "cpp/io/basic_streambuf/sputbackc", + "cppdoc": "cpp/library/io/basic_streambuf/sputbackc" + }, + { + "cppref": "cpp/io/basic_streambuf/~basic_streambuf", + "cppdoc": "cpp/library/io/basic_streambuf/~basic_streambuf" + }, + { + "cppref": "cpp/io/basic_streambuf/gptr", + "cppdoc": "cpp/library/io/basic_streambuf/gptr" + }, + { + "cppref": "cpp/io/basic_streambuf/sungetc", + "cppdoc": "cpp/library/io/basic_streambuf/sungetc" + }, + { + "cppref": "cpp/io/basic_streambuf/setp", + "cppdoc": "cpp/library/io/basic_streambuf/setp" + }, + { + "cppref": "cpp/io/basic_streambuf/setg", + "cppdoc": "cpp/library/io/basic_streambuf/setg" + }, + { + "cppref": "cpp/io/basic_streambuf/underflow", + "cppdoc": "cpp/library/io/basic_streambuf/underflow" + }, + { + "cppref": "cpp/io/basic_streambuf/swap", + "cppdoc": "cpp/library/io/basic_streambuf/swap" + }, + { + "cppref": "cpp/io/basic_streambuf/pubimbue", + "cppdoc": "cpp/library/io/basic_streambuf/pubimbue" + }, + { + "cppref": "cpp/io/basic_streambuf/showmanyc", + "cppdoc": "cpp/library/io/basic_streambuf/showmanyc" + }, + { + "cppref": "cpp/io/basic_streambuf/sputn", + "cppdoc": "cpp/library/io/basic_streambuf/sputn" + }, + { + "cppref": "cpp/io/basic_streambuf/pbump", + "cppdoc": "cpp/library/io/basic_streambuf/pbump" + }, + { + "cppref": "cpp/io/basic_streambuf/snextc", + "cppdoc": "cpp/library/io/basic_streambuf/snextc" + }, + { + "cppref": "cpp/io/basic_streambuf/sgetc", + "cppdoc": "cpp/library/io/basic_streambuf/sgetc" + }, + { + "cppref": "cpp/io/basic_streambuf/pbackfail", + "cppdoc": "cpp/library/io/basic_streambuf/pbackfail" + }, + { + "cppref": "cpp/io/basic_streambuf/sputc", + "cppdoc": "cpp/library/io/basic_streambuf/sputc" + }, + { + "cppref": "cpp/io/basic_streambuf/overflow", + "cppdoc": "cpp/library/io/basic_streambuf/overflow" + }, + { + "cppref": "cpp/io/basic_streambuf/in_avail", + "cppdoc": "cpp/library/io/basic_streambuf/in_avail" + }, + { + "cppref": "cpp/io/basic_streambuf/sbumpc", + "cppdoc": "cpp/library/io/basic_streambuf/sbumpc" + }, + { + "cppref": "cpp/io/basic_streambuf/gbump", + "cppdoc": "cpp/library/io/basic_streambuf/gbump" + }, + { + "cppref": "cpp/io/basic_streambuf/basic_streambuf", + "cppdoc": "cpp/library/io/basic_streambuf/basic_streambuf" + }, + { + "cppref": "cpp/io/basic_streambuf/pubsetbuf", + "cppdoc": "cpp/library/io/basic_streambuf/pubsetbuf" + }, + { + "cppref": "cpp/io/basic_streambuf/operator=", + "cppdoc": "cpp/library/io/basic_streambuf/operator=" + }, + { + "cppref": "cpp/io/basic_streambuf/uflow", + "cppdoc": "cpp/library/io/basic_streambuf/uflow" + }, + { + "cppref": "cpp/io/basic_streambuf/pubsync", + "cppdoc": "cpp/library/io/basic_streambuf/pubsync" + }, + { + "cppref": "cpp/io/istrstream/istrstream", + "cppdoc": "cpp/library/io/istrstream/istrstream" + }, + { + "cppref": "cpp/io/istrstream/~istrstream", + "cppdoc": "cpp/library/io/istrstream/~istrstream" + }, + { + "cppref": "cpp/io/istrstream/str", + "cppdoc": "cpp/library/io/istrstream/str" + }, + { + "cppref": "cpp/io/istrstream/rdbuf", + "cppdoc": "cpp/library/io/istrstream/rdbuf" + }, + { + "cppref": "cpp/io/basic_ispanstream/span", + "cppdoc": "cpp/library/io/basic_ispanstream/span" + }, + { + "cppref": "cpp/io/basic_ispanstream/basic_ispanstream", + "cppdoc": "cpp/library/io/basic_ispanstream/basic_ispanstream" + }, + { + "cppref": "cpp/io/basic_ispanstream/swap2", + "cppdoc": "cpp/library/io/basic_ispanstream/swap2" + }, + { + "cppref": "cpp/io/basic_ispanstream/swap", + "cppdoc": "cpp/library/io/basic_ispanstream/swap" + }, + { + "cppref": "cpp/io/basic_ispanstream/rdbuf", + "cppdoc": "cpp/library/io/basic_ispanstream/rdbuf" + }, + { + "cppref": "cpp/io/basic_ispanstream/operator=", + "cppdoc": "cpp/library/io/basic_ispanstream/operator=" + }, + { + "cppref": "cpp/io/basic_ofstream/basic_ofstream", + "cppdoc": "cpp/library/io/basic_ofstream/basic_ofstream" + }, + { + "cppref": "cpp/io/basic_ofstream/swap2", + "cppdoc": "cpp/library/io/basic_ofstream/swap2" + }, + { + "cppref": "cpp/io/basic_ofstream/swap", + "cppdoc": "cpp/library/io/basic_ofstream/swap" + }, + { + "cppref": "cpp/io/basic_ofstream/is_open", + "cppdoc": "cpp/library/io/basic_ofstream/is_open" + }, + { + "cppref": "cpp/io/basic_ofstream/close", + "cppdoc": "cpp/library/io/basic_ofstream/close" + }, + { + "cppref": "cpp/io/basic_ofstream/rdbuf", + "cppdoc": "cpp/library/io/basic_ofstream/rdbuf" + }, + { + "cppref": "cpp/io/basic_ofstream/operator=", + "cppdoc": "cpp/library/io/basic_ofstream/operator=" + }, + { + "cppref": "cpp/io/basic_ofstream/open", + "cppdoc": "cpp/library/io/basic_ofstream/open" + }, + { + "cppref": "cpp/io/basic_ofstream/native_handle", + "cppdoc": "cpp/library/io/basic_ofstream/native_handle" + }, + { + "cppref": "cpp/io/c/fputwc", + "cppdoc": "cpp/library/io/c/fputwc" + }, + { + "cppref": "cpp/io/c/fread", + "cppdoc": "cpp/library/io/c/fread" + }, + { + "cppref": "cpp/io/c/fflush", + "cppdoc": "cpp/library/io/c/fflush" + }, + { + "cppref": "cpp/io/c/remove", + "cppdoc": "cpp/library/io/c/remove" + }, + { + "cppref": "cpp/io/c/fsetpos", + "cppdoc": "cpp/library/io/c/fsetpos" + }, + { + "cppref": "cpp/io/c/fscanf", + "cppdoc": "cpp/library/io/c/fscanf" + }, + { + "cppref": "cpp/io/c/ungetc", + "cppdoc": "cpp/library/io/c/ungetc" + }, + { + "cppref": "cpp/io/c/fopen", + "cppdoc": "cpp/library/io/c/fopen" + }, + { + "cppref": "cpp/io/c/getwchar", + "cppdoc": "cpp/library/io/c/getwchar" + }, + { + "cppref": "cpp/io/c/fwscanf", + "cppdoc": "cpp/library/io/c/fwscanf" + }, + { + "cppref": "cpp/io/c/fputs", + "cppdoc": "cpp/library/io/c/fputs" + }, + { + "cppref": "cpp/io/c/gets", + "cppdoc": "cpp/library/io/c/gets" + }, + { + "cppref": "cpp/io/c/snprintf", + "cppdoc": "cpp/library/io/c/snprintf" + }, + { + "cppref": "cpp/io/c/clearerr", + "cppdoc": "cpp/library/io/c/clearerr" + }, + { + "cppref": "cpp/io/c/fwide", + "cppdoc": "cpp/library/io/c/fwide" + }, + { + "cppref": "cpp/io/c/fputws", + "cppdoc": "cpp/library/io/c/fputws" + }, + { + "cppref": "cpp/io/c/ferror", + "cppdoc": "cpp/library/io/c/ferror" + }, + { + "cppref": "cpp/io/c/fgets", + "cppdoc": "cpp/library/io/c/fgets" + }, + { + "cppref": "cpp/io/c/fgetpos", + "cppdoc": "cpp/library/io/c/fgetpos" + }, + { + "cppref": "cpp/io/c/tmpnam", + "cppdoc": "cpp/library/io/c/tmpnam" + }, + { + "cppref": "cpp/io/c/perror", + "cppdoc": "cpp/library/io/c/perror" + }, + { + "cppref": "cpp/io/c/vfwscanf", + "cppdoc": "cpp/library/io/c/vfwscanf" + }, + { + "cppref": "cpp/io/c/fclose", + "cppdoc": "cpp/library/io/c/fclose" + }, + { + "cppref": "cpp/io/c/fprintf", + "cppdoc": "cpp/library/io/c/fprintf" + }, + { + "cppref": "cpp/io/c/tmpfile", + "cppdoc": "cpp/library/io/c/tmpfile" + }, + { + "cppref": "cpp/io/c/rename", + "cppdoc": "cpp/library/io/c/rename" + }, + { + "cppref": "cpp/io/c/fgetc", + "cppdoc": "cpp/library/io/c/fgetc" + }, + { + "cppref": "cpp/io/c/freopen", + "cppdoc": "cpp/library/io/c/freopen" + }, + { + "cppref": "cpp/io/c/std_streams", + "cppdoc": "cpp/library/io/c/std_streams" + }, + { + "cppref": "cpp/io/c/fgetws", + "cppdoc": "cpp/library/io/c/fgetws" + }, + { + "cppref": "cpp/io/c/fseek", + "cppdoc": "cpp/library/io/c/fseek" + }, + { + "cppref": "cpp/io/c/FILE", + "cppdoc": "cpp/library/io/c/FILE" + }, + { + "cppref": "cpp/io/c/getchar", + "cppdoc": "cpp/library/io/c/getchar" + }, + { + "cppref": "cpp/io/c/fgetwc", + "cppdoc": "cpp/library/io/c/fgetwc" + }, + { + "cppref": "cpp/io/c/ftell", + "cppdoc": "cpp/library/io/c/ftell" + }, + { + "cppref": "cpp/io/c/vfwprintf", + "cppdoc": "cpp/library/io/c/vfwprintf" + }, + { + "cppref": "cpp/io/c/putwchar", + "cppdoc": "cpp/library/io/c/putwchar" + }, + { + "cppref": "cpp/io/c/fputc", + "cppdoc": "cpp/library/io/c/fputc" + }, + { + "cppref": "cpp/io/c/setbuf", + "cppdoc": "cpp/library/io/c/setbuf" + }, + { + "cppref": "cpp/io/c/puts", + "cppdoc": "cpp/library/io/c/puts" + }, + { + "cppref": "cpp/io/c/printf", + "cppdoc": "cpp/library/io/c/printf" + }, + { + "cppref": "cpp/io/c/fwprintf", + "cppdoc": "cpp/library/io/c/fwprintf" + }, + { + "cppref": "cpp/io/c/rewind", + "cppdoc": "cpp/library/io/c/rewind" + }, + { + "cppref": "cpp/io/c/vfprintf", + "cppdoc": "cpp/library/io/c/vfprintf" + }, + { + "cppref": "cpp/io/c/fpos_t", + "cppdoc": "cpp/library/io/c/fpos_t" + }, + { + "cppref": "cpp/io/c/putchar", + "cppdoc": "cpp/library/io/c/putchar" + }, + { + "cppref": "cpp/io/c/ungetwc", + "cppdoc": "cpp/library/io/c/ungetwc" + }, + { + "cppref": "cpp/io/c/feof", + "cppdoc": "cpp/library/io/c/feof" + }, + { + "cppref": "cpp/io/c/fwrite", + "cppdoc": "cpp/library/io/c/fwrite" + }, + { + "cppref": "cpp/io/c/setvbuf", + "cppdoc": "cpp/library/io/c/setvbuf" + }, + { + "cppref": "cpp/io/c/scanf", + "cppdoc": "cpp/library/io/c/scanf" + }, + { + "cppref": "cpp/io/c/vfscanf", + "cppdoc": "cpp/library/io/c/vfscanf" + }, + { + "cppref": "cpp/io/basic_spanbuf/seekpos", + "cppdoc": "cpp/library/io/basic_spanbuf/seekpos" + }, + { + "cppref": "cpp/io/basic_spanbuf/span", + "cppdoc": "cpp/library/io/basic_spanbuf/span" + }, + { + "cppref": "cpp/io/basic_spanbuf/swap2", + "cppdoc": "cpp/library/io/basic_spanbuf/swap2" + }, + { + "cppref": "cpp/io/basic_spanbuf/swap", + "cppdoc": "cpp/library/io/basic_spanbuf/swap" + }, + { + "cppref": "cpp/io/basic_spanbuf/basic_spanbuf", + "cppdoc": "cpp/library/io/basic_spanbuf/basic_spanbuf" + }, + { + "cppref": "cpp/io/basic_spanbuf/setbuf", + "cppdoc": "cpp/library/io/basic_spanbuf/setbuf" + }, + { + "cppref": "cpp/io/basic_spanbuf/operator=", + "cppdoc": "cpp/library/io/basic_spanbuf/operator=" + }, + { + "cppref": "cpp/io/basic_spanbuf/seekoff", + "cppdoc": "cpp/library/io/basic_spanbuf/seekoff" + }, + { + "cppref": "cpp/io/basic_ios/tie", + "cppdoc": "cpp/library/io/basic_ios/tie" + }, + { + "cppref": "cpp/io/basic_ios/move", + "cppdoc": "cpp/library/io/basic_ios/move" + }, + { + "cppref": "cpp/io/basic_ios/~basic_ios", + "cppdoc": "cpp/library/io/basic_ios/~basic_ios" + }, + { + "cppref": "cpp/io/basic_ios/eof", + "cppdoc": "cpp/library/io/basic_ios/eof" + }, + { + "cppref": "cpp/io/basic_ios/basic_ios", + "cppdoc": "cpp/library/io/basic_ios/basic_ios" + }, + { + "cppref": "cpp/io/basic_ios/exceptions", + "cppdoc": "cpp/library/io/basic_ios/exceptions" + }, + { + "cppref": "cpp/io/basic_ios/swap", + "cppdoc": "cpp/library/io/basic_ios/swap" + }, + { + "cppref": "cpp/io/basic_ios/set_rdbuf", + "cppdoc": "cpp/library/io/basic_ios/set_rdbuf" + }, + { + "cppref": "cpp/io/basic_ios/bad", + "cppdoc": "cpp/library/io/basic_ios/bad" + }, + { + "cppref": "cpp/io/basic_ios/narrow", + "cppdoc": "cpp/library/io/basic_ios/narrow" + }, + { + "cppref": "cpp/io/basic_ios/copyfmt", + "cppdoc": "cpp/library/io/basic_ios/copyfmt" + }, + { + "cppref": "cpp/io/basic_ios/good", + "cppdoc": "cpp/library/io/basic_ios/good" + }, + { + "cppref": "cpp/io/basic_ios/operator!", + "cppdoc": "cpp/library/io/basic_ios/operator!" + }, + { + "cppref": "cpp/io/basic_ios/fill", + "cppdoc": "cpp/library/io/basic_ios/fill" + }, + { + "cppref": "cpp/io/basic_ios/setstate", + "cppdoc": "cpp/library/io/basic_ios/setstate" + }, + { + "cppref": "cpp/io/basic_ios/rdstate", + "cppdoc": "cpp/library/io/basic_ios/rdstate" + }, + { + "cppref": "cpp/io/basic_ios/rdbuf", + "cppdoc": "cpp/library/io/basic_ios/rdbuf" + }, + { + "cppref": "cpp/io/basic_ios/widen", + "cppdoc": "cpp/library/io/basic_ios/widen" + }, + { + "cppref": "cpp/io/basic_ios/operator_bool", + "cppdoc": "cpp/library/io/basic_ios/operator_bool" + }, + { + "cppref": "cpp/io/basic_ios/fail", + "cppdoc": "cpp/library/io/basic_ios/fail" + }, + { + "cppref": "cpp/io/basic_ios/imbue", + "cppdoc": "cpp/library/io/basic_ios/imbue" + }, + { + "cppref": "cpp/io/basic_ios/init", + "cppdoc": "cpp/library/io/basic_ios/init" + }, + { + "cppref": "cpp/io/basic_ios/clear", + "cppdoc": "cpp/library/io/basic_ios/clear" + }, + { + "cppref": "cpp/io/basic_ostringstream/basic_ostringstream", + "cppdoc": "cpp/library/io/basic_ostringstream/basic_ostringstream" + }, + { + "cppref": "cpp/io/basic_ostringstream/view", + "cppdoc": "cpp/library/io/basic_ostringstream/view" + }, + { + "cppref": "cpp/io/basic_ostringstream/swap2", + "cppdoc": "cpp/library/io/basic_ostringstream/swap2" + }, + { + "cppref": "cpp/io/basic_ostringstream/swap", + "cppdoc": "cpp/library/io/basic_ostringstream/swap" + }, + { + "cppref": "cpp/io/basic_ostringstream/str", + "cppdoc": "cpp/library/io/basic_ostringstream/str" + }, + { + "cppref": "cpp/io/basic_ostringstream/rdbuf", + "cppdoc": "cpp/library/io/basic_ostringstream/rdbuf" + }, + { + "cppref": "cpp/io/basic_ostringstream/operator=", + "cppdoc": "cpp/library/io/basic_ostringstream/operator=" + }, + { + "cppref": "cpp/io/basic_iostream/basic_iostream", + "cppdoc": "cpp/library/io/basic_iostream/basic_iostream" + }, + { + "cppref": "cpp/io/basic_iostream/swap", + "cppdoc": "cpp/library/io/basic_iostream/swap" + }, + { + "cppref": "cpp/io/basic_iostream/operator=", + "cppdoc": "cpp/library/io/basic_iostream/operator=" + }, + { + "cppref": "cpp/io/basic_iostream/~basic_iostream", + "cppdoc": "cpp/library/io/basic_iostream/~basic_iostream" + }, + { + "cppref": "cpp/io/ios_base/seekdir", + "cppdoc": "cpp/library/io/ios_base/seekdir" + }, + { + "cppref": "cpp/io/ios_base/register_callback", + "cppdoc": "cpp/library/io/ios_base/register_callback" + }, + { + "cppref": "cpp/io/ios_base/width", + "cppdoc": "cpp/library/io/ios_base/width" + }, + { + "cppref": "cpp/io/ios_base/iword", + "cppdoc": "cpp/library/io/ios_base/iword" + }, + { + "cppref": "cpp/io/ios_base/event_callback", + "cppdoc": "cpp/library/io/ios_base/event_callback" + }, + { + "cppref": "cpp/io/ios_base/iostate", + "cppdoc": "cpp/library/io/ios_base/iostate" + }, + { + "cppref": "cpp/io/ios_base/getloc", + "cppdoc": "cpp/library/io/ios_base/getloc" + }, + { + "cppref": "cpp/io/ios_base/ios_base", + "cppdoc": "cpp/library/io/ios_base/ios_base" + }, + { + "cppref": "cpp/io/ios_base/setf", + "cppdoc": "cpp/library/io/ios_base/setf" + }, + { + "cppref": "cpp/io/ios_base/fmtflags", + "cppdoc": "cpp/library/io/ios_base/fmtflags" + }, + { + "cppref": "cpp/io/ios_base/flags", + "cppdoc": "cpp/library/io/ios_base/flags" + }, + { + "cppref": "cpp/io/ios_base/~ios_base", + "cppdoc": "cpp/library/io/ios_base/~ios_base" + }, + { + "cppref": "cpp/io/ios_base/event", + "cppdoc": "cpp/library/io/ios_base/event" + }, + { + "cppref": "cpp/io/ios_base/Init", + "cppdoc": "cpp/library/io/ios_base/Init" + }, + { + "cppref": "cpp/io/ios_base/precision", + "cppdoc": "cpp/library/io/ios_base/precision" + }, + { + "cppref": "cpp/io/ios_base/unsetf", + "cppdoc": "cpp/library/io/ios_base/unsetf" + }, + { + "cppref": "cpp/io/ios_base/operator=", + "cppdoc": "cpp/library/io/ios_base/operator=" + }, + { + "cppref": "cpp/io/ios_base/xalloc", + "cppdoc": "cpp/library/io/ios_base/xalloc" + }, + { + "cppref": "cpp/io/ios_base/openmode", + "cppdoc": "cpp/library/io/ios_base/openmode" + }, + { + "cppref": "cpp/io/ios_base/pword", + "cppdoc": "cpp/library/io/ios_base/pword" + }, + { + "cppref": "cpp/io/ios_base/imbue", + "cppdoc": "cpp/library/io/ios_base/imbue" + }, + { + "cppref": "cpp/io/ios_base/sync_with_stdio", + "cppdoc": "cpp/library/io/ios_base/sync_with_stdio" + }, + { + "cppref": "cpp/io/ios_base/failure", + "cppdoc": "cpp/library/io/ios_base/failure" + }, + { + "cppref": "cpp/io/basic_ospanstream/span", + "cppdoc": "cpp/library/io/basic_ospanstream/span" + }, + { + "cppref": "cpp/io/basic_ospanstream/swap2", + "cppdoc": "cpp/library/io/basic_ospanstream/swap2" + }, + { + "cppref": "cpp/io/basic_ospanstream/basic_ospanstream", + "cppdoc": "cpp/library/io/basic_ospanstream/basic_ospanstream" + }, + { + "cppref": "cpp/io/basic_ospanstream/swap", + "cppdoc": "cpp/library/io/basic_ospanstream/swap" + }, + { + "cppref": "cpp/io/basic_ospanstream/rdbuf", + "cppdoc": "cpp/library/io/basic_ospanstream/rdbuf" + }, + { + "cppref": "cpp/io/basic_ospanstream/operator=", + "cppdoc": "cpp/library/io/basic_ospanstream/operator=" + }, + { + "cppref": "cpp/io/basic_osyncstream/emit", + "cppdoc": "cpp/library/io/basic_osyncstream/emit" + }, + { + "cppref": "cpp/io/basic_osyncstream/get_wrapped", + "cppdoc": "cpp/library/io/basic_osyncstream/get_wrapped" + }, + { + "cppref": "cpp/io/basic_osyncstream/~basic_osyncstream", + "cppdoc": "cpp/library/io/basic_osyncstream/~basic_osyncstream" + }, + { + "cppref": "cpp/io/basic_osyncstream/rdbuf", + "cppdoc": "cpp/library/io/basic_osyncstream/rdbuf" + }, + { + "cppref": "cpp/io/basic_osyncstream/operator=", + "cppdoc": "cpp/library/io/basic_osyncstream/operator=" + }, + { + "cppref": "cpp/io/basic_osyncstream/basic_osyncstream", + "cppdoc": "cpp/library/io/basic_osyncstream/basic_osyncstream" + }, + { + "cppref": "cpp/io/strstreambuf/seekpos", + "cppdoc": "cpp/library/io/strstreambuf/seekpos" + }, + { + "cppref": "cpp/io/strstreambuf/strstreambuf", + "cppdoc": "cpp/library/io/strstreambuf/strstreambuf" + }, + { + "cppref": "cpp/io/strstreambuf/underflow", + "cppdoc": "cpp/library/io/strstreambuf/underflow" + }, + { + "cppref": "cpp/io/strstreambuf/pcount", + "cppdoc": "cpp/library/io/strstreambuf/pcount" + }, + { + "cppref": "cpp/io/strstreambuf/str", + "cppdoc": "cpp/library/io/strstreambuf/str" + }, + { + "cppref": "cpp/io/strstreambuf/freeze", + "cppdoc": "cpp/library/io/strstreambuf/freeze" + }, + { + "cppref": "cpp/io/strstreambuf/pbackfail", + "cppdoc": "cpp/library/io/strstreambuf/pbackfail" + }, + { + "cppref": "cpp/io/strstreambuf/overflow", + "cppdoc": "cpp/library/io/strstreambuf/overflow" + }, + { + "cppref": "cpp/io/strstreambuf/setbuf", + "cppdoc": "cpp/library/io/strstreambuf/setbuf" + }, + { + "cppref": "cpp/io/strstreambuf/~strstreambuf", + "cppdoc": "cpp/library/io/strstreambuf/~strstreambuf" + }, + { + "cppref": "cpp/io/strstreambuf/seekoff", + "cppdoc": "cpp/library/io/strstreambuf/seekoff" + }, + { + "cppref": "cpp/io/basic_ostream/seekp", + "cppdoc": "cpp/library/io/basic_ostream/seekp" + }, + { + "cppref": "cpp/io/basic_ostream/operator_ltlt2", + "cppdoc": "cpp/library/io/basic_ostream/operator_ltlt2" + }, + { + "cppref": "cpp/io/basic_ostream/println", + "cppdoc": "cpp/library/io/basic_ostream/println" + }, + { + "cppref": "cpp/io/basic_ostream/tellp", + "cppdoc": "cpp/library/io/basic_ostream/tellp" + }, + { + "cppref": "cpp/io/basic_ostream/swap", + "cppdoc": "cpp/library/io/basic_ostream/swap" + }, + { + "cppref": "cpp/io/basic_ostream/put", + "cppdoc": "cpp/library/io/basic_ostream/put" + }, + { + "cppref": "cpp/io/basic_ostream/sentry", + "cppdoc": "cpp/library/io/basic_ostream/sentry" + }, + { + "cppref": "cpp/io/basic_ostream/vprint_nonunicode", + "cppdoc": "cpp/library/io/basic_ostream/vprint_nonunicode" + }, + { + "cppref": "cpp/io/basic_ostream/~basic_ostream", + "cppdoc": "cpp/library/io/basic_ostream/~basic_ostream" + }, + { + "cppref": "cpp/io/basic_ostream/print", + "cppdoc": "cpp/library/io/basic_ostream/print" + }, + { + "cppref": "cpp/io/basic_ostream/basic_ostream", + "cppdoc": "cpp/library/io/basic_ostream/basic_ostream" + }, + { + "cppref": "cpp/io/basic_ostream/flush", + "cppdoc": "cpp/library/io/basic_ostream/flush" + }, + { + "cppref": "cpp/io/basic_ostream/vprint_unicode", + "cppdoc": "cpp/library/io/basic_ostream/vprint_unicode" + }, + { + "cppref": "cpp/io/basic_ostream/write", + "cppdoc": "cpp/library/io/basic_ostream/write" + }, + { + "cppref": "cpp/io/basic_ostream/operator=", + "cppdoc": "cpp/library/io/basic_ostream/operator=" + }, + { + "cppref": "cpp/io/basic_ostream/operator_ltlt", + "cppdoc": "cpp/library/io/basic_ostream/operator_ltlt" + }, + { + "cppref": "cpp/io/basic_istream/unget", + "cppdoc": "cpp/library/io/basic_istream/unget" + }, + { + "cppref": "cpp/io/basic_istream/basic_istream", + "cppdoc": "cpp/library/io/basic_istream/basic_istream" + }, + { + "cppref": "cpp/io/basic_istream/putback", + "cppdoc": "cpp/library/io/basic_istream/putback" + }, + { + "cppref": "cpp/io/basic_istream/tellg", + "cppdoc": "cpp/library/io/basic_istream/tellg" + }, + { + "cppref": "cpp/io/basic_istream/ignore", + "cppdoc": "cpp/library/io/basic_istream/ignore" + }, + { + "cppref": "cpp/io/basic_istream/getline", + "cppdoc": "cpp/library/io/basic_istream/getline" + }, + { + "cppref": "cpp/io/basic_istream/swap", + "cppdoc": "cpp/library/io/basic_istream/swap" + }, + { + "cppref": "cpp/io/basic_istream/sentry", + "cppdoc": "cpp/library/io/basic_istream/sentry" + }, + { + "cppref": "cpp/io/basic_istream/readsome", + "cppdoc": "cpp/library/io/basic_istream/readsome" + }, + { + "cppref": "cpp/io/basic_istream/seekg", + "cppdoc": "cpp/library/io/basic_istream/seekg" + }, + { + "cppref": "cpp/io/basic_istream/operator_gtgt2", + "cppdoc": "cpp/library/io/basic_istream/operator_gtgt2" + }, + { + "cppref": "cpp/io/basic_istream/gcount", + "cppdoc": "cpp/library/io/basic_istream/gcount" + }, + { + "cppref": "cpp/io/basic_istream/get", + "cppdoc": "cpp/library/io/basic_istream/get" + }, + { + "cppref": "cpp/io/basic_istream/peek", + "cppdoc": "cpp/library/io/basic_istream/peek" + }, + { + "cppref": "cpp/io/basic_istream/~basic_istream", + "cppdoc": "cpp/library/io/basic_istream/~basic_istream" + }, + { + "cppref": "cpp/io/basic_istream/operator_gtgt", + "cppdoc": "cpp/library/io/basic_istream/operator_gtgt" + }, + { + "cppref": "cpp/io/basic_istream/operator=", + "cppdoc": "cpp/library/io/basic_istream/operator=" + }, + { + "cppref": "cpp/io/basic_istream/sync", + "cppdoc": "cpp/library/io/basic_istream/sync" + }, + { + "cppref": "cpp/io/basic_istream/read", + "cppdoc": "cpp/library/io/basic_istream/read" + }, + { + "cppref": "cpp/io/manip/get_time", + "cppdoc": "cpp/library/io/manip/get_time" + }, + { + "cppref": "cpp/io/manip/left", + "cppdoc": "cpp/library/io/manip/left" + }, + { + "cppref": "cpp/io/manip/flush_emit", + "cppdoc": "cpp/library/io/manip/flush_emit" + }, + { + "cppref": "cpp/io/manip/showbase", + "cppdoc": "cpp/library/io/manip/showbase" + }, + { + "cppref": "cpp/io/manip/resetiosflags", + "cppdoc": "cpp/library/io/manip/resetiosflags" + }, + { + "cppref": "cpp/io/manip/ws", + "cppdoc": "cpp/library/io/manip/ws" + }, + { + "cppref": "cpp/io/manip/ends", + "cppdoc": "cpp/library/io/manip/ends" + }, + { + "cppref": "cpp/io/manip/skipws", + "cppdoc": "cpp/library/io/manip/skipws" + }, + { + "cppref": "cpp/io/manip/put_money", + "cppdoc": "cpp/library/io/manip/put_money" + }, + { + "cppref": "cpp/io/manip/showpoint", + "cppdoc": "cpp/library/io/manip/showpoint" + }, + { + "cppref": "cpp/io/manip/setiosflags", + "cppdoc": "cpp/library/io/manip/setiosflags" + }, + { + "cppref": "cpp/io/manip/uppercase", + "cppdoc": "cpp/library/io/manip/uppercase" + }, + { + "cppref": "cpp/io/manip/fixed", + "cppdoc": "cpp/library/io/manip/fixed" + }, + { + "cppref": "cpp/io/manip/put_time", + "cppdoc": "cpp/library/io/manip/put_time" + }, + { + "cppref": "cpp/io/manip/setbase", + "cppdoc": "cpp/library/io/manip/setbase" + }, + { + "cppref": "cpp/io/manip/quoted", + "cppdoc": "cpp/library/io/manip/quoted" + }, + { + "cppref": "cpp/io/manip/setw", + "cppdoc": "cpp/library/io/manip/setw" + }, + { + "cppref": "cpp/io/manip/boolalpha", + "cppdoc": "cpp/library/io/manip/boolalpha" + }, + { + "cppref": "cpp/io/manip/unitbuf", + "cppdoc": "cpp/library/io/manip/unitbuf" + }, + { + "cppref": "cpp/io/manip/flush", + "cppdoc": "cpp/library/io/manip/flush" + }, + { + "cppref": "cpp/io/manip/showpos", + "cppdoc": "cpp/library/io/manip/showpos" + }, + { + "cppref": "cpp/io/manip/setprecision", + "cppdoc": "cpp/library/io/manip/setprecision" + }, + { + "cppref": "cpp/io/manip/endl", + "cppdoc": "cpp/library/io/manip/endl" + }, + { + "cppref": "cpp/io/manip/setfill", + "cppdoc": "cpp/library/io/manip/setfill" + }, + { + "cppref": "cpp/io/manip/get_money", + "cppdoc": "cpp/library/io/manip/get_money" + }, + { + "cppref": "cpp/io/manip/hex", + "cppdoc": "cpp/library/io/manip/hex" + }, + { + "cppref": "cpp/io/manip/emit_on_flush", + "cppdoc": "cpp/library/io/manip/emit_on_flush" + }, + { + "cppref": "cpp/io/basic_fstream/swap2", + "cppdoc": "cpp/library/io/basic_fstream/swap2" + }, + { + "cppref": "cpp/io/basic_fstream/swap", + "cppdoc": "cpp/library/io/basic_fstream/swap" + }, + { + "cppref": "cpp/io/basic_fstream/basic_fstream", + "cppdoc": "cpp/library/io/basic_fstream/basic_fstream" + }, + { + "cppref": "cpp/io/basic_fstream/is_open", + "cppdoc": "cpp/library/io/basic_fstream/is_open" + }, + { + "cppref": "cpp/io/basic_fstream/close", + "cppdoc": "cpp/library/io/basic_fstream/close" + }, + { + "cppref": "cpp/io/basic_fstream/rdbuf", + "cppdoc": "cpp/library/io/basic_fstream/rdbuf" + }, + { + "cppref": "cpp/io/basic_fstream/operator=", + "cppdoc": "cpp/library/io/basic_fstream/operator=" + }, + { + "cppref": "cpp/io/basic_fstream/open", + "cppdoc": "cpp/library/io/basic_fstream/open" + }, + { + "cppref": "cpp/io/basic_fstream/native_handle", + "cppdoc": "cpp/library/io/basic_fstream/native_handle" + }, + { + "cppref": "cpp/io/basic_spanstream/span", + "cppdoc": "cpp/library/io/basic_spanstream/span" + }, + { + "cppref": "cpp/io/basic_spanstream/swap2", + "cppdoc": "cpp/library/io/basic_spanstream/swap2" + }, + { + "cppref": "cpp/io/basic_spanstream/swap", + "cppdoc": "cpp/library/io/basic_spanstream/swap" + }, + { + "cppref": "cpp/io/basic_spanstream/rdbuf", + "cppdoc": "cpp/library/io/basic_spanstream/rdbuf" + }, + { + "cppref": "cpp/io/basic_spanstream/operator=", + "cppdoc": "cpp/library/io/basic_spanstream/operator=" + }, + { + "cppref": "cpp/io/basic_spanstream/basic_spanstream", + "cppdoc": "cpp/library/io/basic_spanstream/basic_spanstream" + }, + { + "cppref": "cpp/io/basic_istringstream/view", + "cppdoc": "cpp/library/io/basic_istringstream/view" + }, + { + "cppref": "cpp/io/basic_istringstream/swap2", + "cppdoc": "cpp/library/io/basic_istringstream/swap2" + }, + { + "cppref": "cpp/io/basic_istringstream/swap", + "cppdoc": "cpp/library/io/basic_istringstream/swap" + }, + { + "cppref": "cpp/io/basic_istringstream/str", + "cppdoc": "cpp/library/io/basic_istringstream/str" + }, + { + "cppref": "cpp/io/basic_istringstream/rdbuf", + "cppdoc": "cpp/library/io/basic_istringstream/rdbuf" + }, + { + "cppref": "cpp/io/basic_istringstream/basic_istringstream", + "cppdoc": "cpp/library/io/basic_istringstream/basic_istringstream" + }, + { + "cppref": "cpp/io/basic_istringstream/operator=", + "cppdoc": "cpp/library/io/basic_istringstream/operator=" + }, + { + "cppref": "cpp/io/basic_ifstream/basic_ifstream", + "cppdoc": "cpp/library/io/basic_ifstream/basic_ifstream" + }, + { + "cppref": "cpp/io/basic_ifstream/swap2", + "cppdoc": "cpp/library/io/basic_ifstream/swap2" + }, + { + "cppref": "cpp/io/basic_ifstream/swap", + "cppdoc": "cpp/library/io/basic_ifstream/swap" + }, + { + "cppref": "cpp/io/basic_ifstream/is_open", + "cppdoc": "cpp/library/io/basic_ifstream/is_open" + }, + { + "cppref": "cpp/io/basic_ifstream/close", + "cppdoc": "cpp/library/io/basic_ifstream/close" + }, + { + "cppref": "cpp/io/basic_ifstream/rdbuf", + "cppdoc": "cpp/library/io/basic_ifstream/rdbuf" + }, + { + "cppref": "cpp/io/basic_ifstream/operator=", + "cppdoc": "cpp/library/io/basic_ifstream/operator=" + }, + { + "cppref": "cpp/io/basic_ifstream/open", + "cppdoc": "cpp/library/io/basic_ifstream/open" + }, + { + "cppref": "cpp/io/basic_ifstream/native_handle", + "cppdoc": "cpp/library/io/basic_ifstream/native_handle" + }, + { + "cppref": "cpp/experimental/promise", + "cppdoc": "cpp/library/experimental/promise" + }, + { + "cppref": "cpp/experimental/ranges", + "cppdoc": "cpp/library/experimental/ranges" + }, + { + "cppref": "cpp/experimental/lib_extensions_2", + "cppdoc": "cpp/library/experimental/lib_extensions_2" + }, + { + "cppref": "cpp/experimental/lib_extensions_3", + "cppdoc": "cpp/library/experimental/lib_extensions_3" + }, + { + "cppref": "cpp/experimental/special_functions", + "cppdoc": "cpp/library/experimental/special_functions" + }, + { + "cppref": "cpp/experimental/void_t", + "cppdoc": "cpp/library/experimental/lib_extensions_2/void_t" + }, + { + "cppref": "cpp/experimental/lib_extensions", + "cppdoc": "cpp/library/experimental/lib_extensions" + }, + { + "cppref": "cpp/experimental/not_fn", + "cppdoc": "cpp/library/experimental/lib_extensions_2/not_fn" + }, + { + "cppref": "cpp/experimental/source_location", + "cppdoc": "cpp/library/experimental/lib_extensions_2/source_location" + }, + { + "cppref": "cpp/experimental/scope_exit", + "cppdoc": "cpp/library/experimental/lib_extensions_3/scope_exit" + }, + { + "cppref": "cpp/experimental/scope_success", + "cppdoc": "cpp/library/experimental/lib_extensions_3/scope_success" + }, + { + "cppref": "cpp/experimental/lcm", + "cppdoc": "cpp/library/experimental/lib_extensions_2/lcm" + }, + { + "cppref": "cpp/experimental/observer_ptr", + "cppdoc": "cpp/library/experimental/lib_extensions_2/observer_ptr" + }, + { + "cppref": "cpp/experimental/packaged_task", + "cppdoc": "cpp/library/experimental/packaged_task" + }, + { + "cppref": "cpp/experimental/parallelism", + "cppdoc": "cpp/library/experimental/parallelism" + }, + { + "cppref": "cpp/experimental/nonesuch", + "cppdoc": "cpp/library/experimental/lib_extensions_2/nonesuch" + }, + { + "cppref": "cpp/experimental/reseed", + "cppdoc": "cpp/library/experimental/lib_extensions_2/reseed" + }, + { + "cppref": "cpp/experimental/to_array", + "cppdoc": "cpp/library/experimental/lib_extensions_2/to_array" + }, + { + "cppref": "cpp/experimental/networking", + "cppdoc": "cpp/library/experimental/networking" + }, + { + "cppref": "cpp/experimental/execution_policy_tag", + "cppdoc": "cpp/library/experimental/parallelism/execution_policy_tag" + }, + { + "cppref": "cpp/experimental/concurrency", + "cppdoc": "cpp/library/experimental/concurrency" + }, + { + "cppref": "cpp/experimental/make_array", + "cppdoc": "cpp/library/experimental/lib_extensions_2/make_array" + }, + { + "cppref": "cpp/experimental/negation", + "cppdoc": "cpp/library/experimental/lib_extensions_2/negation" + }, + { + "cppref": "cpp/experimental/constraints", + "cppdoc": "cpp/library/experimental/constraints" + }, + { + "cppref": "cpp/experimental/execution_policy_tag_t", + "cppdoc": "cpp/library/experimental/parallelism/execution_policy_tag_t" + }, + { + "cppref": "cpp/experimental/special_math", + "cppdoc": "cpp/library/experimental/special_math" + }, + { + "cppref": "cpp/experimental/memory", + "cppdoc": "cpp/library/experimental/memory" + }, + { + "cppref": "cpp/experimental/atomic_shared_ptr", + "cppdoc": "cpp/library/experimental/concurrency/atomic_shared_ptr" + }, + { + "cppref": "cpp/experimental/is_execution_policy", + "cppdoc": "cpp/library/experimental/parallelism/is_execution_policy" + }, + { + "cppref": "cpp/experimental/reduce", + "cppdoc": "cpp/library/experimental/parallelism/reduce" + }, + { + "cppref": "cpp/experimental/function", + "cppdoc": "cpp/library/experimental/memory/function" + }, + { + "cppref": "cpp/experimental/shuffle", + "cppdoc": "cpp/library/experimental/lib_extensions_2/shuffle" + }, + { + "cppref": "cpp/experimental/is_detected", + "cppdoc": "cpp/library/experimental/lib_extensions_2/is_detected" + }, + { + "cppref": "cpp/experimental/basic_string_view", + "cppdoc": "cpp/library/experimental/memory/basic_string_view" + }, + { + "cppref": "cpp/experimental/atomic_weak_ptr", + "cppdoc": "cpp/library/experimental/concurrency/atomic_weak_ptr" + }, + { + "cppref": "cpp/experimental/parallelism_2", + "cppdoc": "cpp/library/experimental/parallelism_2" + }, + { + "cppref": "cpp/experimental/randint", + "cppdoc": "cpp/library/experimental/lib_extensions_2/randint" + }, + { + "cppref": "cpp/experimental/apply", + "cppdoc": "cpp/library/experimental/memory/apply" + }, + { + "cppref": "cpp/experimental/conjunction", + "cppdoc": "cpp/library/experimental/lib_extensions_2/conjunction" + }, + { + "cppref": "cpp/experimental/gcd", + "cppdoc": "cpp/library/experimental/lib_extensions_2/gcd" + }, + { + "cppref": "cpp/experimental/execution", + "cppdoc": "cpp/library/experimental/execution" + }, + { + "cppref": "cpp/experimental/propagate_const", + "cppdoc": "cpp/library/experimental/lib_extensions_2/propagate_const" + }, + { + "cppref": "cpp/experimental/scope_fail", + "cppdoc": "cpp/library/experimental/lib_extensions_3/scope_fail" + }, + { + "cppref": "cpp/experimental/reflect", + "cppdoc": "cpp/library/experimental/reflect" + }, + { + "cppref": "cpp/experimental/invocation_type", + "cppdoc": "cpp/library/experimental/memory/invocation_type" + }, + { + "cppref": "cpp/experimental/fs", + "cppdoc": "cpp/library/experimental/fs" + }, + { + "cppref": "cpp/experimental/flex_barrier", + "cppdoc": "cpp/library/experimental/concurrency/flex_barrier" + }, + { + "cppref": "cpp/experimental/optional", + "cppdoc": "cpp/library/experimental/memory/optional" + }, + { + "cppref": "cpp/experimental/make_ready_future", + "cppdoc": "cpp/library/experimental/concurrency/make_ready_future" + }, + { + "cppref": "cpp/experimental/disjunction", + "cppdoc": "cpp/library/experimental/lib_extensions_2/disjunction" + }, + { + "cppref": "cpp/experimental/erased_type", + "cppdoc": "cpp/library/experimental/memory/erased_type" + }, + { + "cppref": "cpp/experimental/unique_resource", + "cppdoc": "cpp/library/experimental/lib_extensions_3/unique_resource" + }, + { + "cppref": "cpp/experimental/when_any", + "cppdoc": "cpp/library/experimental/concurrency/when_any" + }, + { + "cppref": "cpp/experimental/synchronized_pool_resource", + "cppdoc": "cpp/library/experimental/memory/synchronized_pool_resource" + }, + { + "cppref": "cpp/experimental/when_all", + "cppdoc": "cpp/library/experimental/concurrency/when_all" + }, + { + "cppref": "cpp/experimental/null_memory_resource", + "cppdoc": "cpp/library/experimental/memory/null_memory_resource" + }, + { + "cppref": "cpp/experimental/memory_resource", + "cppdoc": "cpp/library/experimental/memory/../memory_resource" + }, + { + "cppref": "cpp/experimental/lib_extensions/promise", + "cppdoc": "cpp/library/experimental/memory/promise" + }, + { + "cppref": "cpp/experimental/lib_extensions/packaged_task", + "cppdoc": "cpp/library/experimental/memory/packaged_task" + }, + { + "cppref": "cpp/experimental/lib_extensions/pmr_container", + "cppdoc": "cpp/library/experimental/memory/pmr_container" + }, + { + "cppref": "cpp/experimental/lib_extensions/promise/promise", + "cppdoc": "cpp/library/experimental/memory/promise" + }, + { + "cppref": "cpp/experimental/lib_extensions/promise/get_memory_resource", + "cppdoc": "cpp/library/experimental/memory/get_memory_resource" + }, + { + "cppref": "cpp/experimental/lib_extensions/promise/swap2", + "cppdoc": "cpp/library/experimental/memory/swap2" + }, + { + "cppref": "cpp/experimental/lib_extensions/promise/uses_allocator", + "cppdoc": "cpp/library/experimental/memory/uses_allocator" + }, + { + "cppref": "cpp/experimental/lib_extensions/packaged_task/get_memory_resource", + "cppdoc": "cpp/library/experimental/memory/get_memory_resource" + }, + { + "cppref": "cpp/experimental/lib_extensions/packaged_task/packaged_task", + "cppdoc": "cpp/library/experimental/memory/packaged_task" + }, + { + "cppref": "cpp/experimental/lib_extensions/packaged_task/swap2", + "cppdoc": "cpp/library/experimental/memory/swap2" + }, + { + "cppref": "cpp/experimental/lib_extensions/packaged_task/uses_allocator", + "cppdoc": "cpp/library/experimental/memory/uses_allocator" + }, + { + "cppref": "cpp/experimental/unordered_map/erase_if", + "cppdoc": "cpp/library/experimental/lib_extensions_2/erase_if" + }, + { + "cppref": "cpp/experimental/scope_fail/deduction_guides", + "cppdoc": "cpp/library/experimental/lib_extensions_3/scope_fail/deduction_guides" + }, + { + "cppref": "cpp/experimental/scope_fail/release", + "cppdoc": "cpp/library/experimental/lib_extensions_3/scope_fail/release" + }, + { + "cppref": "cpp/experimental/scope_fail/scope_fail", + "cppdoc": "cpp/library/experimental/lib_extensions_3/scope_fail/scope_fail" + }, + { + "cppref": "cpp/experimental/scope_fail/~scope_fail", + "cppdoc": "cpp/library/experimental/lib_extensions_3/scope_fail/~scope_fail" + }, + { + "cppref": "cpp/experimental/reflect/Expression", + "cppdoc": "cpp/library/experimental/reflect/Expression" + }, + { + "cppref": "cpp/experimental/reflect/Scope", + "cppdoc": "cpp/library/experimental/reflect/Scope" + }, + { + "cppref": "cpp/experimental/reflect/FunctionalTypeConversion", + "cppdoc": "cpp/library/experimental/reflect/FunctionalTypeConversion" + }, + { + "cppref": "cpp/experimental/reflect/Object", + "cppdoc": "cpp/library/experimental/reflect/Object" + }, + { + "cppref": "cpp/experimental/reflect/Lambda", + "cppdoc": "cpp/library/experimental/reflect/Lambda" + }, + { + "cppref": "cpp/experimental/reflect/FunctionParameter", + "cppdoc": "cpp/library/experimental/reflect/FunctionParameter" + }, + { + "cppref": "cpp/experimental/reflect/get_source_line", + "cppdoc": "cpp/library/experimental/reflect/get_source_line" + }, + { + "cppref": "cpp/experimental/reflect/ParenthesizedExpression", + "cppdoc": "cpp/library/experimental/reflect/ParenthesizedExpression" + }, + { + "cppref": "cpp/experimental/reflect/LambdaCapture", + "cppdoc": "cpp/library/experimental/reflect/LambdaCapture" + }, + { + "cppref": "cpp/experimental/reflect/Enumerator", + "cppdoc": "cpp/library/experimental/reflect/Enumerator" + }, + { + "cppref": "cpp/experimental/reflect/Enum", + "cppdoc": "cpp/library/experimental/reflect/Enum" + }, + { + "cppref": "cpp/experimental/reflect/Destructor", + "cppdoc": "cpp/library/experimental/reflect/Destructor" + }, + { + "cppref": "cpp/experimental/reflect/Variable", + "cppdoc": "cpp/library/experimental/reflect/Variable" + }, + { + "cppref": "cpp/experimental/reflect/Named", + "cppdoc": "cpp/library/experimental/reflect/Named" + }, + { + "cppref": "cpp/experimental/reflect/get_source_column", + "cppdoc": "cpp/library/experimental/reflect/get_source_column" + }, + { + "cppref": "cpp/experimental/reflect/RecordMember", + "cppdoc": "cpp/library/experimental/reflect/RecordMember" + }, + { + "cppref": "cpp/experimental/reflect/Callable", + "cppdoc": "cpp/library/experimental/reflect/Callable" + }, + { + "cppref": "cpp/experimental/reflect/Constant", + "cppdoc": "cpp/library/experimental/reflect/Constant" + }, + { + "cppref": "cpp/experimental/reflect/Typed", + "cppdoc": "cpp/library/experimental/reflect/Typed" + }, + { + "cppref": "cpp/experimental/reflect/SpecialMemberFunction", + "cppdoc": "cpp/library/experimental/reflect/SpecialMemberFunction" + }, + { + "cppref": "cpp/experimental/reflect/ScopeMember", + "cppdoc": "cpp/library/experimental/reflect/ScopeMember" + }, + { + "cppref": "cpp/experimental/reflect/Type", + "cppdoc": "cpp/library/experimental/reflect/Type" + }, + { + "cppref": "cpp/experimental/reflect/Function", + "cppdoc": "cpp/library/experimental/reflect/Function" + }, + { + "cppref": "cpp/experimental/reflect/Class", + "cppdoc": "cpp/library/experimental/reflect/Class" + }, + { + "cppref": "cpp/experimental/reflect/Constructor", + "cppdoc": "cpp/library/experimental/reflect/Constructor" + }, + { + "cppref": "cpp/experimental/reflect/MemberFunction", + "cppdoc": "cpp/library/experimental/reflect/MemberFunction" + }, + { + "cppref": "cpp/experimental/reflect/FunctionCallExpression", + "cppdoc": "cpp/library/experimental/reflect/FunctionCallExpression" + }, + { + "cppref": "cpp/experimental/reflect/Base", + "cppdoc": "cpp/library/experimental/reflect/Base" + }, + { + "cppref": "cpp/experimental/reflect/ObjectSequence", + "cppdoc": "cpp/library/experimental/reflect/ObjectSequence" + }, + { + "cppref": "cpp/experimental/reflect/Namespace", + "cppdoc": "cpp/library/experimental/reflect/Namespace" + }, + { + "cppref": "cpp/experimental/reflect/Record", + "cppdoc": "cpp/library/experimental/reflect/Record" + }, + { + "cppref": "cpp/experimental/reflect/GlobalScope", + "cppdoc": "cpp/library/experimental/reflect/GlobalScope" + }, + { + "cppref": "cpp/experimental/reflect/Alias", + "cppdoc": "cpp/library/experimental/reflect/Alias" + }, + { + "cppref": "cpp/experimental/reflect/Operator", + "cppdoc": "cpp/library/experimental/reflect/Operator" + }, + { + "cppref": "cpp/experimental/reflect/ConversionOperator", + "cppdoc": "cpp/library/experimental/reflect/ConversionOperator" + }, + { + "cppref": "cpp/experimental/fs/copy_file", + "cppdoc": "cpp/library/experimental/fs/copy_file" + }, + { + "cppref": "cpp/experimental/fs/create_symlink", + "cppdoc": "cpp/library/experimental/fs/create_symlink" + }, + { + "cppref": "cpp/experimental/fs/copy_options", + "cppdoc": "cpp/library/experimental/fs/copy_options" + }, + { + "cppref": "cpp/experimental/fs/read_symlink", + "cppdoc": "cpp/library/experimental/fs/read_symlink" + }, + { + "cppref": "cpp/experimental/fs/remove", + "cppdoc": "cpp/library/experimental/fs/remove" + }, + { + "cppref": "cpp/experimental/fs/file_type", + "cppdoc": "cpp/library/experimental/fs/file_type" + }, + { + "cppref": "cpp/experimental/fs/is_directory", + "cppdoc": "cpp/library/experimental/fs/is_directory" + }, + { + "cppref": "cpp/experimental/fs/current_path", + "cppdoc": "cpp/library/experimental/fs/current_path" + }, + { + "cppref": "cpp/experimental/fs/directory_options", + "cppdoc": "cpp/library/experimental/fs/directory_options" + }, + { + "cppref": "cpp/experimental/fs/permissions", + "cppdoc": "cpp/library/experimental/fs/permissions" + }, + { + "cppref": "cpp/experimental/fs/resize_file", + "cppdoc": "cpp/library/experimental/fs/resize_file" + }, + { + "cppref": "cpp/experimental/fs/directory_iterator", + "cppdoc": "cpp/library/experimental/fs/directory_iterator" + }, + { + "cppref": "cpp/experimental/fs/copy", + "cppdoc": "cpp/library/experimental/fs/copy" + }, + { + "cppref": "cpp/experimental/fs/is_character_file", + "cppdoc": "cpp/library/experimental/fs/is_character_file" + }, + { + "cppref": "cpp/experimental/fs/canonical", + "cppdoc": "cpp/library/experimental/fs/canonical" + }, + { + "cppref": "cpp/experimental/fs/create_directory", + "cppdoc": "cpp/library/experimental/fs/create_directory" + }, + { + "cppref": "cpp/experimental/fs/is_socket", + "cppdoc": "cpp/library/experimental/fs/is_socket" + }, + { + "cppref": "cpp/experimental/fs/rename", + "cppdoc": "cpp/library/experimental/fs/rename" + }, + { + "cppref": "cpp/experimental/fs/status", + "cppdoc": "cpp/library/experimental/fs/status" + }, + { + "cppref": "cpp/experimental/fs/copy_symlink", + "cppdoc": "cpp/library/experimental/fs/copy_symlink" + }, + { + "cppref": "cpp/experimental/fs/temp_directory_path", + "cppdoc": "cpp/library/experimental/fs/temp_directory_path" + }, + { + "cppref": "cpp/experimental/fs/file_status", + "cppdoc": "cpp/library/experimental/fs/file_status" + }, + { + "cppref": "cpp/experimental/fs/create_hard_link", + "cppdoc": "cpp/library/experimental/fs/create_hard_link" + }, + { + "cppref": "cpp/experimental/fs/space", + "cppdoc": "cpp/library/experimental/fs/space" + }, + { + "cppref": "cpp/experimental/fs/file_time_type", + "cppdoc": "cpp/library/experimental/fs/file_time_type" + }, + { + "cppref": "cpp/experimental/fs/last_write_time", + "cppdoc": "cpp/library/experimental/fs/last_write_time" + }, + { + "cppref": "cpp/experimental/fs/hard_link_count", + "cppdoc": "cpp/library/experimental/fs/hard_link_count" + }, + { + "cppref": "cpp/experimental/fs/is_regular_file", + "cppdoc": "cpp/library/experimental/fs/is_regular_file" + }, + { + "cppref": "cpp/experimental/fs/absolute", + "cppdoc": "cpp/library/experimental/fs/absolute" + }, + { + "cppref": "cpp/experimental/fs/perms", + "cppdoc": "cpp/library/experimental/fs/perms" + }, + { + "cppref": "cpp/experimental/fs/path", + "cppdoc": "cpp/library/experimental/fs/path" + }, + { + "cppref": "cpp/experimental/fs/is_other", + "cppdoc": "cpp/library/experimental/fs/is_other" + }, + { + "cppref": "cpp/experimental/fs/is_empty", + "cppdoc": "cpp/library/experimental/fs/is_empty" + }, + { + "cppref": "cpp/experimental/fs/space_info", + "cppdoc": "cpp/library/experimental/fs/space_info" + }, + { + "cppref": "cpp/experimental/fs/file_size", + "cppdoc": "cpp/library/experimental/fs/file_size" + }, + { + "cppref": "cpp/experimental/fs/is_symlink", + "cppdoc": "cpp/library/experimental/fs/is_symlink" + }, + { + "cppref": "cpp/experimental/fs/status_known", + "cppdoc": "cpp/library/experimental/fs/status_known" + }, + { + "cppref": "cpp/experimental/fs/is_block_file", + "cppdoc": "cpp/library/experimental/fs/is_block_file" + }, + { + "cppref": "cpp/experimental/fs/recursive_directory_iterator", + "cppdoc": "cpp/library/experimental/fs/recursive_directory_iterator" + }, + { + "cppref": "cpp/experimental/fs/is_fifo", + "cppdoc": "cpp/library/experimental/fs/is_fifo" + }, + { + "cppref": "cpp/experimental/fs/equivalent", + "cppdoc": "cpp/library/experimental/fs/equivalent" + }, + { + "cppref": "cpp/experimental/fs/directory_entry", + "cppdoc": "cpp/library/experimental/fs/directory_entry" + }, + { + "cppref": "cpp/experimental/fs/exists", + "cppdoc": "cpp/library/experimental/fs/exists" + }, + { + "cppref": "cpp/experimental/fs/filesystem_error", + "cppdoc": "cpp/library/experimental/fs/filesystem_error" + }, + { + "cppref": "cpp/experimental/fs/directory_entry/assign", + "cppdoc": "cpp/library/experimental/fs/directory_entry/assign" + }, + { + "cppref": "cpp/experimental/fs/directory_entry/replace_filename", + "cppdoc": "cpp/library/experimental/fs/directory_entry/replace_filename" + }, + { + "cppref": "cpp/experimental/fs/directory_entry/status", + "cppdoc": "cpp/library/experimental/fs/directory_entry/status" + }, + { + "cppref": "cpp/experimental/fs/directory_entry/operator_cmp", + "cppdoc": "cpp/library/experimental/fs/directory_entry/operator_cmp" + }, + { + "cppref": "cpp/experimental/fs/directory_entry/path", + "cppdoc": "cpp/library/experimental/fs/directory_entry/path" + }, + { + "cppref": "cpp/experimental/fs/directory_entry/operator=", + "cppdoc": "cpp/library/experimental/fs/directory_entry/operator=" + }, + { + "cppref": "cpp/experimental/fs/directory_entry/directory_entry", + "cppdoc": "cpp/library/experimental/fs/directory_entry/directory_entry" + }, + { + "cppref": "cpp/experimental/fs/directory_iterator/directory_iterator", + "cppdoc": "cpp/library/experimental/fs/directory_iterator/directory_iterator" + }, + { + "cppref": "cpp/experimental/fs/directory_iterator/begin", + "cppdoc": "cpp/library/experimental/fs/directory_iterator/begin" + }, + { + "cppref": "cpp/experimental/fs/directory_iterator/operator_star_", + "cppdoc": "cpp/library/experimental/fs/directory_iterator/operator_star_" + }, + { + "cppref": "cpp/experimental/fs/directory_iterator/operator=", + "cppdoc": "cpp/library/experimental/fs/directory_iterator/operator=" + }, + { + "cppref": "cpp/experimental/fs/directory_iterator/increment", + "cppdoc": "cpp/library/experimental/fs/directory_iterator/increment" + }, + { + "cppref": "cpp/experimental/fs/file_status/permissions", + "cppdoc": "cpp/library/experimental/fs/file_status/permissions" + }, + { + "cppref": "cpp/experimental/fs/file_status/file_status", + "cppdoc": "cpp/library/experimental/fs/file_status/file_status" + }, + { + "cppref": "cpp/experimental/fs/file_status/type", + "cppdoc": "cpp/library/experimental/fs/file_status/type" + }, + { + "cppref": "cpp/experimental/fs/file_status/operator=", + "cppdoc": "cpp/library/experimental/fs/file_status/operator=" + }, + { + "cppref": "cpp/experimental/fs/path/stem", + "cppdoc": "cpp/library/experimental/fs/path/stem" + }, + { + "cppref": "cpp/experimental/fs/path/assign", + "cppdoc": "cpp/library/experimental/fs/path/assign" + }, + { + "cppref": "cpp/experimental/fs/path/remove_filename", + "cppdoc": "cpp/library/experimental/fs/path/remove_filename" + }, + { + "cppref": "cpp/experimental/fs/path/root_path", + "cppdoc": "cpp/library/experimental/fs/path/root_path" + }, + { + "cppref": "cpp/experimental/fs/path/replace_filename", + "cppdoc": "cpp/library/experimental/fs/path/replace_filename" + }, + { + "cppref": "cpp/experimental/fs/path/has_path", + "cppdoc": "cpp/library/experimental/fs/path/has_path" + }, + { + "cppref": "cpp/experimental/fs/path/empty", + "cppdoc": "cpp/library/experimental/fs/path/empty" + }, + { + "cppref": "cpp/experimental/fs/path/operator_slash", + "cppdoc": "cpp/library/experimental/fs/path/operator_slash" + }, + { + "cppref": "cpp/experimental/fs/path/relative_path", + "cppdoc": "cpp/library/experimental/fs/path/relative_path" + }, + { + "cppref": "cpp/experimental/fs/path/root_directory", + "cppdoc": "cpp/library/experimental/fs/path/root_directory" + }, + { + "cppref": "cpp/experimental/fs/path/operator_ltltgtgt", + "cppdoc": "cpp/library/experimental/fs/path/operator_ltltgtgt" + }, + { + "cppref": "cpp/experimental/fs/path/swap2", + "cppdoc": "cpp/library/experimental/fs/path/swap2" + }, + { + "cppref": "cpp/experimental/fs/path/native", + "cppdoc": "cpp/library/experimental/fs/path/native" + }, + { + "cppref": "cpp/experimental/fs/path/begin", + "cppdoc": "cpp/library/experimental/fs/path/begin" + }, + { + "cppref": "cpp/experimental/fs/path/root_name", + "cppdoc": "cpp/library/experimental/fs/path/root_name" + }, + { + "cppref": "cpp/experimental/fs/path/extension", + "cppdoc": "cpp/library/experimental/fs/path/extension" + }, + { + "cppref": "cpp/experimental/fs/path/string", + "cppdoc": "cpp/library/experimental/fs/path/string" + }, + { + "cppref": "cpp/experimental/fs/path/generic_string", + "cppdoc": "cpp/library/experimental/fs/path/generic_string" + }, + { + "cppref": "cpp/experimental/fs/path/filename", + "cppdoc": "cpp/library/experimental/fs/path/filename" + }, + { + "cppref": "cpp/experimental/fs/path/swap", + "cppdoc": "cpp/library/experimental/fs/path/swap" + }, + { + "cppref": "cpp/experimental/fs/path/compare", + "cppdoc": "cpp/library/experimental/fs/path/compare" + }, + { + "cppref": "cpp/experimental/fs/path/append", + "cppdoc": "cpp/library/experimental/fs/path/append" + }, + { + "cppref": "cpp/experimental/fs/path/operator_cmp", + "cppdoc": "cpp/library/experimental/fs/path/operator_cmp" + }, + { + "cppref": "cpp/experimental/fs/path/path", + "cppdoc": "cpp/library/experimental/fs/path/path" + }, + { + "cppref": "cpp/experimental/fs/path/replace_extension", + "cppdoc": "cpp/library/experimental/fs/path/replace_extension" + }, + { + "cppref": "cpp/experimental/fs/path/~path", + "cppdoc": "cpp/library/experimental/fs/path/~path" + }, + { + "cppref": "cpp/experimental/fs/path/concat", + "cppdoc": "cpp/library/experimental/fs/path/concat" + }, + { + "cppref": "cpp/experimental/fs/path/is_absrel", + "cppdoc": "cpp/library/experimental/fs/path/is_absrel" + }, + { + "cppref": "cpp/experimental/fs/path/operator=", + "cppdoc": "cpp/library/experimental/fs/path/operator=" + }, + { + "cppref": "cpp/experimental/fs/path/parent_path", + "cppdoc": "cpp/library/experimental/fs/path/parent_path" + }, + { + "cppref": "cpp/experimental/fs/path/make_preferred", + "cppdoc": "cpp/library/experimental/fs/path/make_preferred" + }, + { + "cppref": "cpp/experimental/fs/path/u8path", + "cppdoc": "cpp/library/experimental/fs/path/u8path" + }, + { + "cppref": "cpp/experimental/fs/path/clear", + "cppdoc": "cpp/library/experimental/fs/path/clear" + }, + { + "cppref": "cpp/experimental/fs/filesystem_error/what", + "cppdoc": "cpp/library/experimental/fs/filesystem_error/what" + }, + { + "cppref": "cpp/experimental/fs/filesystem_error/path", + "cppdoc": "cpp/library/experimental/fs/filesystem_error/path" + }, + { + "cppref": "cpp/experimental/fs/filesystem_error/filesystem_error", + "cppdoc": "cpp/library/experimental/fs/filesystem_error/filesystem_error" + }, + { + "cppref": "cpp/experimental/fs/recursive_directory_iterator/recursion_pending", + "cppdoc": "cpp/library/experimental/fs/recursive_directory_iterator/recursion_pending" + }, + { + "cppref": "cpp/experimental/fs/recursive_directory_iterator/begin", + "cppdoc": "cpp/library/experimental/fs/recursive_directory_iterator/begin" + }, + { + "cppref": "cpp/experimental/fs/recursive_directory_iterator/depth", + "cppdoc": "cpp/library/experimental/fs/recursive_directory_iterator/depth" + }, + { + "cppref": "cpp/experimental/fs/recursive_directory_iterator/operator_star_", + "cppdoc": "cpp/library/experimental/fs/recursive_directory_iterator/operator_star_" + }, + { + "cppref": "cpp/experimental/fs/recursive_directory_iterator/options", + "cppdoc": "cpp/library/experimental/fs/recursive_directory_iterator/options" + }, + { + "cppref": "cpp/experimental/fs/recursive_directory_iterator/disable_recursion_pending", + "cppdoc": "cpp/library/experimental/fs/recursive_directory_iterator/disable_recursion_pending" + }, + { + "cppref": "cpp/experimental/fs/recursive_directory_iterator/operator=", + "cppdoc": "cpp/library/experimental/fs/recursive_directory_iterator/operator=" + }, + { + "cppref": "cpp/experimental/fs/recursive_directory_iterator/pop", + "cppdoc": "cpp/library/experimental/fs/recursive_directory_iterator/pop" + }, + { + "cppref": "cpp/experimental/fs/recursive_directory_iterator/recursive_directory_iterator", + "cppdoc": "cpp/library/experimental/fs/recursive_directory_iterator/recursive_directory_iterator" + }, + { + "cppref": "cpp/experimental/fs/recursive_directory_iterator/increment", + "cppdoc": "cpp/library/experimental/fs/recursive_directory_iterator/increment" + }, + { + "cppref": "cpp/experimental/unordered_set/erase_if", + "cppdoc": "cpp/library/experimental/lib_extensions_2/erase_if" + }, + { + "cppref": "cpp/experimental/memory_resource/do_is_equal", + "cppdoc": "cpp/library/experimental/memory/../memory_resource/do_is_equal" + }, + { + "cppref": "cpp/experimental/memory_resource/operator_eq", + "cppdoc": "cpp/library/experimental/memory/../memory_resource/operator_eq" + }, + { + "cppref": "cpp/experimental/memory_resource/allocate", + "cppdoc": "cpp/library/experimental/memory/../memory_resource/allocate" + }, + { + "cppref": "cpp/experimental/memory_resource/deallocate", + "cppdoc": "cpp/library/experimental/memory/../memory_resource/deallocate" + }, + { + "cppref": "cpp/experimental/memory_resource/do_deallocate", + "cppdoc": "cpp/library/experimental/memory/../memory_resource/do_deallocate" + }, + { + "cppref": "cpp/experimental/memory_resource/do_allocate", + "cppdoc": "cpp/library/experimental/memory/../memory_resource/do_allocate" + }, + { + "cppref": "cpp/experimental/memory_resource/is_equal", + "cppdoc": "cpp/library/experimental/memory/../memory_resource/is_equal" + }, + { + "cppref": "cpp/experimental/memory_resource/memory_resource", + "cppdoc": "cpp/library/experimental/memory/../memory_resource/memory_resource" + }, + { + "cppref": "cpp/experimental/flex_barrier/arrive_and_wait", + "cppdoc": "cpp/library/experimental/concurrency/flex_barrier/arrive_and_wait" + }, + { + "cppref": "cpp/experimental/flex_barrier/~flex_barrier", + "cppdoc": "cpp/library/experimental/concurrency/flex_barrier/~flex_barrier" + }, + { + "cppref": "cpp/experimental/flex_barrier/arrive_and_drop", + "cppdoc": "cpp/library/experimental/concurrency/flex_barrier/arrive_and_drop" + }, + { + "cppref": "cpp/experimental/flex_barrier/flex_barrier", + "cppdoc": "cpp/library/experimental/concurrency/flex_barrier/flex_barrier" + }, + { + "cppref": "cpp/experimental/unordered_multimap/erase_if", + "cppdoc": "cpp/library/experimental/lib_extensions_2/erase_if" + }, + { + "cppref": "cpp/experimental/scope_exit/scope_exit", + "cppdoc": "cpp/library/experimental/lib_extensions_3/scope_exit/scope_exit" + }, + { + "cppref": "cpp/experimental/scope_exit/deduction_guides", + "cppdoc": "cpp/library/experimental/lib_extensions_3/scope_exit/deduction_guides" + }, + { + "cppref": "cpp/experimental/scope_exit/~scope_exit", + "cppdoc": "cpp/library/experimental/lib_extensions_3/scope_exit/~scope_exit" + }, + { + "cppref": "cpp/experimental/scope_exit/release", + "cppdoc": "cpp/library/experimental/lib_extensions_3/scope_exit/release" + }, + { + "cppref": "cpp/experimental/set/erase_if", + "cppdoc": "cpp/library/experimental/lib_extensions_2/erase_if" + }, + { + "cppref": "cpp/experimental/parallelism/existing", + "cppdoc": "cpp/library/experimental/parallelism/existing" + }, + { + "cppref": "cpp/experimental/forward_list/erase", + "cppdoc": "cpp/library/experimental/lib_extensions_2/erase" + }, + { + "cppref": "cpp/experimental/forward_list/erase_if", + "cppdoc": "cpp/library/experimental/lib_extensions_2/erase_if" + }, + { + "cppref": "cpp/experimental/basic_string/erase", + "cppdoc": "cpp/library/experimental/lib_extensions_2/erase" + }, + { + "cppref": "cpp/experimental/basic_string/erase_if", + "cppdoc": "cpp/library/experimental/lib_extensions_2/erase_if" + }, + { + "cppref": "cpp/experimental/map/erase_if", + "cppdoc": "cpp/library/experimental/lib_extensions_2/erase_if" + }, + { + "cppref": "cpp/experimental/ranges/concepts/Semiregular", + "cppdoc": "cpp/library/experimental/ranges/concepts/Semiregular" + }, + { + "cppref": "cpp/experimental/ranges/concepts/StrictWeakOrder", + "cppdoc": "cpp/library/experimental/ranges/concepts/StrictWeakOrder" + }, + { + "cppref": "cpp/experimental/ranges/concepts/WeaklyEqualityComparableWith", + "cppdoc": "cpp/library/experimental/ranges/concepts/WeaklyEqualityComparableWith" + }, + { + "cppref": "cpp/experimental/ranges/concepts/Boolean", + "cppdoc": "cpp/library/experimental/ranges/concepts/Boolean" + }, + { + "cppref": "cpp/experimental/ranges/concepts/CopyConstructible", + "cppdoc": "cpp/library/experimental/ranges/concepts/CopyConstructible" + }, + { + "cppref": "cpp/experimental/ranges/concepts/ConvertibleTo", + "cppdoc": "cpp/library/experimental/ranges/concepts/ConvertibleTo" + }, + { + "cppref": "cpp/experimental/ranges/concepts/CommonReference", + "cppdoc": "cpp/library/experimental/ranges/concepts/CommonReference" + }, + { + "cppref": "cpp/experimental/ranges/concepts/EqualityComparable", + "cppdoc": "cpp/library/experimental/ranges/concepts/EqualityComparable" + }, + { + "cppref": "cpp/experimental/ranges/concepts/Destructible", + "cppdoc": "cpp/library/experimental/ranges/concepts/Destructible" + }, + { + "cppref": "cpp/experimental/ranges/concepts/UniformRandomNumberGenerator", + "cppdoc": "cpp/library/experimental/ranges/concepts/UniformRandomNumberGenerator" + }, + { + "cppref": "cpp/experimental/ranges/concepts/Predicate", + "cppdoc": "cpp/library/experimental/ranges/concepts/Predicate" + }, + { + "cppref": "cpp/experimental/ranges/concepts/Same", + "cppdoc": "cpp/library/experimental/ranges/concepts/Same" + }, + { + "cppref": "cpp/experimental/ranges/concepts/Integral", + "cppdoc": "cpp/library/experimental/ranges/concepts/Integral" + }, + { + "cppref": "cpp/experimental/ranges/concepts/Invocable", + "cppdoc": "cpp/library/experimental/ranges/concepts/Invocable" + }, + { + "cppref": "cpp/experimental/ranges/concepts/Movable", + "cppdoc": "cpp/library/experimental/ranges/concepts/Movable" + }, + { + "cppref": "cpp/experimental/ranges/concepts/Assignable", + "cppdoc": "cpp/library/experimental/ranges/concepts/Assignable" + }, + { + "cppref": "cpp/experimental/ranges/concepts/DerivedFrom", + "cppdoc": "cpp/library/experimental/ranges/concepts/DerivedFrom" + }, + { + "cppref": "cpp/experimental/ranges/concepts/Copyable", + "cppdoc": "cpp/library/experimental/ranges/concepts/Copyable" + }, + { + "cppref": "cpp/experimental/ranges/concepts/Regular", + "cppdoc": "cpp/library/experimental/ranges/concepts/Regular" + }, + { + "cppref": "cpp/experimental/ranges/concepts/Swappable", + "cppdoc": "cpp/library/experimental/ranges/concepts/Swappable" + }, + { + "cppref": "cpp/experimental/ranges/concepts/MoveConstructible", + "cppdoc": "cpp/library/experimental/ranges/concepts/MoveConstructible" + }, + { + "cppref": "cpp/experimental/ranges/concepts/Constructible", + "cppdoc": "cpp/library/experimental/ranges/concepts/Constructible" + }, + { + "cppref": "cpp/experimental/ranges/concepts/DefaultConstructible", + "cppdoc": "cpp/library/experimental/ranges/concepts/DefaultConstructible" + }, + { + "cppref": "cpp/experimental/ranges/concepts/UnsignedIntegral", + "cppdoc": "cpp/library/experimental/ranges/concepts/UnsignedIntegral" + }, + { + "cppref": "cpp/experimental/ranges/concepts/Common", + "cppdoc": "cpp/library/experimental/ranges/concepts/Common" + }, + { + "cppref": "cpp/experimental/ranges/concepts/SignedIntegral", + "cppdoc": "cpp/library/experimental/ranges/concepts/SignedIntegral" + }, + { + "cppref": "cpp/experimental/ranges/concepts/StrictTotallyOrdered", + "cppdoc": "cpp/library/experimental/ranges/concepts/StrictTotallyOrdered" + }, + { + "cppref": "cpp/experimental/ranges/concepts/Relation", + "cppdoc": "cpp/library/experimental/ranges/concepts/Relation" + }, + { + "cppref": "cpp/experimental/ranges/type_traits/is_swappable", + "cppdoc": "cpp/library/experimental/ranges/type_traits/is_swappable" + }, + { + "cppref": "cpp/experimental/ranges/type_traits/common_type", + "cppdoc": "cpp/library/experimental/ranges/type_traits/common_type" + }, + { + "cppref": "cpp/experimental/ranges/type_traits/common_reference", + "cppdoc": "cpp/library/experimental/ranges/type_traits/common_reference" + }, + { + "cppref": "cpp/experimental/ranges/algorithm/adjacent_find", + "cppdoc": "cpp/library/experimental/ranges/algorithm/adjacent_find" + }, + { + "cppref": "cpp/experimental/ranges/algorithm/find", + "cppdoc": "cpp/library/experimental/ranges/algorithm/find" + }, + { + "cppref": "cpp/experimental/ranges/algorithm/search", + "cppdoc": "cpp/library/experimental/ranges/algorithm/search" + }, + { + "cppref": "cpp/experimental/ranges/algorithm/all_any_none_of", + "cppdoc": "cpp/library/experimental/ranges/algorithm/all_any_none_of" + }, + { + "cppref": "cpp/experimental/ranges/algorithm/copy", + "cppdoc": "cpp/library/experimental/ranges/algorithm/copy" + }, + { + "cppref": "cpp/experimental/ranges/algorithm/for_each", + "cppdoc": "cpp/library/experimental/ranges/algorithm/for_each" + }, + { + "cppref": "cpp/experimental/ranges/algorithm/find_end", + "cppdoc": "cpp/library/experimental/ranges/algorithm/find_end" + }, + { + "cppref": "cpp/experimental/ranges/algorithm/tags", + "cppdoc": "cpp/library/experimental/ranges/algorithm/tags" + }, + { + "cppref": "cpp/experimental/ranges/algorithm/search_n", + "cppdoc": "cpp/library/experimental/ranges/algorithm/search_n" + }, + { + "cppref": "cpp/experimental/ranges/algorithm/mismatch", + "cppdoc": "cpp/library/experimental/ranges/algorithm/mismatch" + }, + { + "cppref": "cpp/experimental/ranges/algorithm/count", + "cppdoc": "cpp/library/experimental/ranges/algorithm/count" + }, + { + "cppref": "cpp/experimental/ranges/algorithm/equal", + "cppdoc": "cpp/library/experimental/ranges/algorithm/equal" + }, + { + "cppref": "cpp/experimental/ranges/algorithm/sort", + "cppdoc": "cpp/library/experimental/ranges/algorithm/sort" + }, + { + "cppref": "cpp/experimental/ranges/algorithm/find_first_of", + "cppdoc": "cpp/library/experimental/ranges/algorithm/find_first_of" + }, + { + "cppref": "cpp/experimental/ranges/algorithm/lexicographical_compare", + "cppdoc": "cpp/library/experimental/ranges/algorithm/lexicographical_compare" + }, + { + "cppref": "cpp/experimental/ranges/algorithm/is_permutation", + "cppdoc": "cpp/library/experimental/ranges/algorithm/is_permutation" + }, + { + "cppref": "cpp/experimental/ranges/range/BidirectionalRange", + "cppdoc": "cpp/library/experimental/ranges/range/BidirectionalRange" + }, + { + "cppref": "cpp/experimental/ranges/range/BoundedRange", + "cppdoc": "cpp/library/experimental/ranges/range/BoundedRange" + }, + { + "cppref": "cpp/experimental/ranges/range/Range", + "cppdoc": "cpp/library/experimental/ranges/range/Range" + }, + { + "cppref": "cpp/experimental/ranges/range/ForwardRange", + "cppdoc": "cpp/library/experimental/ranges/range/ForwardRange" + }, + { + "cppref": "cpp/experimental/ranges/range/RandomAccessRange", + "cppdoc": "cpp/library/experimental/ranges/range/RandomAccessRange" + }, + { + "cppref": "cpp/experimental/ranges/range/iterator_t", + "cppdoc": "cpp/library/experimental/ranges/range/iterator_t" + }, + { + "cppref": "cpp/experimental/ranges/range/SizedRange", + "cppdoc": "cpp/library/experimental/ranges/range/SizedRange" + }, + { + "cppref": "cpp/experimental/ranges/range/InputRange", + "cppdoc": "cpp/library/experimental/ranges/range/InputRange" + }, + { + "cppref": "cpp/experimental/ranges/range/View", + "cppdoc": "cpp/library/experimental/ranges/range/View" + }, + { + "cppref": "cpp/experimental/ranges/range/OutputRange", + "cppdoc": "cpp/library/experimental/ranges/range/OutputRange" + }, + { + "cppref": "cpp/experimental/ranges/iterator/Permutable", + "cppdoc": "cpp/library/experimental/ranges/iterator/Permutable" + }, + { + "cppref": "cpp/experimental/ranges/iterator/value_type", + "cppdoc": "cpp/library/experimental/ranges/iterator/value_type" + }, + { + "cppref": "cpp/experimental/ranges/iterator/BidirectionalIterator", + "cppdoc": "cpp/library/experimental/ranges/iterator/BidirectionalIterator" + }, + { + "cppref": "cpp/experimental/ranges/iterator/ForwardIterator", + "cppdoc": "cpp/library/experimental/ranges/iterator/ForwardIterator" + }, + { + "cppref": "cpp/experimental/ranges/iterator/indirect_result_of", + "cppdoc": "cpp/library/experimental/ranges/iterator/indirect_result_of" + }, + { + "cppref": "cpp/experimental/ranges/iterator/prev", + "cppdoc": "cpp/library/experimental/ranges/iterator/prev" + }, + { + "cppref": "cpp/experimental/ranges/iterator/next", + "cppdoc": "cpp/library/experimental/ranges/iterator/next" + }, + { + "cppref": "cpp/experimental/ranges/iterator/reference_t", + "cppdoc": "cpp/library/experimental/ranges/iterator/reference_t" + }, + { + "cppref": "cpp/experimental/ranges/iterator/projected", + "cppdoc": "cpp/library/experimental/ranges/iterator/projected" + }, + { + "cppref": "cpp/experimental/ranges/iterator/Sentinel", + "cppdoc": "cpp/library/experimental/ranges/iterator/Sentinel" + }, + { + "cppref": "cpp/experimental/ranges/iterator/IndirectlyCopyable", + "cppdoc": "cpp/library/experimental/ranges/iterator/IndirectlyCopyable" + }, + { + "cppref": "cpp/experimental/ranges/iterator/Incrementable", + "cppdoc": "cpp/library/experimental/ranges/iterator/Incrementable" + }, + { + "cppref": "cpp/experimental/ranges/iterator/IndirectlyMovableStorable", + "cppdoc": "cpp/library/experimental/ranges/iterator/IndirectlyMovableStorable" + }, + { + "cppref": "cpp/experimental/ranges/iterator/IndirectStrictWeakOrder", + "cppdoc": "cpp/library/experimental/ranges/iterator/IndirectStrictWeakOrder" + }, + { + "cppref": "cpp/experimental/ranges/iterator/Sortable", + "cppdoc": "cpp/library/experimental/ranges/iterator/Sortable" + }, + { + "cppref": "cpp/experimental/ranges/iterator/IndirectlySwappable", + "cppdoc": "cpp/library/experimental/ranges/iterator/IndirectlySwappable" + }, + { + "cppref": "cpp/experimental/ranges/iterator/RandomAccessIterator", + "cppdoc": "cpp/library/experimental/ranges/iterator/RandomAccessIterator" + }, + { + "cppref": "cpp/experimental/ranges/iterator/Mergeable", + "cppdoc": "cpp/library/experimental/ranges/iterator/Mergeable" + }, + { + "cppref": "cpp/experimental/ranges/iterator/IndirectUnaryPredicate", + "cppdoc": "cpp/library/experimental/ranges/iterator/IndirectUnaryPredicate" + }, + { + "cppref": "cpp/experimental/ranges/iterator/IndirectRelation", + "cppdoc": "cpp/library/experimental/ranges/iterator/IndirectRelation" + }, + { + "cppref": "cpp/experimental/ranges/iterator/IndirectlyCopyableStorable", + "cppdoc": "cpp/library/experimental/ranges/iterator/IndirectlyCopyableStorable" + }, + { + "cppref": "cpp/experimental/ranges/iterator/Readable", + "cppdoc": "cpp/library/experimental/ranges/iterator/Readable" + }, + { + "cppref": "cpp/experimental/ranges/iterator/iterator_tags", + "cppdoc": "cpp/library/experimental/ranges/iterator/iterator_tags" + }, + { + "cppref": "cpp/experimental/ranges/iterator/SizedSentinel", + "cppdoc": "cpp/library/experimental/ranges/iterator/SizedSentinel" + }, + { + "cppref": "cpp/experimental/ranges/iterator/IndirectlyComparable", + "cppdoc": "cpp/library/experimental/ranges/iterator/IndirectlyComparable" + }, + { + "cppref": "cpp/experimental/ranges/iterator/WeaklyIncrementable", + "cppdoc": "cpp/library/experimental/ranges/iterator/WeaklyIncrementable" + }, + { + "cppref": "cpp/experimental/ranges/iterator/IndirectlyMovable", + "cppdoc": "cpp/library/experimental/ranges/iterator/IndirectlyMovable" + }, + { + "cppref": "cpp/experimental/ranges/iterator/Writable", + "cppdoc": "cpp/library/experimental/ranges/iterator/Writable" + }, + { + "cppref": "cpp/experimental/ranges/iterator/distance", + "cppdoc": "cpp/library/experimental/ranges/iterator/distance" + }, + { + "cppref": "cpp/experimental/ranges/iterator/InputIterator", + "cppdoc": "cpp/library/experimental/ranges/iterator/InputIterator" + }, + { + "cppref": "cpp/experimental/ranges/iterator/difference_type", + "cppdoc": "cpp/library/experimental/ranges/iterator/difference_type" + }, + { + "cppref": "cpp/experimental/ranges/iterator/Iterator", + "cppdoc": "cpp/library/experimental/ranges/iterator/Iterator" + }, + { + "cppref": "cpp/experimental/ranges/iterator/OutputIterator", + "cppdoc": "cpp/library/experimental/ranges/iterator/OutputIterator" + }, + { + "cppref": "cpp/experimental/ranges/iterator/dangling", + "cppdoc": "cpp/library/experimental/ranges/iterator/dangling" + }, + { + "cppref": "cpp/experimental/ranges/iterator/IndirectUnaryInvocable", + "cppdoc": "cpp/library/experimental/ranges/iterator/IndirectUnaryInvocable" + }, + { + "cppref": "cpp/experimental/ranges/iterator/advance", + "cppdoc": "cpp/library/experimental/ranges/iterator/advance" + }, + { + "cppref": "cpp/experimental/ranges/iterator/iterator_category", + "cppdoc": "cpp/library/experimental/ranges/iterator/iterator_category" + }, + { + "cppref": "cpp/experimental/ranges/utility/tagged_pair", + "cppdoc": "cpp/library/experimental/ranges/utility/tagged_pair" + }, + { + "cppref": "cpp/experimental/ranges/utility/exchange", + "cppdoc": "cpp/library/experimental/ranges/utility/exchange" + }, + { + "cppref": "cpp/experimental/ranges/utility/make_tagged_tuple", + "cppdoc": "cpp/library/experimental/ranges/utility/make_tagged_tuple" + }, + { + "cppref": "cpp/experimental/ranges/utility/tagged", + "cppdoc": "cpp/library/experimental/ranges/utility/tagged" + }, + { + "cppref": "cpp/experimental/ranges/utility/TagSpecifier", + "cppdoc": "cpp/library/experimental/ranges/utility/TagSpecifier" + }, + { + "cppref": "cpp/experimental/ranges/utility/swap", + "cppdoc": "cpp/library/experimental/ranges/utility/swap" + }, + { + "cppref": "cpp/experimental/ranges/utility/tagged_tuple", + "cppdoc": "cpp/library/experimental/ranges/utility/tagged_tuple" + }, + { + "cppref": "cpp/experimental/ranges/utility/make_tagged_pair", + "cppdoc": "cpp/library/experimental/ranges/utility/make_tagged_pair" + }, + { + "cppref": "cpp/experimental/ranges/utility/TaggedType", + "cppdoc": "cpp/library/experimental/ranges/utility/TaggedType" + }, + { + "cppref": "cpp/experimental/ranges/utility/tagged/swap2", + "cppdoc": "cpp/library/experimental/ranges/utility/tagged/swap2" + }, + { + "cppref": "cpp/experimental/ranges/utility/tagged/tagged", + "cppdoc": "cpp/library/experimental/ranges/utility/tagged/tagged" + }, + { + "cppref": "cpp/experimental/ranges/utility/tagged/swap", + "cppdoc": "cpp/library/experimental/ranges/utility/tagged/swap" + }, + { + "cppref": "cpp/experimental/ranges/utility/tagged/tuple_size", + "cppdoc": "cpp/library/experimental/ranges/utility/tagged/tuple_size" + }, + { + "cppref": "cpp/experimental/ranges/utility/tagged/tuple_element", + "cppdoc": "cpp/library/experimental/ranges/utility/tagged/tuple_element" + }, + { + "cppref": "cpp/experimental/ranges/utility/tagged/operator=", + "cppdoc": "cpp/library/experimental/ranges/utility/tagged/operator=" + }, + { + "cppref": "cpp/experimental/ranges/functional/invoke", + "cppdoc": "cpp/library/experimental/ranges/functional/invoke" + }, + { + "cppref": "cpp/experimental/ranges/functional/not_equal_to", + "cppdoc": "cpp/library/experimental/ranges/functional/not_equal_to" + }, + { + "cppref": "cpp/experimental/ranges/functional/equal_to", + "cppdoc": "cpp/library/experimental/ranges/functional/equal_to" + }, + { + "cppref": "cpp/experimental/ranges/functional/less", + "cppdoc": "cpp/library/experimental/ranges/functional/less" + }, + { + "cppref": "cpp/experimental/ranges/functional/identity", + "cppdoc": "cpp/library/experimental/ranges/functional/identity" + }, + { + "cppref": "cpp/experimental/ranges/functional/greater_equal", + "cppdoc": "cpp/library/experimental/ranges/functional/greater_equal" + }, + { + "cppref": "cpp/experimental/ranges/functional/less_equal", + "cppdoc": "cpp/library/experimental/ranges/functional/less_equal" + }, + { + "cppref": "cpp/experimental/ranges/functional/greater", + "cppdoc": "cpp/library/experimental/ranges/functional/greater" + }, + { + "cppref": "cpp/experimental/source_location/file_name", + "cppdoc": "cpp/library/experimental/lib_extensions_2/source_location/file_name" + }, + { + "cppref": "cpp/experimental/source_location/source_location", + "cppdoc": "cpp/library/experimental/lib_extensions_2/source_location/source_location" + }, + { + "cppref": "cpp/experimental/source_location/line", + "cppdoc": "cpp/library/experimental/lib_extensions_2/source_location/line" + }, + { + "cppref": "cpp/experimental/source_location/current", + "cppdoc": "cpp/library/experimental/lib_extensions_2/source_location/current" + }, + { + "cppref": "cpp/experimental/source_location/function_name", + "cppdoc": "cpp/library/experimental/lib_extensions_2/source_location/function_name" + }, + { + "cppref": "cpp/experimental/source_location/column", + "cppdoc": "cpp/library/experimental/lib_extensions_2/source_location/column" + }, + { + "cppref": "cpp/experimental/multiset/erase_if", + "cppdoc": "cpp/library/experimental/lib_extensions_2/erase_if" + }, + { + "cppref": "cpp/experimental/special_functions/hermite", + "cppdoc": "cpp/library/experimental/special_math/hermite" + }, + { + "cppref": "cpp/experimental/special_functions/comp_ellint_2", + "cppdoc": "cpp/library/experimental/special_math/comp_ellint_2" + }, + { + "cppref": "cpp/experimental/special_functions/assoc_legendre", + "cppdoc": "cpp/library/experimental/special_math/assoc_legendre" + }, + { + "cppref": "cpp/experimental/special_functions/beta", + "cppdoc": "cpp/library/experimental/special_math/beta" + }, + { + "cppref": "cpp/experimental/special_functions/assoc_laguerre", + "cppdoc": "cpp/library/experimental/special_math/assoc_laguerre" + }, + { + "cppref": "cpp/experimental/special_functions/riemann_zeta", + "cppdoc": "cpp/library/experimental/special_math/riemann_zeta" + }, + { + "cppref": "cpp/experimental/special_functions/comp_ellint_1", + "cppdoc": "cpp/library/experimental/special_math/comp_ellint_1" + }, + { + "cppref": "cpp/experimental/special_functions/legendre", + "cppdoc": "cpp/library/experimental/special_math/legendre" + }, + { + "cppref": "cpp/experimental/special_functions/laguerre", + "cppdoc": "cpp/library/experimental/special_math/laguerre" + }, + { + "cppref": "cpp/experimental/special_functions/comp_ellint_3", + "cppdoc": "cpp/library/experimental/special_math/comp_ellint_3" + }, + { + "cppref": "cpp/experimental/special_functions/expint", + "cppdoc": "cpp/library/experimental/special_math/expint" + }, + { + "cppref": "cpp/experimental/atomic_weak_ptr/exchange", + "cppdoc": "cpp/library/experimental/concurrency/atomic_weak_ptr/exchange" + }, + { + "cppref": "cpp/experimental/atomic_weak_ptr/operator_weak_ptr", + "cppdoc": "cpp/library/experimental/concurrency/atomic_weak_ptr/operator_weak_ptr" + }, + { + "cppref": "cpp/experimental/atomic_weak_ptr/compare_exchange", + "cppdoc": "cpp/library/experimental/concurrency/atomic_weak_ptr/compare_exchange" + }, + { + "cppref": "cpp/experimental/atomic_weak_ptr/is_lock_free", + "cppdoc": "cpp/library/experimental/concurrency/atomic_weak_ptr/is_lock_free" + }, + { + "cppref": "cpp/experimental/atomic_weak_ptr/atomic_weak_ptr", + "cppdoc": "cpp/library/experimental/concurrency/atomic_weak_ptr/atomic_weak_ptr" + }, + { + "cppref": "cpp/experimental/atomic_weak_ptr/operator=", + "cppdoc": "cpp/library/experimental/concurrency/atomic_weak_ptr/operator=" + }, + { + "cppref": "cpp/experimental/atomic_weak_ptr/store", + "cppdoc": "cpp/library/experimental/concurrency/atomic_weak_ptr/store" + }, + { + "cppref": "cpp/experimental/atomic_weak_ptr/load", + "cppdoc": "cpp/library/experimental/concurrency/atomic_weak_ptr/load" + }, + { + "cppref": "cpp/experimental/unique_resource/get_deleter", + "cppdoc": "cpp/library/experimental/lib_extensions_3/unique_resource/get_deleter" + }, + { + "cppref": "cpp/experimental/unique_resource/deduction_guides", + "cppdoc": "cpp/library/experimental/lib_extensions_3/unique_resource/deduction_guides" + }, + { + "cppref": "cpp/experimental/unique_resource/reset", + "cppdoc": "cpp/library/experimental/lib_extensions_3/unique_resource/reset" + }, + { + "cppref": "cpp/experimental/unique_resource/operator_star_", + "cppdoc": "cpp/library/experimental/lib_extensions_3/unique_resource/operator_star_" + }, + { + "cppref": "cpp/experimental/unique_resource/release", + "cppdoc": "cpp/library/experimental/lib_extensions_3/unique_resource/release" + }, + { + "cppref": "cpp/experimental/unique_resource/~unique_resource", + "cppdoc": "cpp/library/experimental/lib_extensions_3/unique_resource/~unique_resource" + }, + { + "cppref": "cpp/experimental/unique_resource/get", + "cppdoc": "cpp/library/experimental/lib_extensions_3/unique_resource/get" + }, + { + "cppref": "cpp/experimental/unique_resource/make_unique_resource_checked", + "cppdoc": "cpp/library/experimental/lib_extensions_3/unique_resource/make_unique_resource_checked" + }, + { + "cppref": "cpp/experimental/unique_resource/operator=", + "cppdoc": "cpp/library/experimental/lib_extensions_3/unique_resource/operator=" + }, + { + "cppref": "cpp/experimental/unique_resource/unique_resource", + "cppdoc": "cpp/library/experimental/lib_extensions_3/unique_resource/unique_resource" + }, + { + "cppref": "cpp/experimental/function/get_memory_resource", + "cppdoc": "cpp/library/experimental/memory/get_memory_resource" + }, + { + "cppref": "cpp/experimental/function/swap2", + "cppdoc": "cpp/library/experimental/memory/swap2" + }, + { + "cppref": "cpp/experimental/function/swap", + "cppdoc": "cpp/library/experimental/memory/swap" + }, + { + "cppref": "cpp/experimental/function/function", + "cppdoc": "cpp/library/experimental/memory/function" + }, + { + "cppref": "cpp/experimental/function/operator_cmp", + "cppdoc": "cpp/library/experimental/memory/operator_cmp" + }, + { + "cppref": "cpp/experimental/function/get_allocator", + "cppdoc": "cpp/library/experimental/memory/get_allocator" + }, + { + "cppref": "cpp/experimental/function/operator=", + "cppdoc": "cpp/library/experimental/memory/operator=" + }, + { + "cppref": "cpp/experimental/function/uses_allocator", + "cppdoc": "cpp/library/experimental/memory/uses_allocator" + }, + { + "cppref": "cpp/experimental/concurrency/promise", + "cppdoc": "cpp/library/experimental/concurrency/promise" + }, + { + "cppref": "cpp/experimental/concurrency/packaged_task", + "cppdoc": "cpp/library/experimental/concurrency/packaged_task" + }, + { + "cppref": "cpp/experimental/deque/erase", + "cppdoc": "cpp/library/experimental/lib_extensions_2/erase" + }, + { + "cppref": "cpp/experimental/deque/erase_if", + "cppdoc": "cpp/library/experimental/lib_extensions_2/erase_if" + }, + { + "cppref": "cpp/experimental/scope_success/scope_success", + "cppdoc": "cpp/library/experimental/lib_extensions_3/scope_success/scope_success" + }, + { + "cppref": "cpp/experimental/scope_success/deduction_guides", + "cppdoc": "cpp/library/experimental/lib_extensions_3/scope_success/deduction_guides" + }, + { + "cppref": "cpp/experimental/scope_success/release", + "cppdoc": "cpp/library/experimental/lib_extensions_3/scope_success/release" + }, + { + "cppref": "cpp/experimental/scope_success/~scope_success", + "cppdoc": "cpp/library/experimental/lib_extensions_3/scope_success/~scope_success" + }, + { + "cppref": "cpp/experimental/list/erase", + "cppdoc": "cpp/library/experimental/lib_extensions_2/erase" + }, + { + "cppref": "cpp/experimental/list/erase_if", + "cppdoc": "cpp/library/experimental/lib_extensions_2/erase_if" + }, + { + "cppref": "cpp/experimental/vector/erase", + "cppdoc": "cpp/library/experimental/lib_extensions_2/erase" + }, + { + "cppref": "cpp/experimental/vector/erase_if", + "cppdoc": "cpp/library/experimental/lib_extensions_2/erase_if" + }, + { + "cppref": "cpp/experimental/multimap/erase_if", + "cppdoc": "cpp/library/experimental/lib_extensions_2/erase_if" + }, + { + "cppref": "cpp/experimental/optional/make_optional", + "cppdoc": "cpp/library/experimental/memory/optional/make_optional" + }, + { + "cppref": "cpp/experimental/optional/nullopt_t", + "cppdoc": "cpp/library/experimental/memory/optional/nullopt_t" + }, + { + "cppref": "cpp/experimental/optional/emplace", + "cppdoc": "cpp/library/experimental/memory/optional/emplace" + }, + { + "cppref": "cpp/experimental/optional/value_or", + "cppdoc": "cpp/library/experimental/memory/optional/value_or" + }, + { + "cppref": "cpp/experimental/optional/hash", + "cppdoc": "cpp/library/experimental/memory/optional/hash" + }, + { + "cppref": "cpp/experimental/optional/nullopt", + "cppdoc": "cpp/library/experimental/memory/optional/nullopt" + }, + { + "cppref": "cpp/experimental/optional/swap2", + "cppdoc": "cpp/library/experimental/memory/optional/swap2" + }, + { + "cppref": "cpp/experimental/optional/bad_optional_access", + "cppdoc": "cpp/library/experimental/memory/optional/bad_optional_access" + }, + { + "cppref": "cpp/experimental/optional/in_place", + "cppdoc": "cpp/library/experimental/memory/optional/in_place" + }, + { + "cppref": "cpp/experimental/optional/~optional", + "cppdoc": "cpp/library/experimental/memory/optional/~optional" + }, + { + "cppref": "cpp/experimental/optional/swap", + "cppdoc": "cpp/library/experimental/memory/optional/swap" + }, + { + "cppref": "cpp/experimental/optional/value", + "cppdoc": "cpp/library/experimental/memory/optional/value" + }, + { + "cppref": "cpp/experimental/optional/operator_star_", + "cppdoc": "cpp/library/experimental/memory/optional/operator_star_" + }, + { + "cppref": "cpp/experimental/optional/in_place_t", + "cppdoc": "cpp/library/experimental/memory/optional/in_place_t" + }, + { + "cppref": "cpp/experimental/optional/operator_cmp", + "cppdoc": "cpp/library/experimental/memory/optional/operator_cmp" + }, + { + "cppref": "cpp/experimental/optional/operator_bool", + "cppdoc": "cpp/library/experimental/memory/optional/operator_bool" + }, + { + "cppref": "cpp/experimental/optional/operator=", + "cppdoc": "cpp/library/experimental/memory/optional/operator=" + }, + { + "cppref": "cpp/experimental/optional/optional", + "cppdoc": "cpp/library/experimental/memory/optional/optional" + }, + { + "cppref": "cpp/experimental/atomic_shared_ptr/exchange", + "cppdoc": "cpp/library/experimental/concurrency/atomic_shared_ptr/exchange" + }, + { + "cppref": "cpp/experimental/atomic_shared_ptr/compare_exchange", + "cppdoc": "cpp/library/experimental/concurrency/atomic_shared_ptr/compare_exchange" + }, + { + "cppref": "cpp/experimental/atomic_shared_ptr/atomic_shared_ptr", + "cppdoc": "cpp/library/experimental/concurrency/atomic_shared_ptr/atomic_shared_ptr" + }, + { + "cppref": "cpp/experimental/atomic_shared_ptr/is_lock_free", + "cppdoc": "cpp/library/experimental/concurrency/atomic_shared_ptr/is_lock_free" + }, + { + "cppref": "cpp/experimental/atomic_shared_ptr/operator_shared_ptr", + "cppdoc": "cpp/library/experimental/concurrency/atomic_shared_ptr/operator_shared_ptr" + }, + { + "cppref": "cpp/experimental/atomic_shared_ptr/operator=", + "cppdoc": "cpp/library/experimental/concurrency/atomic_shared_ptr/operator=" + }, + { + "cppref": "cpp/experimental/atomic_shared_ptr/store", + "cppdoc": "cpp/library/experimental/concurrency/atomic_shared_ptr/store" + }, + { + "cppref": "cpp/experimental/atomic_shared_ptr/load", + "cppdoc": "cpp/library/experimental/concurrency/atomic_shared_ptr/load" + }, + { + "cppref": "cpp/experimental/synchronized_pool_resource/do_is_equal", + "cppdoc": "cpp/library/experimental/memory/synchronized_pool_resource/do_is_equal" + }, + { + "cppref": "cpp/experimental/synchronized_pool_resource/do_deallocate", + "cppdoc": "cpp/library/experimental/memory/synchronized_pool_resource/do_deallocate" + }, + { + "cppref": "cpp/experimental/synchronized_pool_resource/do_allocate", + "cppdoc": "cpp/library/experimental/memory/synchronized_pool_resource/do_allocate" + }, + { + "cppref": "cpp/experimental/synchronized_pool_resource/options", + "cppdoc": "cpp/library/experimental/memory/synchronized_pool_resource/options" + }, + { + "cppref": "cpp/experimental/synchronized_pool_resource/release", + "cppdoc": "cpp/library/experimental/memory/synchronized_pool_resource/release" + }, + { + "cppref": "cpp/experimental/synchronized_pool_resource/~synchronized_pool_resource", + "cppdoc": "cpp/library/experimental/memory/synchronized_pool_resource/~synchronized_pool_resource" + }, + { + "cppref": "cpp/experimental/synchronized_pool_resource/synchronized_pool_resource", + "cppdoc": "cpp/library/experimental/memory/synchronized_pool_resource/synchronized_pool_resource" + }, + { + "cppref": "cpp/experimental/synchronized_pool_resource/upstream_resource", + "cppdoc": "cpp/library/experimental/memory/synchronized_pool_resource/upstream_resource" + }, + { + "cppref": "cpp/experimental/propagate_const/hash", + "cppdoc": "cpp/library/experimental/lib_extensions_2/propagate_const/hash" + }, + { + "cppref": "cpp/experimental/propagate_const/cmp_func", + "cppdoc": "cpp/library/experimental/lib_extensions_2/propagate_const/cmp_func" + }, + { + "cppref": "cpp/experimental/propagate_const/swap2", + "cppdoc": "cpp/library/experimental/lib_extensions_2/propagate_const/swap2" + }, + { + "cppref": "cpp/experimental/propagate_const/swap", + "cppdoc": "cpp/library/experimental/lib_extensions_2/propagate_const/swap" + }, + { + "cppref": "cpp/experimental/propagate_const/operator_star_", + "cppdoc": "cpp/library/experimental/lib_extensions_2/propagate_const/operator_star_" + }, + { + "cppref": "cpp/experimental/propagate_const/get", + "cppdoc": "cpp/library/experimental/lib_extensions_2/propagate_const/get" + }, + { + "cppref": "cpp/experimental/propagate_const/operator_cmp", + "cppdoc": "cpp/library/experimental/lib_extensions_2/propagate_const/operator_cmp" + }, + { + "cppref": "cpp/experimental/propagate_const/propagate_const", + "cppdoc": "cpp/library/experimental/lib_extensions_2/propagate_const/propagate_const" + }, + { + "cppref": "cpp/experimental/propagate_const/operator_bool", + "cppdoc": "cpp/library/experimental/lib_extensions_2/propagate_const/operator_bool" + }, + { + "cppref": "cpp/experimental/propagate_const/operator=", + "cppdoc": "cpp/library/experimental/lib_extensions_2/propagate_const/operator=" + }, + { + "cppref": "cpp/experimental/propagate_const/get_underlying", + "cppdoc": "cpp/library/experimental/lib_extensions_2/propagate_const/get_underlying" + }, + { + "cppref": "cpp/experimental/propagate_const/operator_element_type_star_", + "cppdoc": "cpp/library/experimental/lib_extensions_2/propagate_const/operator_element_type_star_" + }, + { + "cppref": "cpp/experimental/basic_string_view/remove_prefix", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/remove_prefix" + }, + { + "cppref": "cpp/experimental/basic_string_view/operator_at", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/operator_at" + }, + { + "cppref": "cpp/experimental/basic_string_view/at", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/at" + }, + { + "cppref": "cpp/experimental/basic_string_view/back", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/back" + }, + { + "cppref": "cpp/experimental/basic_string_view/npos", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/npos" + }, + { + "cppref": "cpp/experimental/basic_string_view/empty", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/empty" + }, + { + "cppref": "cpp/experimental/basic_string_view/find", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/find" + }, + { + "cppref": "cpp/experimental/basic_string_view/hash", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/hash" + }, + { + "cppref": "cpp/experimental/basic_string_view/max_size", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/max_size" + }, + { + "cppref": "cpp/experimental/basic_string_view/size", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/size" + }, + { + "cppref": "cpp/experimental/basic_string_view/copy", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/copy" + }, + { + "cppref": "cpp/experimental/basic_string_view/find_first_not_of", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/find_first_not_of" + }, + { + "cppref": "cpp/experimental/basic_string_view/to_string", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/to_string" + }, + { + "cppref": "cpp/experimental/basic_string_view/end", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/end" + }, + { + "cppref": "cpp/experimental/basic_string_view/rend", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/rend" + }, + { + "cppref": "cpp/experimental/basic_string_view/begin", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/begin" + }, + { + "cppref": "cpp/experimental/basic_string_view/substr", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/substr" + }, + { + "cppref": "cpp/experimental/basic_string_view/find_last_not_of", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/find_last_not_of" + }, + { + "cppref": "cpp/experimental/basic_string_view/swap", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/swap" + }, + { + "cppref": "cpp/experimental/basic_string_view/front", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/front" + }, + { + "cppref": "cpp/experimental/basic_string_view/rfind", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/rfind" + }, + { + "cppref": "cpp/experimental/basic_string_view/rbegin", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/rbegin" + }, + { + "cppref": "cpp/experimental/basic_string_view/compare", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/compare" + }, + { + "cppref": "cpp/experimental/basic_string_view/basic_string_view", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/basic_string_view" + }, + { + "cppref": "cpp/experimental/basic_string_view/operator_cmp", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/operator_cmp" + }, + { + "cppref": "cpp/experimental/basic_string_view/find_last_of", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/find_last_of" + }, + { + "cppref": "cpp/experimental/basic_string_view/find_first_of", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/find_first_of" + }, + { + "cppref": "cpp/experimental/basic_string_view/operator=", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/operator=" + }, + { + "cppref": "cpp/experimental/basic_string_view/data", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/data" + }, + { + "cppref": "cpp/experimental/basic_string_view/operator_ltlt", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/operator_ltlt" + }, + { + "cppref": "cpp/experimental/basic_string_view/remove_suffix", + "cppdoc": "cpp/library/experimental/memory/basic_string_view/remove_suffix" + }, + { + "cppref": "cpp/experimental/observer_ptr/make_observer", + "cppdoc": "cpp/library/experimental/lib_extensions_2/observer_ptr/make_observer" + }, + { + "cppref": "cpp/experimental/observer_ptr/hash", + "cppdoc": "cpp/library/experimental/lib_extensions_2/observer_ptr/hash" + }, + { + "cppref": "cpp/experimental/observer_ptr/operator_pointer", + "cppdoc": "cpp/library/experimental/lib_extensions_2/observer_ptr/operator_pointer" + }, + { + "cppref": "cpp/experimental/observer_ptr/observer_ptr", + "cppdoc": "cpp/library/experimental/lib_extensions_2/observer_ptr/observer_ptr" + }, + { + "cppref": "cpp/experimental/observer_ptr/swap2", + "cppdoc": "cpp/library/experimental/lib_extensions_2/observer_ptr/swap2" + }, + { + "cppref": "cpp/experimental/observer_ptr/reset", + "cppdoc": "cpp/library/experimental/lib_extensions_2/observer_ptr/reset" + }, + { + "cppref": "cpp/experimental/observer_ptr/swap", + "cppdoc": "cpp/library/experimental/lib_extensions_2/observer_ptr/swap" + }, + { + "cppref": "cpp/experimental/observer_ptr/operator_star_", + "cppdoc": "cpp/library/experimental/lib_extensions_2/observer_ptr/operator_star_" + }, + { + "cppref": "cpp/experimental/observer_ptr/release", + "cppdoc": "cpp/library/experimental/lib_extensions_2/observer_ptr/release" + }, + { + "cppref": "cpp/experimental/observer_ptr/get", + "cppdoc": "cpp/library/experimental/lib_extensions_2/observer_ptr/get" + }, + { + "cppref": "cpp/experimental/observer_ptr/operator_cmp", + "cppdoc": "cpp/library/experimental/lib_extensions_2/observer_ptr/operator_cmp" + }, + { + "cppref": "cpp/experimental/observer_ptr/operator_bool", + "cppdoc": "cpp/library/experimental/lib_extensions_2/observer_ptr/operator_bool" + }, + { + "cppref": "cpp/experimental/unordered_multiset/erase_if", + "cppdoc": "cpp/library/experimental/lib_extensions_2/erase_if" + }, + { + "cppref": "cpp/error/get_unexpected", + "cppdoc": "cpp/library/error/get_unexpected" + }, + { + "cppref": "cpp/error/make_exception_ptr", + "cppdoc": "cpp/library/error/make_exception_ptr" + }, + { + "cppref": "cpp/error/nested_exception", + "cppdoc": "cpp/library/error/nested_exception" + }, + { + "cppref": "cpp/error/length_error", + "cppdoc": "cpp/library/error/length_error" + }, + { + "cppref": "cpp/error/set_unexpected", + "cppdoc": "cpp/library/error/set_unexpected" + }, + { + "cppref": "cpp/error/get_terminate", + "cppdoc": "cpp/library/error/get_terminate" + }, + { + "cppref": "cpp/error/system_category", + "cppdoc": "cpp/library/error/system_category" + }, + { + "cppref": "cpp/error/tx_exception", + "cppdoc": "cpp/library/error/tx_exception" + }, + { + "cppref": "cpp/error/assert", + "cppdoc": "cpp/library/error/assert" + }, + { + "cppref": "cpp/error/range_error", + "cppdoc": "cpp/library/error/range_error" + }, + { + "cppref": "cpp/error/invalid_argument", + "cppdoc": "cpp/library/error/invalid_argument" + }, + { + "cppref": "cpp/error/throw_with_nested", + "cppdoc": "cpp/library/error/throw_with_nested" + }, + { + "cppref": "cpp/error/error_condition", + "cppdoc": "cpp/library/error/error_condition" + }, + { + "cppref": "cpp/error/error_code", + "cppdoc": "cpp/library/error/error_code" + }, + { + "cppref": "cpp/error/errno_macros", + "cppdoc": "cpp/library/error/errno_macros" + }, + { + "cppref": "cpp/error/exception_ptr", + "cppdoc": "cpp/library/error/exception_ptr" + }, + { + "cppref": "cpp/error/domain_error", + "cppdoc": "cpp/library/error/domain_error" + }, + { + "cppref": "cpp/error/bad_exception", + "cppdoc": "cpp/library/error/bad_exception" + }, + { + "cppref": "cpp/error/terminate", + "cppdoc": "cpp/library/error/terminate" + }, + { + "cppref": "cpp/error/underflow_error", + "cppdoc": "cpp/library/error/underflow_error" + }, + { + "cppref": "cpp/error/unexpected", + "cppdoc": "cpp/library/error/unexpected" + }, + { + "cppref": "cpp/error/errno", + "cppdoc": "cpp/library/error/errno" + }, + { + "cppref": "cpp/error/rethrow_exception", + "cppdoc": "cpp/library/error/rethrow_exception" + }, + { + "cppref": "cpp/error/logic_error", + "cppdoc": "cpp/library/error/logic_error" + }, + { + "cppref": "cpp/error/current_exception", + "cppdoc": "cpp/library/error/current_exception" + }, + { + "cppref": "cpp/error/exception", + "cppdoc": "cpp/library/error/exception" + }, + { + "cppref": "cpp/error/runtime_error", + "cppdoc": "cpp/library/error/runtime_error" + }, + { + "cppref": "cpp/error/set_terminate", + "cppdoc": "cpp/library/error/set_terminate" + }, + { + "cppref": "cpp/error/uncaught_exception", + "cppdoc": "cpp/library/error/uncaught_exception" + }, + { + "cppref": "cpp/error/system_error", + "cppdoc": "cpp/library/error/system_error" + }, + { + "cppref": "cpp/error/generic_category", + "cppdoc": "cpp/library/error/generic_category" + }, + { + "cppref": "cpp/error/out_of_range", + "cppdoc": "cpp/library/error/out_of_range" + }, + { + "cppref": "cpp/error/errc", + "cppdoc": "cpp/library/error/errc" + }, + { + "cppref": "cpp/error/rethrow_if_nested", + "cppdoc": "cpp/library/error/rethrow_if_nested" + }, + { + "cppref": "cpp/error/error_category", + "cppdoc": "cpp/library/error/error_category" + }, + { + "cppref": "cpp/error/overflow_error", + "cppdoc": "cpp/library/error/overflow_error" + }, + { + "cppref": "cpp/error/unexpected_handler", + "cppdoc": "cpp/library/error/unexpected_handler" + }, + { + "cppref": "cpp/error/terminate_handler", + "cppdoc": "cpp/library/error/terminate_handler" + }, + { + "cppref": "cpp/error/bad_exception/bad_exception", + "cppdoc": "cpp/library/error/bad_exception/bad_exception" + }, + { + "cppref": "cpp/error/bad_exception/what", + "cppdoc": "cpp/library/error/bad_exception/what" + }, + { + "cppref": "cpp/error/bad_exception/operator=", + "cppdoc": "cpp/library/error/bad_exception/operator=" + }, + { + "cppref": "cpp/error/system_error/what", + "cppdoc": "cpp/library/error/system_error/what" + }, + { + "cppref": "cpp/error/system_error/code", + "cppdoc": "cpp/library/error/system_error/code" + }, + { + "cppref": "cpp/error/system_error/system_error", + "cppdoc": "cpp/library/error/system_error/system_error" + }, + { + "cppref": "cpp/error/system_error/operator=", + "cppdoc": "cpp/library/error/system_error/operator=" + }, + { + "cppref": "cpp/error/exception/get_unexpected", + "cppdoc": "cpp/library/error/exception/get_unexpected" + }, + { + "cppref": "cpp/error/exception/set_unexpected", + "cppdoc": "cpp/library/error/exception/set_unexpected" + }, + { + "cppref": "cpp/error/exception/~exception", + "cppdoc": "cpp/library/error/exception/~exception" + }, + { + "cppref": "cpp/error/exception/what", + "cppdoc": "cpp/library/error/exception/what" + }, + { + "cppref": "cpp/error/exception/exception", + "cppdoc": "cpp/library/error/exception/exception" + }, + { + "cppref": "cpp/error/exception/uncaught_exception", + "cppdoc": "cpp/library/error/exception/uncaught_exception" + }, + { + "cppref": "cpp/error/exception/operator=", + "cppdoc": "cpp/library/error/exception/operator=" + }, + { + "cppref": "cpp/error/exception/unexpected_handler", + "cppdoc": "cpp/library/error/exception/unexpected_handler" + }, + { + "cppref": "cpp/error/errc/is_error_condition_enum", + "cppdoc": "cpp/library/error/errc/is_error_condition_enum" + }, + { + "cppref": "cpp/error/errc/make_error_code", + "cppdoc": "cpp/library/error/errc/make_error_code" + }, + { + "cppref": "cpp/error/errc/make_error_condition", + "cppdoc": "cpp/library/error/errc/make_error_condition" + }, + { + "cppref": "cpp/error/error_category/~error_category", + "cppdoc": "cpp/library/error/error_category/~error_category" + }, + { + "cppref": "cpp/error/error_category/default_error_condition", + "cppdoc": "cpp/library/error/error_category/default_error_condition" + }, + { + "cppref": "cpp/error/error_category/name", + "cppdoc": "cpp/library/error/error_category/name" + }, + { + "cppref": "cpp/error/error_category/operator_cmp", + "cppdoc": "cpp/library/error/error_category/operator_cmp" + }, + { + "cppref": "cpp/error/error_category/message", + "cppdoc": "cpp/library/error/error_category/message" + }, + { + "cppref": "cpp/error/error_category/equivalent", + "cppdoc": "cpp/library/error/error_category/equivalent" + }, + { + "cppref": "cpp/error/error_category/error_category", + "cppdoc": "cpp/library/error/error_category/error_category" + }, + { + "cppref": "cpp/error/error_condition/assign", + "cppdoc": "cpp/library/error/error_condition/assign" + }, + { + "cppref": "cpp/error/error_condition/category", + "cppdoc": "cpp/library/error/error_condition/category" + }, + { + "cppref": "cpp/error/error_condition/hash", + "cppdoc": "cpp/library/error/error_condition/hash" + }, + { + "cppref": "cpp/error/error_condition/is_error_condition_enum", + "cppdoc": "cpp/library/error/error_condition/is_error_condition_enum" + }, + { + "cppref": "cpp/error/error_condition/error_condition", + "cppdoc": "cpp/library/error/error_condition/error_condition" + }, + { + "cppref": "cpp/error/error_condition/value", + "cppdoc": "cpp/library/error/error_condition/value" + }, + { + "cppref": "cpp/error/error_condition/operator_cmp", + "cppdoc": "cpp/library/error/error_condition/operator_cmp" + }, + { + "cppref": "cpp/error/error_condition/message", + "cppdoc": "cpp/library/error/error_condition/message" + }, + { + "cppref": "cpp/error/error_condition/operator_bool", + "cppdoc": "cpp/library/error/error_condition/operator_bool" + }, + { + "cppref": "cpp/error/error_condition/operator=", + "cppdoc": "cpp/library/error/error_condition/operator=" + }, + { + "cppref": "cpp/error/error_condition/clear", + "cppdoc": "cpp/library/error/error_condition/clear" + }, + { + "cppref": "cpp/error/nested_exception/nested_exception", + "cppdoc": "cpp/library/error/nested_exception/nested_exception" + }, + { + "cppref": "cpp/error/nested_exception/~nested_exception", + "cppdoc": "cpp/library/error/nested_exception/~nested_exception" + }, + { + "cppref": "cpp/error/nested_exception/nested_ptr", + "cppdoc": "cpp/library/error/nested_exception/nested_ptr" + }, + { + "cppref": "cpp/error/nested_exception/operator=", + "cppdoc": "cpp/library/error/nested_exception/operator=" + }, + { + "cppref": "cpp/error/nested_exception/rethrow_nested", + "cppdoc": "cpp/library/error/nested_exception/rethrow_nested" + }, + { + "cppref": "cpp/error/error_code/assign", + "cppdoc": "cpp/library/error/error_code/assign" + }, + { + "cppref": "cpp/error/error_code/category", + "cppdoc": "cpp/library/error/error_code/category" + }, + { + "cppref": "cpp/error/error_code/hash", + "cppdoc": "cpp/library/error/error_code/hash" + }, + { + "cppref": "cpp/error/error_code/default_error_condition", + "cppdoc": "cpp/library/error/error_code/default_error_condition" + }, + { + "cppref": "cpp/error/error_code/error_code", + "cppdoc": "cpp/library/error/error_code/error_code" + }, + { + "cppref": "cpp/error/error_code/value", + "cppdoc": "cpp/library/error/error_code/value" + }, + { + "cppref": "cpp/error/error_code/operator_cmp", + "cppdoc": "cpp/library/error/error_code/operator_cmp" + }, + { + "cppref": "cpp/error/error_code/message", + "cppdoc": "cpp/library/error/error_code/message" + }, + { + "cppref": "cpp/error/error_code/operator_bool", + "cppdoc": "cpp/library/error/error_code/operator_bool" + }, + { + "cppref": "cpp/error/error_code/operator=", + "cppdoc": "cpp/library/error/error_code/operator=" + }, + { + "cppref": "cpp/error/error_code/operator_ltlt", + "cppdoc": "cpp/library/error/error_code/operator_ltlt" + }, + { + "cppref": "cpp/error/error_code/is_error_code_enum", + "cppdoc": "cpp/library/error/error_code/is_error_code_enum" + }, + { + "cppref": "cpp/error/error_code/clear", + "cppdoc": "cpp/library/error/error_code/clear" + }, + { + "cppref": "cpp/types/is_trivially_copyable", + "cppdoc": "cpp/library/meta/is_trivially_copyable" + }, + { + "cppref": "cpp/types/alignment_of", + "cppdoc": "cpp/library/meta/alignment_of" + }, + { + "cppref": "cpp/types/extent", + "cppdoc": "cpp/library/meta/extent" + }, + { + "cppref": "cpp/types/is_member_function_pointer", + "cppdoc": "cpp/library/meta/is_member_function_pointer" + }, + { + "cppref": "cpp/types/reference_converts_from_temporary", + "cppdoc": "cpp/library/meta/reference_converts_from_temporary" + }, + { + "cppref": "cpp/types/decay", + "cppdoc": "cpp/library/meta/decay" + }, + { + "cppref": "cpp/types/remove_pointer", + "cppdoc": "cpp/library/meta/remove_pointer" + }, + { + "cppref": "cpp/types/is_final", + "cppdoc": "cpp/library/meta/is_final" + }, + { + "cppref": "cpp/types/is_standard_layout", + "cppdoc": "cpp/library/meta/is_standard_layout" + }, + { + "cppref": "cpp/types/is_lvalue_reference", + "cppdoc": "cpp/library/meta/is_lvalue_reference" + }, + { + "cppref": "cpp/types/void_t", + "cppdoc": "cpp/library/meta/void_t" + }, + { + "cppref": "cpp/types/is_object", + "cppdoc": "cpp/library/meta/is_object" + }, + { + "cppref": "cpp/types/conditional", + "cppdoc": "cpp/library/meta/conditional" + }, + { + "cppref": "cpp/types/is_trivial", + "cppdoc": "cpp/library/meta/is_trivial" + }, + { + "cppref": "cpp/types/make_unsigned", + "cppdoc": "cpp/library/meta/make_unsigned" + }, + { + "cppref": "cpp/types/is_move_constructible", + "cppdoc": "cpp/library/meta/is_move_constructible" + }, + { + "cppref": "cpp/types/enable_if", + "cppdoc": "cpp/library/meta/enable_if" + }, + { + "cppref": "cpp/types/is_rvalue_reference", + "cppdoc": "cpp/library/meta/is_rvalue_reference" + }, + { + "cppref": "cpp/types/is_pointer", + "cppdoc": "cpp/library/meta/is_pointer" + }, + { + "cppref": "cpp/types/is_assignable", + "cppdoc": "cpp/library/meta/is_assignable" + }, + { + "cppref": "cpp/types/is_const", + "cppdoc": "cpp/library/meta/is_const" + }, + { + "cppref": "cpp/types/add_cv", + "cppdoc": "cpp/library/meta/add_cv" + }, + { + "cppref": "cpp/types/is_pointer_interconvertible_with_class", + "cppdoc": "cpp/library/meta/is_pointer_interconvertible_with_class" + }, + { + "cppref": "cpp/types/type_identity", + "cppdoc": "cpp/library/meta/type_identity" + }, + { + "cppref": "cpp/types/is_polymorphic", + "cppdoc": "cpp/library/meta/is_polymorphic" + }, + { + "cppref": "cpp/types/remove_all_extents", + "cppdoc": "cpp/library/meta/remove_all_extents" + }, + { + "cppref": "cpp/types/is_copy_assignable", + "cppdoc": "cpp/library/meta/is_copy_assignable" + }, + { + "cppref": "cpp/types/is_signed", + "cppdoc": "cpp/library/meta/is_signed" + }, + { + "cppref": "cpp/types/is_default_constructible", + "cppdoc": "cpp/library/meta/is_default_constructible" + }, + { + "cppref": "cpp/types/add_reference", + "cppdoc": "cpp/library/meta/add_reference" + }, + { + "cppref": "cpp/types/is_convertible", + "cppdoc": "cpp/library/meta/is_convertible" + }, + { + "cppref": "cpp/types/is_fundamental", + "cppdoc": "cpp/library/meta/is_fundamental" + }, + { + "cppref": "cpp/types/result_of", + "cppdoc": "cpp/library/meta/result_of" + }, + { + "cppref": "cpp/types/is_floating_point", + "cppdoc": "cpp/library/meta/is_floating_point" + }, + { + "cppref": "cpp/types/negation", + "cppdoc": "cpp/library/meta/negation" + }, + { + "cppref": "cpp/types/is_reference", + "cppdoc": "cpp/library/meta/is_reference" + }, + { + "cppref": "cpp/types/is_move_assignable", + "cppdoc": "cpp/library/meta/is_move_assignable" + }, + { + "cppref": "cpp/types/is_pointer_interconvertible_base_of", + "cppdoc": "cpp/library/meta/is_pointer_interconvertible_base_of" + }, + { + "cppref": "cpp/types/has_virtual_destructor", + "cppdoc": "cpp/library/meta/has_virtual_destructor" + }, + { + "cppref": "cpp/types/is_aggregate", + "cppdoc": "cpp/library/meta/is_aggregate" + }, + { + "cppref": "cpp/types/is_abstract", + "cppdoc": "cpp/library/meta/is_abstract" + }, + { + "cppref": "cpp/types/is_base_of", + "cppdoc": "cpp/library/meta/is_base_of" + }, + { + "cppref": "cpp/types/is_member_pointer", + "cppdoc": "cpp/library/meta/is_member_pointer" + }, + { + "cppref": "cpp/types/has_unique_object_representations", + "cppdoc": "cpp/library/meta/has_unique_object_representations" + }, + { + "cppref": "cpp/types/is_within_lifetime", + "cppdoc": "cpp/library/utility/is_within_lifetime" + }, + { + "cppref": "cpp/types/is_scoped_enum", + "cppdoc": "cpp/library/meta/is_scoped_enum" + }, + { + "cppref": "cpp/types/is_null_pointer", + "cppdoc": "cpp/library/meta/is_null_pointer" + }, + { + "cppref": "cpp/types/remove_cvref", + "cppdoc": "cpp/library/meta/remove_cvref" + }, + { + "cppref": "cpp/types/is_compound", + "cppdoc": "cpp/library/meta/is_compound" + }, + { + "cppref": "cpp/types/is_enum", + "cppdoc": "cpp/library/meta/is_enum" + }, + { + "cppref": "cpp/types/underlying_type", + "cppdoc": "cpp/library/meta/underlying_type" + }, + { + "cppref": "cpp/types/is_swappable", + "cppdoc": "cpp/library/meta/is_swappable" + }, + { + "cppref": "cpp/types/is_unsigned", + "cppdoc": "cpp/library/meta/is_unsigned" + }, + { + "cppref": "cpp/types/is_member_object_pointer", + "cppdoc": "cpp/library/meta/is_member_object_pointer" + }, + { + "cppref": "cpp/types/common_type", + "cppdoc": "cpp/library/meta/common_type" + }, + { + "cppref": "cpp/types/make_signed", + "cppdoc": "cpp/library/meta/make_signed" + }, + { + "cppref": "cpp/types/is_layout_compatible", + "cppdoc": "cpp/library/meta/is_layout_compatible" + }, + { + "cppref": "cpp/types/is_same", + "cppdoc": "cpp/library/meta/is_same" + }, + { + "cppref": "cpp/types/is_copy_constructible", + "cppdoc": "cpp/library/meta/is_copy_constructible" + }, + { + "cppref": "cpp/types/remove_reference", + "cppdoc": "cpp/library/meta/remove_reference" + }, + { + "cppref": "cpp/types/is_class", + "cppdoc": "cpp/library/meta/is_class" + }, + { + "cppref": "cpp/types/is_unbounded_array", + "cppdoc": "cpp/library/meta/is_unbounded_array" + }, + { + "cppref": "cpp/types/is_scalar", + "cppdoc": "cpp/library/meta/is_scalar" + }, + { + "cppref": "cpp/types/endian", + "cppdoc": "cpp/library/utility/bit/endian" + }, + { + "cppref": "cpp/types/conjunction", + "cppdoc": "cpp/library/meta/conjunction" + }, + { + "cppref": "cpp/types/is_empty", + "cppdoc": "cpp/library/meta/is_empty" + }, + { + "cppref": "cpp/types/is_union", + "cppdoc": "cpp/library/meta/is_union" + }, + { + "cppref": "cpp/types/is_bounded_array", + "cppdoc": "cpp/library/meta/is_bounded_array" + }, + { + "cppref": "cpp/types/is_destructible", + "cppdoc": "cpp/library/meta/is_destructible" + }, + { + "cppref": "cpp/types/is_function", + "cppdoc": "cpp/library/meta/is_function" + }, + { + "cppref": "cpp/types/integral_constant", + "cppdoc": "cpp/library/meta/integral_constant" + }, + { + "cppref": "cpp/types/is_void", + "cppdoc": "cpp/library/meta/is_void" + }, + { + "cppref": "cpp/types/remove_extent", + "cppdoc": "cpp/library/meta/remove_extent" + }, + { + "cppref": "cpp/types/is_implicit_lifetime", + "cppdoc": "cpp/library/meta/is_implicit_lifetime" + }, + { + "cppref": "cpp/types/is_constant_evaluated", + "cppdoc": "cpp/library/utility/is_constant_evaluated" + }, + { + "cppref": "cpp/types/is_arithmetic", + "cppdoc": "cpp/library/meta/is_arithmetic" + }, + { + "cppref": "cpp/types/is_literal_type", + "cppdoc": "cpp/library/meta/is_literal_type" + }, + { + "cppref": "cpp/types/is_integral", + "cppdoc": "cpp/library/meta/is_integral" + }, + { + "cppref": "cpp/types/is_array", + "cppdoc": "cpp/library/meta/is_array" + }, + { + "cppref": "cpp/types/remove_cv", + "cppdoc": "cpp/library/meta/remove_cv" + }, + { + "cppref": "cpp/types/common_reference", + "cppdoc": "cpp/library/meta/common_reference" + }, + { + "cppref": "cpp/types/add_pointer", + "cppdoc": "cpp/library/meta/add_pointer" + }, + { + "cppref": "cpp/types/is_volatile", + "cppdoc": "cpp/library/meta/is_volatile" + }, + { + "cppref": "cpp/types/is_pod", + "cppdoc": "cpp/library/meta/is_pod" + }, + { + "cppref": "cpp/types/is_virtual_base_of", + "cppdoc": "cpp/library/meta/is_virtual_base_of" + }, + { + "cppref": "cpp/types/disjunction", + "cppdoc": "cpp/library/meta/disjunction" + }, + { + "cppref": "cpp/types/rank", + "cppdoc": "cpp/library/meta/rank" + }, + { + "cppref": "cpp/types/is_constructible", + "cppdoc": "cpp/library/meta/is_constructible" + }, + { + "cppref": "cpp/types/aligned_storage", + "cppdoc": "cpp/library/meta/aligned_storage" + }, + { + "cppref": "cpp/types/is_corresponding_member", + "cppdoc": "cpp/library/meta/is_corresponding_member" + }, + { + "cppref": "cpp/types/reference_constructs_from_temporary", + "cppdoc": "cpp/library/meta/reference_constructs_from_temporary" + }, + { + "cppref": "cpp/types/aligned_union", + "cppdoc": "cpp/library/meta/aligned_union" + }, + { + "cppref": "cpp/types/is_invocable", + "cppdoc": "cpp/library/meta/is_invocable" + }, + { + "cppref": "cpp/compiler_support/vendors", + "cppdoc": "cpp/library/compiler_support/vendors" + }, + { + "cppref": "cpp/compiler_support/11", + "cppdoc": "cpp/library/compiler_support/11" + }, + { + "cppref": "cpp/compiler_support/17", + "cppdoc": "cpp/library/compiler_support/17" + }, + { + "cppref": "cpp/compiler_support/26", + "cppdoc": "cpp/library/compiler_support/26" + }, + { + "cppref": "cpp/compiler_support/20", + "cppdoc": "cpp/library/compiler_support/20" + }, + { + "cppref": "cpp/compiler_support/23", + "cppdoc": "cpp/library/compiler_support/23" + }, + { + "cppref": "cpp/compiler_support/14", + "cppdoc": "cpp/library/compiler_support/14" + }, + { + "cppref": "cpp/coroutine/generator", + "cppdoc": "cpp/library/ranges/generator" + }, + { + "cppref": "cpp/coroutine/generator/end", + "cppdoc": "cpp/library/ranges/generator/end" + }, + { + "cppref": "cpp/coroutine/generator/begin", + "cppdoc": "cpp/library/ranges/generator/begin" + }, + { + "cppref": "cpp/coroutine/generator/generator", + "cppdoc": "cpp/library/ranges/generator/generator" + }, + { + "cppref": "cpp/coroutine/generator/promise_type", + "cppdoc": "cpp/library/ranges/generator/promise_type" + }, + { + "cppref": "cpp/coroutine/generator/iterator", + "cppdoc": "cpp/library/ranges/generator/iterator" + }, + { + "cppref": "cpp/coroutine/generator/~generator", + "cppdoc": "cpp/library/ranges/generator/~generator" + }, + { + "cppref": "cpp/coroutine/generator/operator=", + "cppdoc": "cpp/library/ranges/generator/operator=" + }, + { + "cppref": "cpp/coroutine/generator/promise_type/operator_new", + "cppdoc": "cpp/library/ranges/generator/promise_type/operator_new" + }, + { + "cppref": "cpp/coroutine/generator/promise_type/yield_value", + "cppdoc": "cpp/library/ranges/generator/promise_type/yield_value" + }, + { + "cppref": "cpp/coroutine/generator/promise_type/unhandled_exception", + "cppdoc": "cpp/library/ranges/generator/promise_type/unhandled_exception" + }, + { + "cppref": "cpp/coroutine/generator/promise_type/get_return_object", + "cppdoc": "cpp/library/ranges/generator/promise_type/get_return_object" + }, + { + "cppref": "cpp/coroutine/generator/promise_type/final_suspend", + "cppdoc": "cpp/library/ranges/generator/promise_type/final_suspend" + }, + { + "cppref": "cpp/coroutine/generator/promise_type/initial_suspend", + "cppdoc": "cpp/library/ranges/generator/promise_type/initial_suspend" + }, + { + "cppref": "cpp/coroutine/generator/promise_type/return_void", + "cppdoc": "cpp/library/ranges/generator/promise_type/return_void" + }, + { + "cppref": "cpp/coroutine/generator/promise_type/operator_delete", + "cppdoc": "cpp/library/ranges/generator/promise_type/operator_delete" + }, + { + "cppref": "cpp/container/stack", + "cppdoc": "cpp/library/container/stack" + }, + { + "cppref": "cpp/container/span", + "cppdoc": "cpp/library/container/span" + }, + { + "cppref": "cpp/container/unordered_set", + "cppdoc": "cpp/library/container/unordered_set" + }, + { + "cppref": "cpp/container/unordered_map", + "cppdoc": "cpp/library/container/unordered_map" + }, + { + "cppref": "cpp/container/mdspan", + "cppdoc": "cpp/library/container/mdspan" + }, + { + "cppref": "cpp/container/vector_bool", + "cppdoc": "cpp/library/container/vector_bool" + }, + { + "cppref": "cpp/container/unordered_multimap", + "cppdoc": "cpp/library/container/unordered_multimap" + }, + { + "cppref": "cpp/container/priority_queue", + "cppdoc": "cpp/library/container/priority_queue" + }, + { + "cppref": "cpp/container/sorted_equivalent", + "cppdoc": "cpp/library/container/sorted_equivalent" + }, + { + "cppref": "cpp/container/list", + "cppdoc": "cpp/library/container/list" + }, + { + "cppref": "cpp/container/unordered_multiset", + "cppdoc": "cpp/library/container/unordered_multiset" + }, + { + "cppref": "cpp/container/multiset", + "cppdoc": "cpp/library/container/multiset" + }, + { + "cppref": "cpp/container/inplace_vector", + "cppdoc": "cpp/library/container/inplace_vector" + }, + { + "cppref": "cpp/container/flat_multimap", + "cppdoc": "cpp/library/container/flat_multimap" + }, + { + "cppref": "cpp/container/sorted_unique", + "cppdoc": "cpp/library/container/sorted_unique" + }, + { + "cppref": "cpp/container/queue", + "cppdoc": "cpp/library/container/queue" + }, + { + "cppref": "cpp/container/flat_set", + "cppdoc": "cpp/library/container/flat_set" + }, + { + "cppref": "cpp/container/array", + "cppdoc": "cpp/library/container/array" + }, + { + "cppref": "cpp/container/deque", + "cppdoc": "cpp/library/container/deque" + }, + { + "cppref": "cpp/container/map", + "cppdoc": "cpp/library/container/map" + }, + { + "cppref": "cpp/container/multimap", + "cppdoc": "cpp/library/container/multimap" + }, + { + "cppref": "cpp/container/forward_list", + "cppdoc": "cpp/library/container/forward_list" + }, + { + "cppref": "cpp/container/node_handle", + "cppdoc": "cpp/library/container/node_handle" + }, + { + "cppref": "cpp/container/set", + "cppdoc": "cpp/library/container/set" + }, + { + "cppref": "cpp/container/flat_map", + "cppdoc": "cpp/library/container/flat_map" + }, + { + "cppref": "cpp/container/flat_multiset", + "cppdoc": "cpp/library/container/flat_multiset" + }, + { + "cppref": "cpp/container/vector", + "cppdoc": "cpp/library/container/vector" + }, + { + "cppref": "cpp/container/unordered_map/bucket_count", + "cppdoc": "cpp/library/container/unordered_map/bucket_count" + }, + { + "cppref": "cpp/container/unordered_map/operator_at", + "cppdoc": "cpp/library/container/unordered_map/operator_at" + }, + { + "cppref": "cpp/container/unordered_map/end2", + "cppdoc": "cpp/library/container/unordered_map/end2" + }, + { + "cppref": "cpp/container/unordered_map/at", + "cppdoc": "cpp/library/container/unordered_map/at" + }, + { + "cppref": "cpp/container/unordered_map/try_emplace", + "cppdoc": "cpp/library/container/unordered_map/try_emplace" + }, + { + "cppref": "cpp/container/unordered_map/unordered_map", + "cppdoc": "cpp/library/container/unordered_map/unordered_map" + }, + { + "cppref": "cpp/container/unordered_map/extract", + "cppdoc": "cpp/library/container/unordered_map/extract" + }, + { + "cppref": "cpp/container/unordered_map/insert", + "cppdoc": "cpp/library/container/unordered_map/insert" + }, + { + "cppref": "cpp/container/unordered_map/emplace", + "cppdoc": "cpp/library/container/unordered_map/emplace" + }, + { + "cppref": "cpp/container/unordered_map/empty", + "cppdoc": "cpp/library/container/unordered_map/empty" + }, + { + "cppref": "cpp/container/unordered_map/find", + "cppdoc": "cpp/library/container/unordered_map/find" + }, + { + "cppref": "cpp/container/unordered_map/equal_range", + "cppdoc": "cpp/library/container/unordered_map/equal_range" + }, + { + "cppref": "cpp/container/unordered_map/max_size", + "cppdoc": "cpp/library/container/unordered_map/max_size" + }, + { + "cppref": "cpp/container/unordered_map/size", + "cppdoc": "cpp/library/container/unordered_map/size" + }, + { + "cppref": "cpp/container/unordered_map/~unordered_map", + "cppdoc": "cpp/library/container/unordered_map/~unordered_map" + }, + { + "cppref": "cpp/container/unordered_map/swap2", + "cppdoc": "cpp/library/container/unordered_map/swap2" + }, + { + "cppref": "cpp/container/unordered_map/end", + "cppdoc": "cpp/library/container/unordered_map/end" + }, + { + "cppref": "cpp/container/unordered_map/load_factor", + "cppdoc": "cpp/library/container/unordered_map/load_factor" + }, + { + "cppref": "cpp/container/unordered_map/rehash", + "cppdoc": "cpp/library/container/unordered_map/rehash" + }, + { + "cppref": "cpp/container/unordered_map/begin2", + "cppdoc": "cpp/library/container/unordered_map/begin2" + }, + { + "cppref": "cpp/container/unordered_map/begin", + "cppdoc": "cpp/library/container/unordered_map/begin" + }, + { + "cppref": "cpp/container/unordered_map/deduction_guides", + "cppdoc": "cpp/library/container/unordered_map/deduction_guides" + }, + { + "cppref": "cpp/container/unordered_map/max_bucket_count", + "cppdoc": "cpp/library/container/unordered_map/max_bucket_count" + }, + { + "cppref": "cpp/container/unordered_map/swap", + "cppdoc": "cpp/library/container/unordered_map/swap" + }, + { + "cppref": "cpp/container/unordered_map/reserve", + "cppdoc": "cpp/library/container/unordered_map/reserve" + }, + { + "cppref": "cpp/container/unordered_map/count", + "cppdoc": "cpp/library/container/unordered_map/count" + }, + { + "cppref": "cpp/container/unordered_map/erase", + "cppdoc": "cpp/library/container/unordered_map/erase" + }, + { + "cppref": "cpp/container/unordered_map/operator_cmp", + "cppdoc": "cpp/library/container/unordered_map/operator_cmp" + }, + { + "cppref": "cpp/container/unordered_map/get_allocator", + "cppdoc": "cpp/library/container/unordered_map/get_allocator" + }, + { + "cppref": "cpp/container/unordered_map/contains", + "cppdoc": "cpp/library/container/unordered_map/contains" + }, + { + "cppref": "cpp/container/unordered_map/merge", + "cppdoc": "cpp/library/container/unordered_map/merge" + }, + { + "cppref": "cpp/container/unordered_map/erase_if", + "cppdoc": "cpp/library/container/unordered_map/erase_if" + }, + { + "cppref": "cpp/container/unordered_map/insert_range", + "cppdoc": "cpp/library/container/unordered_map/insert_range" + }, + { + "cppref": "cpp/container/unordered_map/key_eq", + "cppdoc": "cpp/library/container/unordered_map/key_eq" + }, + { + "cppref": "cpp/container/unordered_map/bucket", + "cppdoc": "cpp/library/container/unordered_map/bucket" + }, + { + "cppref": "cpp/container/unordered_map/emplace_hint", + "cppdoc": "cpp/library/container/unordered_map/emplace_hint" + }, + { + "cppref": "cpp/container/unordered_map/hash_function", + "cppdoc": "cpp/library/container/unordered_map/hash_function" + }, + { + "cppref": "cpp/container/unordered_map/insert_or_assign", + "cppdoc": "cpp/library/container/unordered_map/insert_or_assign" + }, + { + "cppref": "cpp/container/unordered_map/operator=", + "cppdoc": "cpp/library/container/unordered_map/operator=" + }, + { + "cppref": "cpp/container/unordered_map/max_load_factor", + "cppdoc": "cpp/library/container/unordered_map/max_load_factor" + }, + { + "cppref": "cpp/container/unordered_map/bucket_size", + "cppdoc": "cpp/library/container/unordered_map/bucket_size" + }, + { + "cppref": "cpp/container/unordered_map/clear", + "cppdoc": "cpp/library/container/unordered_map/clear" + }, + { + "cppref": "cpp/container/unordered_set/bucket_count", + "cppdoc": "cpp/library/container/unordered_set/bucket_count" + }, + { + "cppref": "cpp/container/unordered_set/end2", + "cppdoc": "cpp/library/container/unordered_set/end2" + }, + { + "cppref": "cpp/container/unordered_set/unordered_set", + "cppdoc": "cpp/library/container/unordered_set/unordered_set" + }, + { + "cppref": "cpp/container/unordered_set/extract", + "cppdoc": "cpp/library/container/unordered_set/extract" + }, + { + "cppref": "cpp/container/unordered_set/insert", + "cppdoc": "cpp/library/container/unordered_set/insert" + }, + { + "cppref": "cpp/container/unordered_set/emplace", + "cppdoc": "cpp/library/container/unordered_set/emplace" + }, + { + "cppref": "cpp/container/unordered_set/empty", + "cppdoc": "cpp/library/container/unordered_set/empty" + }, + { + "cppref": "cpp/container/unordered_set/find", + "cppdoc": "cpp/library/container/unordered_set/find" + }, + { + "cppref": "cpp/container/unordered_set/~unordered_set", + "cppdoc": "cpp/library/container/unordered_set/~unordered_set" + }, + { + "cppref": "cpp/container/unordered_set/equal_range", + "cppdoc": "cpp/library/container/unordered_set/equal_range" + }, + { + "cppref": "cpp/container/unordered_set/max_size", + "cppdoc": "cpp/library/container/unordered_set/max_size" + }, + { + "cppref": "cpp/container/unordered_set/size", + "cppdoc": "cpp/library/container/unordered_set/size" + }, + { + "cppref": "cpp/container/unordered_set/swap2", + "cppdoc": "cpp/library/container/unordered_set/swap2" + }, + { + "cppref": "cpp/container/unordered_set/end", + "cppdoc": "cpp/library/container/unordered_set/end" + }, + { + "cppref": "cpp/container/unordered_set/load_factor", + "cppdoc": "cpp/library/container/unordered_set/load_factor" + }, + { + "cppref": "cpp/container/unordered_set/rehash", + "cppdoc": "cpp/library/container/unordered_set/rehash" + }, + { + "cppref": "cpp/container/unordered_set/begin2", + "cppdoc": "cpp/library/container/unordered_set/begin2" + }, + { + "cppref": "cpp/container/unordered_set/begin", + "cppdoc": "cpp/library/container/unordered_set/begin" + }, + { + "cppref": "cpp/container/unordered_set/deduction_guides", + "cppdoc": "cpp/library/container/unordered_set/deduction_guides" + }, + { + "cppref": "cpp/container/unordered_set/max_bucket_count", + "cppdoc": "cpp/library/container/unordered_set/max_bucket_count" + }, + { + "cppref": "cpp/container/unordered_set/swap", + "cppdoc": "cpp/library/container/unordered_set/swap" + }, + { + "cppref": "cpp/container/unordered_set/reserve", + "cppdoc": "cpp/library/container/unordered_set/reserve" + }, + { + "cppref": "cpp/container/unordered_set/count", + "cppdoc": "cpp/library/container/unordered_set/count" + }, + { + "cppref": "cpp/container/unordered_set/erase", + "cppdoc": "cpp/library/container/unordered_set/erase" + }, + { + "cppref": "cpp/container/unordered_set/operator_cmp", + "cppdoc": "cpp/library/container/unordered_set/operator_cmp" + }, + { + "cppref": "cpp/container/unordered_set/get_allocator", + "cppdoc": "cpp/library/container/unordered_set/get_allocator" + }, + { + "cppref": "cpp/container/unordered_set/contains", + "cppdoc": "cpp/library/container/unordered_set/contains" + }, + { + "cppref": "cpp/container/unordered_set/merge", + "cppdoc": "cpp/library/container/unordered_set/merge" + }, + { + "cppref": "cpp/container/unordered_set/erase_if", + "cppdoc": "cpp/library/container/unordered_set/erase_if" + }, + { + "cppref": "cpp/container/unordered_set/insert_range", + "cppdoc": "cpp/library/container/unordered_set/insert_range" + }, + { + "cppref": "cpp/container/unordered_set/key_eq", + "cppdoc": "cpp/library/container/unordered_set/key_eq" + }, + { + "cppref": "cpp/container/unordered_set/bucket", + "cppdoc": "cpp/library/container/unordered_set/bucket" + }, + { + "cppref": "cpp/container/unordered_set/emplace_hint", + "cppdoc": "cpp/library/container/unordered_set/emplace_hint" + }, + { + "cppref": "cpp/container/unordered_set/hash_function", + "cppdoc": "cpp/library/container/unordered_set/hash_function" + }, + { + "cppref": "cpp/container/unordered_set/operator=", + "cppdoc": "cpp/library/container/unordered_set/operator=" + }, + { + "cppref": "cpp/container/unordered_set/max_load_factor", + "cppdoc": "cpp/library/container/unordered_set/max_load_factor" + }, + { + "cppref": "cpp/container/unordered_set/bucket_size", + "cppdoc": "cpp/library/container/unordered_set/bucket_size" + }, + { + "cppref": "cpp/container/unordered_set/clear", + "cppdoc": "cpp/library/container/unordered_set/clear" + }, + { + "cppref": "cpp/container/flat_multimap/replace", + "cppdoc": "cpp/library/container/flat_multimap/replace" + }, + { + "cppref": "cpp/container/flat_multimap/extract", + "cppdoc": "cpp/library/container/flat_multimap/extract" + }, + { + "cppref": "cpp/container/flat_multimap/insert", + "cppdoc": "cpp/library/container/flat_multimap/insert" + }, + { + "cppref": "cpp/container/flat_multimap/emplace", + "cppdoc": "cpp/library/container/flat_multimap/emplace" + }, + { + "cppref": "cpp/container/flat_multimap/empty", + "cppdoc": "cpp/library/container/flat_multimap/empty" + }, + { + "cppref": "cpp/container/flat_multimap/find", + "cppdoc": "cpp/library/container/flat_multimap/find" + }, + { + "cppref": "cpp/container/flat_multimap/equal_range", + "cppdoc": "cpp/library/container/flat_multimap/equal_range" + }, + { + "cppref": "cpp/container/flat_multimap/max_size", + "cppdoc": "cpp/library/container/flat_multimap/max_size" + }, + { + "cppref": "cpp/container/flat_multimap/size", + "cppdoc": "cpp/library/container/flat_multimap/size" + }, + { + "cppref": "cpp/container/flat_multimap/swap2", + "cppdoc": "cpp/library/container/flat_multimap/swap2" + }, + { + "cppref": "cpp/container/flat_multimap/end", + "cppdoc": "cpp/library/container/flat_multimap/end" + }, + { + "cppref": "cpp/container/flat_multimap/value_compare", + "cppdoc": "cpp/library/container/flat_multimap/value_compare" + }, + { + "cppref": "cpp/container/flat_multimap/rend", + "cppdoc": "cpp/library/container/flat_multimap/rend" + }, + { + "cppref": "cpp/container/flat_multimap/begin", + "cppdoc": "cpp/library/container/flat_multimap/begin" + }, + { + "cppref": "cpp/container/flat_multimap/deduction_guides", + "cppdoc": "cpp/library/container/flat_multimap/deduction_guides" + }, + { + "cppref": "cpp/container/flat_multimap/value_comp", + "cppdoc": "cpp/library/container/flat_multimap/value_comp" + }, + { + "cppref": "cpp/container/flat_multimap/flat_multimap", + "cppdoc": "cpp/library/container/flat_multimap/flat_multimap" + }, + { + "cppref": "cpp/container/flat_multimap/swap", + "cppdoc": "cpp/library/container/flat_multimap/swap" + }, + { + "cppref": "cpp/container/flat_multimap/upper_bound", + "cppdoc": "cpp/library/container/flat_multimap/upper_bound" + }, + { + "cppref": "cpp/container/flat_multimap/rbegin", + "cppdoc": "cpp/library/container/flat_multimap/rbegin" + }, + { + "cppref": "cpp/container/flat_multimap/lower_bound", + "cppdoc": "cpp/library/container/flat_multimap/lower_bound" + }, + { + "cppref": "cpp/container/flat_multimap/count", + "cppdoc": "cpp/library/container/flat_multimap/count" + }, + { + "cppref": "cpp/container/flat_multimap/erase", + "cppdoc": "cpp/library/container/flat_multimap/erase" + }, + { + "cppref": "cpp/container/flat_multimap/operator_cmp", + "cppdoc": "cpp/library/container/flat_multimap/operator_cmp" + }, + { + "cppref": "cpp/container/flat_multimap/contains", + "cppdoc": "cpp/library/container/flat_multimap/contains" + }, + { + "cppref": "cpp/container/flat_multimap/erase_if", + "cppdoc": "cpp/library/container/flat_multimap/erase_if" + }, + { + "cppref": "cpp/container/flat_multimap/insert_range", + "cppdoc": "cpp/library/container/flat_multimap/insert_range" + }, + { + "cppref": "cpp/container/flat_multimap/values", + "cppdoc": "cpp/library/container/flat_multimap/values" + }, + { + "cppref": "cpp/container/flat_multimap/emplace_hint", + "cppdoc": "cpp/library/container/flat_multimap/emplace_hint" + }, + { + "cppref": "cpp/container/flat_multimap/key_comp", + "cppdoc": "cpp/library/container/flat_multimap/key_comp" + }, + { + "cppref": "cpp/container/flat_multimap/operator=", + "cppdoc": "cpp/library/container/flat_multimap/operator=" + }, + { + "cppref": "cpp/container/flat_multimap/keys", + "cppdoc": "cpp/library/container/flat_multimap/keys" + }, + { + "cppref": "cpp/container/flat_multimap/clear", + "cppdoc": "cpp/library/container/flat_multimap/clear" + }, + { + "cppref": "cpp/container/flat_multimap/uses_allocator", + "cppdoc": "cpp/library/container/flat_multimap/uses_allocator" + }, + { + "cppref": "cpp/container/unordered_multimap/bucket_count", + "cppdoc": "cpp/library/container/unordered_multimap/bucket_count" + }, + { + "cppref": "cpp/container/unordered_multimap/end2", + "cppdoc": "cpp/library/container/unordered_multimap/end2" + }, + { + "cppref": "cpp/container/unordered_multimap/extract", + "cppdoc": "cpp/library/container/unordered_multimap/extract" + }, + { + "cppref": "cpp/container/unordered_multimap/insert", + "cppdoc": "cpp/library/container/unordered_multimap/insert" + }, + { + "cppref": "cpp/container/unordered_multimap/emplace", + "cppdoc": "cpp/library/container/unordered_multimap/emplace" + }, + { + "cppref": "cpp/container/unordered_multimap/empty", + "cppdoc": "cpp/library/container/unordered_multimap/empty" + }, + { + "cppref": "cpp/container/unordered_multimap/find", + "cppdoc": "cpp/library/container/unordered_multimap/find" + }, + { + "cppref": "cpp/container/unordered_multimap/equal_range", + "cppdoc": "cpp/library/container/unordered_multimap/equal_range" + }, + { + "cppref": "cpp/container/unordered_multimap/max_size", + "cppdoc": "cpp/library/container/unordered_multimap/max_size" + }, + { + "cppref": "cpp/container/unordered_multimap/unordered_multimap", + "cppdoc": "cpp/library/container/unordered_multimap/unordered_multimap" + }, + { + "cppref": "cpp/container/unordered_multimap/size", + "cppdoc": "cpp/library/container/unordered_multimap/size" + }, + { + "cppref": "cpp/container/unordered_multimap/swap2", + "cppdoc": "cpp/library/container/unordered_multimap/swap2" + }, + { + "cppref": "cpp/container/unordered_multimap/end", + "cppdoc": "cpp/library/container/unordered_multimap/end" + }, + { + "cppref": "cpp/container/unordered_multimap/load_factor", + "cppdoc": "cpp/library/container/unordered_multimap/load_factor" + }, + { + "cppref": "cpp/container/unordered_multimap/~unordered_multimap", + "cppdoc": "cpp/library/container/unordered_multimap/~unordered_multimap" + }, + { + "cppref": "cpp/container/unordered_multimap/rehash", + "cppdoc": "cpp/library/container/unordered_multimap/rehash" + }, + { + "cppref": "cpp/container/unordered_multimap/begin2", + "cppdoc": "cpp/library/container/unordered_multimap/begin2" + }, + { + "cppref": "cpp/container/unordered_multimap/begin", + "cppdoc": "cpp/library/container/unordered_multimap/begin" + }, + { + "cppref": "cpp/container/unordered_multimap/deduction_guides", + "cppdoc": "cpp/library/container/unordered_multimap/deduction_guides" + }, + { + "cppref": "cpp/container/unordered_multimap/max_bucket_count", + "cppdoc": "cpp/library/container/unordered_multimap/max_bucket_count" + }, + { + "cppref": "cpp/container/unordered_multimap/swap", + "cppdoc": "cpp/library/container/unordered_multimap/swap" + }, + { + "cppref": "cpp/container/unordered_multimap/reserve", + "cppdoc": "cpp/library/container/unordered_multimap/reserve" + }, + { + "cppref": "cpp/container/unordered_multimap/count", + "cppdoc": "cpp/library/container/unordered_multimap/count" + }, + { + "cppref": "cpp/container/unordered_multimap/erase", + "cppdoc": "cpp/library/container/unordered_multimap/erase" + }, + { + "cppref": "cpp/container/unordered_multimap/operator_cmp", + "cppdoc": "cpp/library/container/unordered_multimap/operator_cmp" + }, + { + "cppref": "cpp/container/unordered_multimap/get_allocator", + "cppdoc": "cpp/library/container/unordered_multimap/get_allocator" + }, + { + "cppref": "cpp/container/unordered_multimap/contains", + "cppdoc": "cpp/library/container/unordered_multimap/contains" + }, + { + "cppref": "cpp/container/unordered_multimap/merge", + "cppdoc": "cpp/library/container/unordered_multimap/merge" + }, + { + "cppref": "cpp/container/unordered_multimap/erase_if", + "cppdoc": "cpp/library/container/unordered_multimap/erase_if" + }, + { + "cppref": "cpp/container/unordered_multimap/insert_range", + "cppdoc": "cpp/library/container/unordered_multimap/insert_range" + }, + { + "cppref": "cpp/container/unordered_multimap/key_eq", + "cppdoc": "cpp/library/container/unordered_multimap/key_eq" + }, + { + "cppref": "cpp/container/unordered_multimap/bucket", + "cppdoc": "cpp/library/container/unordered_multimap/bucket" + }, + { + "cppref": "cpp/container/unordered_multimap/emplace_hint", + "cppdoc": "cpp/library/container/unordered_multimap/emplace_hint" + }, + { + "cppref": "cpp/container/unordered_multimap/hash_function", + "cppdoc": "cpp/library/container/unordered_multimap/hash_function" + }, + { + "cppref": "cpp/container/unordered_multimap/operator=", + "cppdoc": "cpp/library/container/unordered_multimap/operator=" + }, + { + "cppref": "cpp/container/unordered_multimap/max_load_factor", + "cppdoc": "cpp/library/container/unordered_multimap/max_load_factor" + }, + { + "cppref": "cpp/container/unordered_multimap/bucket_size", + "cppdoc": "cpp/library/container/unordered_multimap/bucket_size" + }, + { + "cppref": "cpp/container/unordered_multimap/clear", + "cppdoc": "cpp/library/container/unordered_multimap/clear" + }, + { + "cppref": "cpp/container/flat_map/operator_at", + "cppdoc": "cpp/library/container/flat_map/operator_at" + }, + { + "cppref": "cpp/container/flat_map/replace", + "cppdoc": "cpp/library/container/flat_map/replace" + }, + { + "cppref": "cpp/container/flat_map/at", + "cppdoc": "cpp/library/container/flat_map/at" + }, + { + "cppref": "cpp/container/flat_map/try_emplace", + "cppdoc": "cpp/library/container/flat_map/try_emplace" + }, + { + "cppref": "cpp/container/flat_map/extract", + "cppdoc": "cpp/library/container/flat_map/extract" + }, + { + "cppref": "cpp/container/flat_map/insert", + "cppdoc": "cpp/library/container/flat_map/insert" + }, + { + "cppref": "cpp/container/flat_map/emplace", + "cppdoc": "cpp/library/container/flat_map/emplace" + }, + { + "cppref": "cpp/container/flat_map/empty", + "cppdoc": "cpp/library/container/flat_map/empty" + }, + { + "cppref": "cpp/container/flat_map/find", + "cppdoc": "cpp/library/container/flat_map/find" + }, + { + "cppref": "cpp/container/flat_map/equal_range", + "cppdoc": "cpp/library/container/flat_map/equal_range" + }, + { + "cppref": "cpp/container/flat_map/max_size", + "cppdoc": "cpp/library/container/flat_map/max_size" + }, + { + "cppref": "cpp/container/flat_map/size", + "cppdoc": "cpp/library/container/flat_map/size" + }, + { + "cppref": "cpp/container/flat_map/swap2", + "cppdoc": "cpp/library/container/flat_map/swap2" + }, + { + "cppref": "cpp/container/flat_map/end", + "cppdoc": "cpp/library/container/flat_map/end" + }, + { + "cppref": "cpp/container/flat_map/value_compare", + "cppdoc": "cpp/library/container/flat_map/value_compare" + }, + { + "cppref": "cpp/container/flat_map/rend", + "cppdoc": "cpp/library/container/flat_map/rend" + }, + { + "cppref": "cpp/container/flat_map/begin", + "cppdoc": "cpp/library/container/flat_map/begin" + }, + { + "cppref": "cpp/container/flat_map/deduction_guides", + "cppdoc": "cpp/library/container/flat_map/deduction_guides" + }, + { + "cppref": "cpp/container/flat_map/value_comp", + "cppdoc": "cpp/library/container/flat_map/value_comp" + }, + { + "cppref": "cpp/container/flat_map/swap", + "cppdoc": "cpp/library/container/flat_map/swap" + }, + { + "cppref": "cpp/container/flat_map/upper_bound", + "cppdoc": "cpp/library/container/flat_map/upper_bound" + }, + { + "cppref": "cpp/container/flat_map/rbegin", + "cppdoc": "cpp/library/container/flat_map/rbegin" + }, + { + "cppref": "cpp/container/flat_map/lower_bound", + "cppdoc": "cpp/library/container/flat_map/lower_bound" + }, + { + "cppref": "cpp/container/flat_map/count", + "cppdoc": "cpp/library/container/flat_map/count" + }, + { + "cppref": "cpp/container/flat_map/erase", + "cppdoc": "cpp/library/container/flat_map/erase" + }, + { + "cppref": "cpp/container/flat_map/operator_cmp", + "cppdoc": "cpp/library/container/flat_map/operator_cmp" + }, + { + "cppref": "cpp/container/flat_map/contains", + "cppdoc": "cpp/library/container/flat_map/contains" + }, + { + "cppref": "cpp/container/flat_map/erase_if", + "cppdoc": "cpp/library/container/flat_map/erase_if" + }, + { + "cppref": "cpp/container/flat_map/insert_range", + "cppdoc": "cpp/library/container/flat_map/insert_range" + }, + { + "cppref": "cpp/container/flat_map/values", + "cppdoc": "cpp/library/container/flat_map/values" + }, + { + "cppref": "cpp/container/flat_map/emplace_hint", + "cppdoc": "cpp/library/container/flat_map/emplace_hint" + }, + { + "cppref": "cpp/container/flat_map/insert_or_assign", + "cppdoc": "cpp/library/container/flat_map/insert_or_assign" + }, + { + "cppref": "cpp/container/flat_map/key_comp", + "cppdoc": "cpp/library/container/flat_map/key_comp" + }, + { + "cppref": "cpp/container/flat_map/operator=", + "cppdoc": "cpp/library/container/flat_map/operator=" + }, + { + "cppref": "cpp/container/flat_map/keys", + "cppdoc": "cpp/library/container/flat_map/keys" + }, + { + "cppref": "cpp/container/flat_map/flat_map", + "cppdoc": "cpp/library/container/flat_map/flat_map" + }, + { + "cppref": "cpp/container/flat_map/clear", + "cppdoc": "cpp/library/container/flat_map/clear" + }, + { + "cppref": "cpp/container/flat_map/uses_allocator", + "cppdoc": "cpp/library/container/flat_map/uses_allocator" + }, + { + "cppref": "cpp/container/mdspan/extent", + "cppdoc": "cpp/library/container/mdspan/extent" + }, + { + "cppref": "cpp/container/mdspan/operator_at", + "cppdoc": "cpp/library/container/mdspan/operator_at" + }, + { + "cppref": "cpp/container/mdspan/mapping", + "cppdoc": "cpp/library/container/mdspan/mapping" + }, + { + "cppref": "cpp/container/mdspan/mdspan", + "cppdoc": "cpp/library/container/mdspan/mdspan" + }, + { + "cppref": "cpp/container/mdspan/extents_mfun", + "cppdoc": "cpp/library/container/mdspan/extents_mfun" + }, + { + "cppref": "cpp/container/mdspan/default_accessor", + "cppdoc": "cpp/library/container/mdspan/default_accessor" + }, + { + "cppref": "cpp/container/mdspan/empty", + "cppdoc": "cpp/library/container/mdspan/empty" + }, + { + "cppref": "cpp/container/mdspan/full_extent", + "cppdoc": "cpp/library/container/mdspan/full_extent" + }, + { + "cppref": "cpp/container/mdspan/stride", + "cppdoc": "cpp/library/container/mdspan/stride" + }, + { + "cppref": "cpp/container/mdspan/size", + "cppdoc": "cpp/library/container/mdspan/size" + }, + { + "cppref": "cpp/container/mdspan/layout_stride", + "cppdoc": "cpp/library/container/mdspan/layout_stride" + }, + { + "cppref": "cpp/container/mdspan/submdspan_mapping_result", + "cppdoc": "cpp/library/container/mdspan/submdspan_mapping_result" + }, + { + "cppref": "cpp/container/mdspan/swap2", + "cppdoc": "cpp/library/container/mdspan/swap2" + }, + { + "cppref": "cpp/container/mdspan/accessor", + "cppdoc": "cpp/library/container/mdspan/accessor" + }, + { + "cppref": "cpp/container/mdspan/layout_right_padded", + "cppdoc": "cpp/library/container/mdspan/layout_right_padded" + }, + { + "cppref": "cpp/container/mdspan/extents", + "cppdoc": "cpp/library/container/mdspan/extents" + }, + { + "cppref": "cpp/container/mdspan/layout_left", + "cppdoc": "cpp/library/container/mdspan/layout_left" + }, + { + "cppref": "cpp/container/mdspan/data_handle", + "cppdoc": "cpp/library/container/mdspan/data_handle" + }, + { + "cppref": "cpp/container/mdspan/deduction_guides", + "cppdoc": "cpp/library/container/mdspan/deduction_guides" + }, + { + "cppref": "cpp/container/mdspan/rank_dynamic", + "cppdoc": "cpp/library/container/mdspan/rank_dynamic" + }, + { + "cppref": "cpp/container/mdspan/layout_left_padded", + "cppdoc": "cpp/library/container/mdspan/layout_left_padded" + }, + { + "cppref": "cpp/container/mdspan/static_extent", + "cppdoc": "cpp/library/container/mdspan/static_extent" + }, + { + "cppref": "cpp/container/mdspan/mapping_traits", + "cppdoc": "cpp/library/container/mdspan/mapping_traits" + }, + { + "cppref": "cpp/container/mdspan/layout_right", + "cppdoc": "cpp/library/container/mdspan/layout_right" + }, + { + "cppref": "cpp/container/mdspan/operator=", + "cppdoc": "cpp/library/container/mdspan/operator=" + }, + { + "cppref": "cpp/container/mdspan/rank", + "cppdoc": "cpp/library/container/mdspan/rank" + }, + { + "cppref": "cpp/container/mdspan/strided_slice", + "cppdoc": "cpp/library/container/mdspan/strided_slice" + }, + { + "cppref": "cpp/container/mdspan/layout_right/mapping", + "cppdoc": "cpp/library/container/mdspan/layout_right/mapping" + }, + { + "cppref": "cpp/container/mdspan/layout_right/mapping/operator==", + "cppdoc": "cpp/library/container/mdspan/layout_right/mapping/operator==" + }, + { + "cppref": "cpp/container/mdspan/layout_right/mapping/stride", + "cppdoc": "cpp/library/container/mdspan/layout_right/mapping/stride" + }, + { + "cppref": "cpp/container/mdspan/layout_right/mapping/extents", + "cppdoc": "cpp/library/container/mdspan/layout_right/mapping/extents" + }, + { + "cppref": "cpp/container/mdspan/layout_right/mapping/required_span_size", + "cppdoc": "cpp/library/container/mdspan/layout_right/mapping/required_span_size" + }, + { + "cppref": "cpp/container/mdspan/layout_right/mapping/operator()", + "cppdoc": "cpp/library/container/mdspan/layout_right/mapping/operator()" + }, + { + "cppref": "cpp/container/mdspan/layout_right/mapping/mapping_traits", + "cppdoc": "cpp/library/container/mdspan/layout_right/mapping/mapping_traits" + }, + { + "cppref": "cpp/container/mdspan/layout_stride/mapping", + "cppdoc": "cpp/library/container/mdspan/layout_stride/mapping" + }, + { + "cppref": "cpp/container/mdspan/layout_stride/mapping/operator==", + "cppdoc": "cpp/library/container/mdspan/layout_stride/mapping/operator==" + }, + { + "cppref": "cpp/container/mdspan/layout_stride/mapping/stride", + "cppdoc": "cpp/library/container/mdspan/layout_stride/mapping/stride" + }, + { + "cppref": "cpp/container/mdspan/layout_stride/mapping/extents", + "cppdoc": "cpp/library/container/mdspan/layout_stride/mapping/extents" + }, + { + "cppref": "cpp/container/mdspan/layout_stride/mapping/required_span_size", + "cppdoc": "cpp/library/container/mdspan/layout_stride/mapping/required_span_size" + }, + { + "cppref": "cpp/container/mdspan/layout_stride/mapping/strides", + "cppdoc": "cpp/library/container/mdspan/layout_stride/mapping/strides" + }, + { + "cppref": "cpp/container/mdspan/layout_stride/mapping/operator()", + "cppdoc": "cpp/library/container/mdspan/layout_stride/mapping/operator()" + }, + { + "cppref": "cpp/container/mdspan/layout_stride/mapping/mapping_traits", + "cppdoc": "cpp/library/container/mdspan/layout_stride/mapping/mapping_traits" + }, + { + "cppref": "cpp/container/mdspan/extents/extent", + "cppdoc": "cpp/library/container/mdspan/extents/extent" + }, + { + "cppref": "cpp/container/mdspan/extents/operator==", + "cppdoc": "cpp/library/container/mdspan/extents/operator==" + }, + { + "cppref": "cpp/container/mdspan/extents/dynamic-index", + "cppdoc": "cpp/library/container/mdspan/extents/dynamic-index" + }, + { + "cppref": "cpp/container/mdspan/extents/index-cast", + "cppdoc": "cpp/library/container/mdspan/extents/index-cast" + }, + { + "cppref": "cpp/container/mdspan/extents/extents", + "cppdoc": "cpp/library/container/mdspan/extents/extents" + }, + { + "cppref": "cpp/container/mdspan/extents/rev-prod-of-extents", + "cppdoc": "cpp/library/container/mdspan/extents/rev-prod-of-extents" + }, + { + "cppref": "cpp/container/mdspan/extents/deduction_guides", + "cppdoc": "cpp/library/container/mdspan/extents/deduction_guides" + }, + { + "cppref": "cpp/container/mdspan/extents/fwd-prod-of-extents", + "cppdoc": "cpp/library/container/mdspan/extents/fwd-prod-of-extents" + }, + { + "cppref": "cpp/container/mdspan/extents/rank_dynamic", + "cppdoc": "cpp/library/container/mdspan/extents/rank_dynamic" + }, + { + "cppref": "cpp/container/mdspan/extents/static_extent", + "cppdoc": "cpp/library/container/mdspan/extents/static_extent" + }, + { + "cppref": "cpp/container/mdspan/extents/dynamic-index-inv", + "cppdoc": "cpp/library/container/mdspan/extents/dynamic-index-inv" + }, + { + "cppref": "cpp/container/mdspan/extents/rank", + "cppdoc": "cpp/library/container/mdspan/extents/rank" + }, + { + "cppref": "cpp/container/mdspan/layout_left/mapping", + "cppdoc": "cpp/library/container/mdspan/layout_left/mapping" + }, + { + "cppref": "cpp/container/mdspan/layout_left/mapping/operator==", + "cppdoc": "cpp/library/container/mdspan/layout_left/mapping/operator==" + }, + { + "cppref": "cpp/container/mdspan/layout_left/mapping/stride", + "cppdoc": "cpp/library/container/mdspan/layout_left/mapping/stride" + }, + { + "cppref": "cpp/container/mdspan/layout_left/mapping/extents", + "cppdoc": "cpp/library/container/mdspan/layout_left/mapping/extents" + }, + { + "cppref": "cpp/container/mdspan/layout_left/mapping/required_span_size", + "cppdoc": "cpp/library/container/mdspan/layout_left/mapping/required_span_size" + }, + { + "cppref": "cpp/container/mdspan/layout_left/mapping/operator()", + "cppdoc": "cpp/library/container/mdspan/layout_left/mapping/operator()" + }, + { + "cppref": "cpp/container/mdspan/layout_left/mapping/mapping_traits", + "cppdoc": "cpp/library/container/mdspan/layout_left/mapping/mapping_traits" + }, + { + "cppref": "cpp/container/set/extract", + "cppdoc": "cpp/library/container/set/extract" + }, + { + "cppref": "cpp/container/set/insert", + "cppdoc": "cpp/library/container/set/insert" + }, + { + "cppref": "cpp/container/set/emplace", + "cppdoc": "cpp/library/container/set/emplace" + }, + { + "cppref": "cpp/container/set/empty", + "cppdoc": "cpp/library/container/set/empty" + }, + { + "cppref": "cpp/container/set/find", + "cppdoc": "cpp/library/container/set/find" + }, + { + "cppref": "cpp/container/set/equal_range", + "cppdoc": "cpp/library/container/set/equal_range" + }, + { + "cppref": "cpp/container/set/max_size", + "cppdoc": "cpp/library/container/set/max_size" + }, + { + "cppref": "cpp/container/set/size", + "cppdoc": "cpp/library/container/set/size" + }, + { + "cppref": "cpp/container/set/swap2", + "cppdoc": "cpp/library/container/set/swap2" + }, + { + "cppref": "cpp/container/set/end", + "cppdoc": "cpp/library/container/set/end" + }, + { + "cppref": "cpp/container/set/rend", + "cppdoc": "cpp/library/container/set/rend" + }, + { + "cppref": "cpp/container/set/~set", + "cppdoc": "cpp/library/container/set/~set" + }, + { + "cppref": "cpp/container/set/begin", + "cppdoc": "cpp/library/container/set/begin" + }, + { + "cppref": "cpp/container/set/deduction_guides", + "cppdoc": "cpp/library/container/set/deduction_guides" + }, + { + "cppref": "cpp/container/set/value_comp", + "cppdoc": "cpp/library/container/set/value_comp" + }, + { + "cppref": "cpp/container/set/swap", + "cppdoc": "cpp/library/container/set/swap" + }, + { + "cppref": "cpp/container/set/upper_bound", + "cppdoc": "cpp/library/container/set/upper_bound" + }, + { + "cppref": "cpp/container/set/rbegin", + "cppdoc": "cpp/library/container/set/rbegin" + }, + { + "cppref": "cpp/container/set/lower_bound", + "cppdoc": "cpp/library/container/set/lower_bound" + }, + { + "cppref": "cpp/container/set/count", + "cppdoc": "cpp/library/container/set/count" + }, + { + "cppref": "cpp/container/set/erase", + "cppdoc": "cpp/library/container/set/erase" + }, + { + "cppref": "cpp/container/set/operator_cmp", + "cppdoc": "cpp/library/container/set/operator_cmp" + }, + { + "cppref": "cpp/container/set/get_allocator", + "cppdoc": "cpp/library/container/set/get_allocator" + }, + { + "cppref": "cpp/container/set/contains", + "cppdoc": "cpp/library/container/set/contains" + }, + { + "cppref": "cpp/container/set/merge", + "cppdoc": "cpp/library/container/set/merge" + }, + { + "cppref": "cpp/container/set/erase_if", + "cppdoc": "cpp/library/container/set/erase_if" + }, + { + "cppref": "cpp/container/set/insert_range", + "cppdoc": "cpp/library/container/set/insert_range" + }, + { + "cppref": "cpp/container/set/emplace_hint", + "cppdoc": "cpp/library/container/set/emplace_hint" + }, + { + "cppref": "cpp/container/set/key_comp", + "cppdoc": "cpp/library/container/set/key_comp" + }, + { + "cppref": "cpp/container/set/operator=", + "cppdoc": "cpp/library/container/set/operator=" + }, + { + "cppref": "cpp/container/set/set", + "cppdoc": "cpp/library/container/set/set" + }, + { + "cppref": "cpp/container/set/clear", + "cppdoc": "cpp/library/container/set/clear" + }, + { + "cppref": "cpp/container/array/operator_at", + "cppdoc": "cpp/library/container/array/operator_at" + }, + { + "cppref": "cpp/container/array/at", + "cppdoc": "cpp/library/container/array/at" + }, + { + "cppref": "cpp/container/array/back", + "cppdoc": "cpp/library/container/array/back" + }, + { + "cppref": "cpp/container/array/empty", + "cppdoc": "cpp/library/container/array/empty" + }, + { + "cppref": "cpp/container/array/max_size", + "cppdoc": "cpp/library/container/array/max_size" + }, + { + "cppref": "cpp/container/array/size", + "cppdoc": "cpp/library/container/array/size" + }, + { + "cppref": "cpp/container/array/swap2", + "cppdoc": "cpp/library/container/array/swap2" + }, + { + "cppref": "cpp/container/array/end", + "cppdoc": "cpp/library/container/array/end" + }, + { + "cppref": "cpp/container/array/rend", + "cppdoc": "cpp/library/container/array/rend" + }, + { + "cppref": "cpp/container/array/to_array", + "cppdoc": "cpp/library/container/array/to_array" + }, + { + "cppref": "cpp/container/array/begin", + "cppdoc": "cpp/library/container/array/begin" + }, + { + "cppref": "cpp/container/array/deduction_guides", + "cppdoc": "cpp/library/container/array/deduction_guides" + }, + { + "cppref": "cpp/container/array/swap", + "cppdoc": "cpp/library/container/array/swap" + }, + { + "cppref": "cpp/container/array/front", + "cppdoc": "cpp/library/container/array/front" + }, + { + "cppref": "cpp/container/array/rbegin", + "cppdoc": "cpp/library/container/array/rbegin" + }, + { + "cppref": "cpp/container/array/tuple_size", + "cppdoc": "cpp/library/container/array/tuple_size" + }, + { + "cppref": "cpp/container/array/get", + "cppdoc": "cpp/library/container/array/get" + }, + { + "cppref": "cpp/container/array/operator_cmp", + "cppdoc": "cpp/library/container/array/operator_cmp" + }, + { + "cppref": "cpp/container/array/fill", + "cppdoc": "cpp/library/container/array/fill" + }, + { + "cppref": "cpp/container/array/tuple_element", + "cppdoc": "cpp/library/container/array/tuple_element" + }, + { + "cppref": "cpp/container/array/data", + "cppdoc": "cpp/library/container/array/data" + }, + { + "cppref": "cpp/container/forward_list/remove", + "cppdoc": "cpp/library/container/forward_list/remove" + }, + { + "cppref": "cpp/container/forward_list/assign", + "cppdoc": "cpp/library/container/forward_list/assign" + }, + { + "cppref": "cpp/container/forward_list/empty", + "cppdoc": "cpp/library/container/forward_list/empty" + }, + { + "cppref": "cpp/container/forward_list/erase_after", + "cppdoc": "cpp/library/container/forward_list/erase_after" + }, + { + "cppref": "cpp/container/forward_list/max_size", + "cppdoc": "cpp/library/container/forward_list/max_size" + }, + { + "cppref": "cpp/container/forward_list/emplace_after", + "cppdoc": "cpp/library/container/forward_list/emplace_after" + }, + { + "cppref": "cpp/container/forward_list/~forward_list", + "cppdoc": "cpp/library/container/forward_list/~forward_list" + }, + { + "cppref": "cpp/container/forward_list/insert_after", + "cppdoc": "cpp/library/container/forward_list/insert_after" + }, + { + "cppref": "cpp/container/forward_list/emplace_front", + "cppdoc": "cpp/library/container/forward_list/emplace_front" + }, + { + "cppref": "cpp/container/forward_list/swap2", + "cppdoc": "cpp/library/container/forward_list/swap2" + }, + { + "cppref": "cpp/container/forward_list/end", + "cppdoc": "cpp/library/container/forward_list/end" + }, + { + "cppref": "cpp/container/forward_list/begin", + "cppdoc": "cpp/library/container/forward_list/begin" + }, + { + "cppref": "cpp/container/forward_list/deduction_guides", + "cppdoc": "cpp/library/container/forward_list/deduction_guides" + }, + { + "cppref": "cpp/container/forward_list/assign_range", + "cppdoc": "cpp/library/container/forward_list/assign_range" + }, + { + "cppref": "cpp/container/forward_list/swap", + "cppdoc": "cpp/library/container/forward_list/swap" + }, + { + "cppref": "cpp/container/forward_list/front", + "cppdoc": "cpp/library/container/forward_list/front" + }, + { + "cppref": "cpp/container/forward_list/resize", + "cppdoc": "cpp/library/container/forward_list/resize" + }, + { + "cppref": "cpp/container/forward_list/pop_front", + "cppdoc": "cpp/library/container/forward_list/pop_front" + }, + { + "cppref": "cpp/container/forward_list/operator_cmp", + "cppdoc": "cpp/library/container/forward_list/operator_cmp" + }, + { + "cppref": "cpp/container/forward_list/get_allocator", + "cppdoc": "cpp/library/container/forward_list/get_allocator" + }, + { + "cppref": "cpp/container/forward_list/merge", + "cppdoc": "cpp/library/container/forward_list/merge" + }, + { + "cppref": "cpp/container/forward_list/unique", + "cppdoc": "cpp/library/container/forward_list/unique" + }, + { + "cppref": "cpp/container/forward_list/splice_after", + "cppdoc": "cpp/library/container/forward_list/splice_after" + }, + { + "cppref": "cpp/container/forward_list/erase2", + "cppdoc": "cpp/library/container/forward_list/erase2" + }, + { + "cppref": "cpp/container/forward_list/sort", + "cppdoc": "cpp/library/container/forward_list/sort" + }, + { + "cppref": "cpp/container/forward_list/forward_list", + "cppdoc": "cpp/library/container/forward_list/forward_list" + }, + { + "cppref": "cpp/container/forward_list/push_front", + "cppdoc": "cpp/library/container/forward_list/push_front" + }, + { + "cppref": "cpp/container/forward_list/insert_range_after", + "cppdoc": "cpp/library/container/forward_list/insert_range_after" + }, + { + "cppref": "cpp/container/forward_list/operator=", + "cppdoc": "cpp/library/container/forward_list/operator=" + }, + { + "cppref": "cpp/container/forward_list/before_begin", + "cppdoc": "cpp/library/container/forward_list/before_begin" + }, + { + "cppref": "cpp/container/forward_list/prepend_range", + "cppdoc": "cpp/library/container/forward_list/prepend_range" + }, + { + "cppref": "cpp/container/forward_list/clear", + "cppdoc": "cpp/library/container/forward_list/clear" + }, + { + "cppref": "cpp/container/forward_list/reverse", + "cppdoc": "cpp/library/container/forward_list/reverse" + }, + { + "cppref": "cpp/container/map/operator_at", + "cppdoc": "cpp/library/container/map/operator_at" + }, + { + "cppref": "cpp/container/map/at", + "cppdoc": "cpp/library/container/map/at" + }, + { + "cppref": "cpp/container/map/try_emplace", + "cppdoc": "cpp/library/container/map/try_emplace" + }, + { + "cppref": "cpp/container/map/extract", + "cppdoc": "cpp/library/container/map/extract" + }, + { + "cppref": "cpp/container/map/insert", + "cppdoc": "cpp/library/container/map/insert" + }, + { + "cppref": "cpp/container/map/emplace", + "cppdoc": "cpp/library/container/map/emplace" + }, + { + "cppref": "cpp/container/map/empty", + "cppdoc": "cpp/library/container/map/empty" + }, + { + "cppref": "cpp/container/map/find", + "cppdoc": "cpp/library/container/map/find" + }, + { + "cppref": "cpp/container/map/equal_range", + "cppdoc": "cpp/library/container/map/equal_range" + }, + { + "cppref": "cpp/container/map/max_size", + "cppdoc": "cpp/library/container/map/max_size" + }, + { + "cppref": "cpp/container/map/size", + "cppdoc": "cpp/library/container/map/size" + }, + { + "cppref": "cpp/container/map/swap2", + "cppdoc": "cpp/library/container/map/swap2" + }, + { + "cppref": "cpp/container/map/end", + "cppdoc": "cpp/library/container/map/end" + }, + { + "cppref": "cpp/container/map/value_compare", + "cppdoc": "cpp/library/container/map/value_compare" + }, + { + "cppref": "cpp/container/map/rend", + "cppdoc": "cpp/library/container/map/rend" + }, + { + "cppref": "cpp/container/map/begin", + "cppdoc": "cpp/library/container/map/begin" + }, + { + "cppref": "cpp/container/map/deduction_guides", + "cppdoc": "cpp/library/container/map/deduction_guides" + }, + { + "cppref": "cpp/container/map/value_comp", + "cppdoc": "cpp/library/container/map/value_comp" + }, + { + "cppref": "cpp/container/map/swap", + "cppdoc": "cpp/library/container/map/swap" + }, + { + "cppref": "cpp/container/map/upper_bound", + "cppdoc": "cpp/library/container/map/upper_bound" + }, + { + "cppref": "cpp/container/map/rbegin", + "cppdoc": "cpp/library/container/map/rbegin" + }, + { + "cppref": "cpp/container/map/lower_bound", + "cppdoc": "cpp/library/container/map/lower_bound" + }, + { + "cppref": "cpp/container/map/count", + "cppdoc": "cpp/library/container/map/count" + }, + { + "cppref": "cpp/container/map/erase", + "cppdoc": "cpp/library/container/map/erase" + }, + { + "cppref": "cpp/container/map/operator_cmp", + "cppdoc": "cpp/library/container/map/operator_cmp" + }, + { + "cppref": "cpp/container/map/get_allocator", + "cppdoc": "cpp/library/container/map/get_allocator" + }, + { + "cppref": "cpp/container/map/contains", + "cppdoc": "cpp/library/container/map/contains" + }, + { + "cppref": "cpp/container/map/merge", + "cppdoc": "cpp/library/container/map/merge" + }, + { + "cppref": "cpp/container/map/erase_if", + "cppdoc": "cpp/library/container/map/erase_if" + }, + { + "cppref": "cpp/container/map/~map", + "cppdoc": "cpp/library/container/map/~map" + }, + { + "cppref": "cpp/container/map/insert_range", + "cppdoc": "cpp/library/container/map/insert_range" + }, + { + "cppref": "cpp/container/map/map", + "cppdoc": "cpp/library/container/map/map" + }, + { + "cppref": "cpp/container/map/emplace_hint", + "cppdoc": "cpp/library/container/map/emplace_hint" + }, + { + "cppref": "cpp/container/map/insert_or_assign", + "cppdoc": "cpp/library/container/map/insert_or_assign" + }, + { + "cppref": "cpp/container/map/key_comp", + "cppdoc": "cpp/library/container/map/key_comp" + }, + { + "cppref": "cpp/container/map/operator=", + "cppdoc": "cpp/library/container/map/operator=" + }, + { + "cppref": "cpp/container/map/clear", + "cppdoc": "cpp/library/container/map/clear" + }, + { + "cppref": "cpp/container/inplace_vector/operator_at", + "cppdoc": "cpp/library/container/inplace_vector/operator_at" + }, + { + "cppref": "cpp/container/inplace_vector/at", + "cppdoc": "cpp/library/container/inplace_vector/at" + }, + { + "cppref": "cpp/container/inplace_vector/back", + "cppdoc": "cpp/library/container/inplace_vector/back" + }, + { + "cppref": "cpp/container/inplace_vector/assign", + "cppdoc": "cpp/library/container/inplace_vector/assign" + }, + { + "cppref": "cpp/container/inplace_vector/emplace_back", + "cppdoc": "cpp/library/container/inplace_vector/emplace_back" + }, + { + "cppref": "cpp/container/inplace_vector/unchecked_emplace_back", + "cppdoc": "cpp/library/container/inplace_vector/unchecked_emplace_back" + }, + { + "cppref": "cpp/container/inplace_vector/insert", + "cppdoc": "cpp/library/container/inplace_vector/insert" + }, + { + "cppref": "cpp/container/inplace_vector/emplace", + "cppdoc": "cpp/library/container/inplace_vector/emplace" + }, + { + "cppref": "cpp/container/inplace_vector/empty", + "cppdoc": "cpp/library/container/inplace_vector/empty" + }, + { + "cppref": "cpp/container/inplace_vector/max_size", + "cppdoc": "cpp/library/container/inplace_vector/max_size" + }, + { + "cppref": "cpp/container/inplace_vector/size", + "cppdoc": "cpp/library/container/inplace_vector/size" + }, + { + "cppref": "cpp/container/inplace_vector/try_push_back", + "cppdoc": "cpp/library/container/inplace_vector/try_push_back" + }, + { + "cppref": "cpp/container/inplace_vector/swap2", + "cppdoc": "cpp/library/container/inplace_vector/swap2" + }, + { + "cppref": "cpp/container/inplace_vector/try_emplace_back", + "cppdoc": "cpp/library/container/inplace_vector/try_emplace_back" + }, + { + "cppref": "cpp/container/inplace_vector/end", + "cppdoc": "cpp/library/container/inplace_vector/end" + }, + { + "cppref": "cpp/container/inplace_vector/rend", + "cppdoc": "cpp/library/container/inplace_vector/rend" + }, + { + "cppref": "cpp/container/inplace_vector/begin", + "cppdoc": "cpp/library/container/inplace_vector/begin" + }, + { + "cppref": "cpp/container/inplace_vector/pop_back", + "cppdoc": "cpp/library/container/inplace_vector/pop_back" + }, + { + "cppref": "cpp/container/inplace_vector/inplace_vector", + "cppdoc": "cpp/library/container/inplace_vector/inplace_vector" + }, + { + "cppref": "cpp/container/inplace_vector/assign_range", + "cppdoc": "cpp/library/container/inplace_vector/assign_range" + }, + { + "cppref": "cpp/container/inplace_vector/swap", + "cppdoc": "cpp/library/container/inplace_vector/swap" + }, + { + "cppref": "cpp/container/inplace_vector/front", + "cppdoc": "cpp/library/container/inplace_vector/front" + }, + { + "cppref": "cpp/container/inplace_vector/~inplace_vector", + "cppdoc": "cpp/library/container/inplace_vector/~inplace_vector" + }, + { + "cppref": "cpp/container/inplace_vector/resize", + "cppdoc": "cpp/library/container/inplace_vector/resize" + }, + { + "cppref": "cpp/container/inplace_vector/rbegin", + "cppdoc": "cpp/library/container/inplace_vector/rbegin" + }, + { + "cppref": "cpp/container/inplace_vector/reserve", + "cppdoc": "cpp/library/container/inplace_vector/reserve" + }, + { + "cppref": "cpp/container/inplace_vector/erase", + "cppdoc": "cpp/library/container/inplace_vector/erase" + }, + { + "cppref": "cpp/container/inplace_vector/operator_cmp", + "cppdoc": "cpp/library/container/inplace_vector/operator_cmp" + }, + { + "cppref": "cpp/container/inplace_vector/insert_range", + "cppdoc": "cpp/library/container/inplace_vector/insert_range" + }, + { + "cppref": "cpp/container/inplace_vector/erase2", + "cppdoc": "cpp/library/container/inplace_vector/erase2" + }, + { + "cppref": "cpp/container/inplace_vector/unchecked_push_back", + "cppdoc": "cpp/library/container/inplace_vector/unchecked_push_back" + }, + { + "cppref": "cpp/container/inplace_vector/capacity", + "cppdoc": "cpp/library/container/inplace_vector/capacity" + }, + { + "cppref": "cpp/container/inplace_vector/operator=", + "cppdoc": "cpp/library/container/inplace_vector/operator=" + }, + { + "cppref": "cpp/container/inplace_vector/data", + "cppdoc": "cpp/library/container/inplace_vector/data" + }, + { + "cppref": "cpp/container/inplace_vector/push_back", + "cppdoc": "cpp/library/container/inplace_vector/push_back" + }, + { + "cppref": "cpp/container/inplace_vector/shrink_to_fit", + "cppdoc": "cpp/library/container/inplace_vector/shrink_to_fit" + }, + { + "cppref": "cpp/container/inplace_vector/try_append_range", + "cppdoc": "cpp/library/container/inplace_vector/try_append_range" + }, + { + "cppref": "cpp/container/inplace_vector/append_range", + "cppdoc": "cpp/library/container/inplace_vector/append_range" + }, + { + "cppref": "cpp/container/inplace_vector/clear", + "cppdoc": "cpp/library/container/inplace_vector/clear" + }, + { + "cppref": "cpp/container/multiset/extract", + "cppdoc": "cpp/library/container/multiset/extract" + }, + { + "cppref": "cpp/container/multiset/insert", + "cppdoc": "cpp/library/container/multiset/insert" + }, + { + "cppref": "cpp/container/multiset/emplace", + "cppdoc": "cpp/library/container/multiset/emplace" + }, + { + "cppref": "cpp/container/multiset/empty", + "cppdoc": "cpp/library/container/multiset/empty" + }, + { + "cppref": "cpp/container/multiset/find", + "cppdoc": "cpp/library/container/multiset/find" + }, + { + "cppref": "cpp/container/multiset/equal_range", + "cppdoc": "cpp/library/container/multiset/equal_range" + }, + { + "cppref": "cpp/container/multiset/max_size", + "cppdoc": "cpp/library/container/multiset/max_size" + }, + { + "cppref": "cpp/container/multiset/size", + "cppdoc": "cpp/library/container/multiset/size" + }, + { + "cppref": "cpp/container/multiset/swap2", + "cppdoc": "cpp/library/container/multiset/swap2" + }, + { + "cppref": "cpp/container/multiset/end", + "cppdoc": "cpp/library/container/multiset/end" + }, + { + "cppref": "cpp/container/multiset/rend", + "cppdoc": "cpp/library/container/multiset/rend" + }, + { + "cppref": "cpp/container/multiset/begin", + "cppdoc": "cpp/library/container/multiset/begin" + }, + { + "cppref": "cpp/container/multiset/deduction_guides", + "cppdoc": "cpp/library/container/multiset/deduction_guides" + }, + { + "cppref": "cpp/container/multiset/multiset", + "cppdoc": "cpp/library/container/multiset/multiset" + }, + { + "cppref": "cpp/container/multiset/value_comp", + "cppdoc": "cpp/library/container/multiset/value_comp" + }, + { + "cppref": "cpp/container/multiset/swap", + "cppdoc": "cpp/library/container/multiset/swap" + }, + { + "cppref": "cpp/container/multiset/upper_bound", + "cppdoc": "cpp/library/container/multiset/upper_bound" + }, + { + "cppref": "cpp/container/multiset/rbegin", + "cppdoc": "cpp/library/container/multiset/rbegin" + }, + { + "cppref": "cpp/container/multiset/lower_bound", + "cppdoc": "cpp/library/container/multiset/lower_bound" + }, + { + "cppref": "cpp/container/multiset/count", + "cppdoc": "cpp/library/container/multiset/count" + }, + { + "cppref": "cpp/container/multiset/erase", + "cppdoc": "cpp/library/container/multiset/erase" + }, + { + "cppref": "cpp/container/multiset/operator_cmp", + "cppdoc": "cpp/library/container/multiset/operator_cmp" + }, + { + "cppref": "cpp/container/multiset/get_allocator", + "cppdoc": "cpp/library/container/multiset/get_allocator" + }, + { + "cppref": "cpp/container/multiset/contains", + "cppdoc": "cpp/library/container/multiset/contains" + }, + { + "cppref": "cpp/container/multiset/merge", + "cppdoc": "cpp/library/container/multiset/merge" + }, + { + "cppref": "cpp/container/multiset/erase_if", + "cppdoc": "cpp/library/container/multiset/erase_if" + }, + { + "cppref": "cpp/container/multiset/insert_range", + "cppdoc": "cpp/library/container/multiset/insert_range" + }, + { + "cppref": "cpp/container/multiset/emplace_hint", + "cppdoc": "cpp/library/container/multiset/emplace_hint" + }, + { + "cppref": "cpp/container/multiset/key_comp", + "cppdoc": "cpp/library/container/multiset/key_comp" + }, + { + "cppref": "cpp/container/multiset/operator=", + "cppdoc": "cpp/library/container/multiset/operator=" + }, + { + "cppref": "cpp/container/multiset/~multiset", + "cppdoc": "cpp/library/container/multiset/~multiset" + }, + { + "cppref": "cpp/container/multiset/clear", + "cppdoc": "cpp/library/container/multiset/clear" + }, + { + "cppref": "cpp/container/queue/back", + "cppdoc": "cpp/library/container/queue/back" + }, + { + "cppref": "cpp/container/queue/push", + "cppdoc": "cpp/library/container/queue/push" + }, + { + "cppref": "cpp/container/queue/emplace", + "cppdoc": "cpp/library/container/queue/emplace" + }, + { + "cppref": "cpp/container/queue/empty", + "cppdoc": "cpp/library/container/queue/empty" + }, + { + "cppref": "cpp/container/queue/size", + "cppdoc": "cpp/library/container/queue/size" + }, + { + "cppref": "cpp/container/queue/swap2", + "cppdoc": "cpp/library/container/queue/swap2" + }, + { + "cppref": "cpp/container/queue/formatter", + "cppdoc": "cpp/library/container/queue/formatter" + }, + { + "cppref": "cpp/container/queue/deduction_guides", + "cppdoc": "cpp/library/container/queue/deduction_guides" + }, + { + "cppref": "cpp/container/queue/swap", + "cppdoc": "cpp/library/container/queue/swap" + }, + { + "cppref": "cpp/container/queue/queue", + "cppdoc": "cpp/library/container/queue/queue" + }, + { + "cppref": "cpp/container/queue/front", + "cppdoc": "cpp/library/container/queue/front" + }, + { + "cppref": "cpp/container/queue/push_range", + "cppdoc": "cpp/library/container/queue/push_range" + }, + { + "cppref": "cpp/container/queue/operator_cmp", + "cppdoc": "cpp/library/container/queue/operator_cmp" + }, + { + "cppref": "cpp/container/queue/operator=", + "cppdoc": "cpp/library/container/queue/operator=" + }, + { + "cppref": "cpp/container/queue/pop", + "cppdoc": "cpp/library/container/queue/pop" + }, + { + "cppref": "cpp/container/queue/~queue", + "cppdoc": "cpp/library/container/queue/~queue" + }, + { + "cppref": "cpp/container/queue/uses_allocator", + "cppdoc": "cpp/library/container/queue/uses_allocator" + }, + { + "cppref": "cpp/container/vector_bool/hash", + "cppdoc": "cpp/library/container/vector_bool/hash" + }, + { + "cppref": "cpp/container/vector_bool/swap", + "cppdoc": "cpp/library/container/vector_bool/swap" + }, + { + "cppref": "cpp/container/vector_bool/flip", + "cppdoc": "cpp/library/container/vector_bool/flip" + }, + { + "cppref": "cpp/container/vector_bool/reference", + "cppdoc": "cpp/library/container/vector_bool/reference" + }, + { + "cppref": "cpp/container/span/span", + "cppdoc": "cpp/library/container/span/span" + }, + { + "cppref": "cpp/container/span/operator_at", + "cppdoc": "cpp/library/container/span/operator_at" + }, + { + "cppref": "cpp/container/span/at", + "cppdoc": "cpp/library/container/span/at" + }, + { + "cppref": "cpp/container/span/back", + "cppdoc": "cpp/library/container/span/back" + }, + { + "cppref": "cpp/container/span/first", + "cppdoc": "cpp/library/container/span/first" + }, + { + "cppref": "cpp/container/span/empty", + "cppdoc": "cpp/library/container/span/empty" + }, + { + "cppref": "cpp/container/span/size", + "cppdoc": "cpp/library/container/span/size" + }, + { + "cppref": "cpp/container/span/size_bytes", + "cppdoc": "cpp/library/container/span/size_bytes" + }, + { + "cppref": "cpp/container/span/end", + "cppdoc": "cpp/library/container/span/end" + }, + { + "cppref": "cpp/container/span/rend", + "cppdoc": "cpp/library/container/span/rend" + }, + { + "cppref": "cpp/container/span/begin", + "cppdoc": "cpp/library/container/span/begin" + }, + { + "cppref": "cpp/container/span/deduction_guides", + "cppdoc": "cpp/library/container/span/deduction_guides" + }, + { + "cppref": "cpp/container/span/front", + "cppdoc": "cpp/library/container/span/front" + }, + { + "cppref": "cpp/container/span/rbegin", + "cppdoc": "cpp/library/container/span/rbegin" + }, + { + "cppref": "cpp/container/span/last", + "cppdoc": "cpp/library/container/span/last" + }, + { + "cppref": "cpp/container/span/as_bytes", + "cppdoc": "cpp/library/container/span/as_bytes" + }, + { + "cppref": "cpp/container/span/subspan", + "cppdoc": "cpp/library/container/span/subspan" + }, + { + "cppref": "cpp/container/span/dynamic_extent", + "cppdoc": "cpp/library/container/span/dynamic_extent" + }, + { + "cppref": "cpp/container/span/operator=", + "cppdoc": "cpp/library/container/span/operator=" + }, + { + "cppref": "cpp/container/span/data", + "cppdoc": "cpp/library/container/span/data" + }, + { + "cppref": "cpp/container/deque/operator_at", + "cppdoc": "cpp/library/container/deque/operator_at" + }, + { + "cppref": "cpp/container/deque/at", + "cppdoc": "cpp/library/container/deque/at" + }, + { + "cppref": "cpp/container/deque/back", + "cppdoc": "cpp/library/container/deque/back" + }, + { + "cppref": "cpp/container/deque/assign", + "cppdoc": "cpp/library/container/deque/assign" + }, + { + "cppref": "cpp/container/deque/emplace_back", + "cppdoc": "cpp/library/container/deque/emplace_back" + }, + { + "cppref": "cpp/container/deque/insert", + "cppdoc": "cpp/library/container/deque/insert" + }, + { + "cppref": "cpp/container/deque/emplace", + "cppdoc": "cpp/library/container/deque/emplace" + }, + { + "cppref": "cpp/container/deque/empty", + "cppdoc": "cpp/library/container/deque/empty" + }, + { + "cppref": "cpp/container/deque/max_size", + "cppdoc": "cpp/library/container/deque/max_size" + }, + { + "cppref": "cpp/container/deque/size", + "cppdoc": "cpp/library/container/deque/size" + }, + { + "cppref": "cpp/container/deque/emplace_front", + "cppdoc": "cpp/library/container/deque/emplace_front" + }, + { + "cppref": "cpp/container/deque/swap2", + "cppdoc": "cpp/library/container/deque/swap2" + }, + { + "cppref": "cpp/container/deque/end", + "cppdoc": "cpp/library/container/deque/end" + }, + { + "cppref": "cpp/container/deque/rend", + "cppdoc": "cpp/library/container/deque/rend" + }, + { + "cppref": "cpp/container/deque/begin", + "cppdoc": "cpp/library/container/deque/begin" + }, + { + "cppref": "cpp/container/deque/~deque", + "cppdoc": "cpp/library/container/deque/~deque" + }, + { + "cppref": "cpp/container/deque/deduction_guides", + "cppdoc": "cpp/library/container/deque/deduction_guides" + }, + { + "cppref": "cpp/container/deque/pop_back", + "cppdoc": "cpp/library/container/deque/pop_back" + }, + { + "cppref": "cpp/container/deque/assign_range", + "cppdoc": "cpp/library/container/deque/assign_range" + }, + { + "cppref": "cpp/container/deque/swap", + "cppdoc": "cpp/library/container/deque/swap" + }, + { + "cppref": "cpp/container/deque/front", + "cppdoc": "cpp/library/container/deque/front" + }, + { + "cppref": "cpp/container/deque/resize", + "cppdoc": "cpp/library/container/deque/resize" + }, + { + "cppref": "cpp/container/deque/rbegin", + "cppdoc": "cpp/library/container/deque/rbegin" + }, + { + "cppref": "cpp/container/deque/erase", + "cppdoc": "cpp/library/container/deque/erase" + }, + { + "cppref": "cpp/container/deque/pop_front", + "cppdoc": "cpp/library/container/deque/pop_front" + }, + { + "cppref": "cpp/container/deque/operator_cmp", + "cppdoc": "cpp/library/container/deque/operator_cmp" + }, + { + "cppref": "cpp/container/deque/get_allocator", + "cppdoc": "cpp/library/container/deque/get_allocator" + }, + { + "cppref": "cpp/container/deque/deque", + "cppdoc": "cpp/library/container/deque/deque" + }, + { + "cppref": "cpp/container/deque/insert_range", + "cppdoc": "cpp/library/container/deque/insert_range" + }, + { + "cppref": "cpp/container/deque/erase2", + "cppdoc": "cpp/library/container/deque/erase2" + }, + { + "cppref": "cpp/container/deque/push_front", + "cppdoc": "cpp/library/container/deque/push_front" + }, + { + "cppref": "cpp/container/deque/operator=", + "cppdoc": "cpp/library/container/deque/operator=" + }, + { + "cppref": "cpp/container/deque/push_back", + "cppdoc": "cpp/library/container/deque/push_back" + }, + { + "cppref": "cpp/container/deque/shrink_to_fit", + "cppdoc": "cpp/library/container/deque/shrink_to_fit" + }, + { + "cppref": "cpp/container/deque/prepend_range", + "cppdoc": "cpp/library/container/deque/prepend_range" + }, + { + "cppref": "cpp/container/deque/append_range", + "cppdoc": "cpp/library/container/deque/append_range" + }, + { + "cppref": "cpp/container/deque/clear", + "cppdoc": "cpp/library/container/deque/clear" + }, + { + "cppref": "cpp/container/list/back", + "cppdoc": "cpp/library/container/list/back" + }, + { + "cppref": "cpp/container/list/remove", + "cppdoc": "cpp/library/container/list/remove" + }, + { + "cppref": "cpp/container/list/assign", + "cppdoc": "cpp/library/container/list/assign" + }, + { + "cppref": "cpp/container/list/emplace_back", + "cppdoc": "cpp/library/container/list/emplace_back" + }, + { + "cppref": "cpp/container/list/insert", + "cppdoc": "cpp/library/container/list/insert" + }, + { + "cppref": "cpp/container/list/emplace", + "cppdoc": "cpp/library/container/list/emplace" + }, + { + "cppref": "cpp/container/list/empty", + "cppdoc": "cpp/library/container/list/empty" + }, + { + "cppref": "cpp/container/list/max_size", + "cppdoc": "cpp/library/container/list/max_size" + }, + { + "cppref": "cpp/container/list/size", + "cppdoc": "cpp/library/container/list/size" + }, + { + "cppref": "cpp/container/list/emplace_front", + "cppdoc": "cpp/library/container/list/emplace_front" + }, + { + "cppref": "cpp/container/list/swap2", + "cppdoc": "cpp/library/container/list/swap2" + }, + { + "cppref": "cpp/container/list/end", + "cppdoc": "cpp/library/container/list/end" + }, + { + "cppref": "cpp/container/list/list", + "cppdoc": "cpp/library/container/list/list" + }, + { + "cppref": "cpp/container/list/rend", + "cppdoc": "cpp/library/container/list/rend" + }, + { + "cppref": "cpp/container/list/splice", + "cppdoc": "cpp/library/container/list/splice" + }, + { + "cppref": "cpp/container/list/begin", + "cppdoc": "cpp/library/container/list/begin" + }, + { + "cppref": "cpp/container/list/deduction_guides", + "cppdoc": "cpp/library/container/list/deduction_guides" + }, + { + "cppref": "cpp/container/list/pop_back", + "cppdoc": "cpp/library/container/list/pop_back" + }, + { + "cppref": "cpp/container/list/assign_range", + "cppdoc": "cpp/library/container/list/assign_range" + }, + { + "cppref": "cpp/container/list/swap", + "cppdoc": "cpp/library/container/list/swap" + }, + { + "cppref": "cpp/container/list/front", + "cppdoc": "cpp/library/container/list/front" + }, + { + "cppref": "cpp/container/list/resize", + "cppdoc": "cpp/library/container/list/resize" + }, + { + "cppref": "cpp/container/list/rbegin", + "cppdoc": "cpp/library/container/list/rbegin" + }, + { + "cppref": "cpp/container/list/erase", + "cppdoc": "cpp/library/container/list/erase" + }, + { + "cppref": "cpp/container/list/pop_front", + "cppdoc": "cpp/library/container/list/pop_front" + }, + { + "cppref": "cpp/container/list/operator_cmp", + "cppdoc": "cpp/library/container/list/operator_cmp" + }, + { + "cppref": "cpp/container/list/get_allocator", + "cppdoc": "cpp/library/container/list/get_allocator" + }, + { + "cppref": "cpp/container/list/~list", + "cppdoc": "cpp/library/container/list/~list" + }, + { + "cppref": "cpp/container/list/merge", + "cppdoc": "cpp/library/container/list/merge" + }, + { + "cppref": "cpp/container/list/unique", + "cppdoc": "cpp/library/container/list/unique" + }, + { + "cppref": "cpp/container/list/insert_range", + "cppdoc": "cpp/library/container/list/insert_range" + }, + { + "cppref": "cpp/container/list/erase2", + "cppdoc": "cpp/library/container/list/erase2" + }, + { + "cppref": "cpp/container/list/sort", + "cppdoc": "cpp/library/container/list/sort" + }, + { + "cppref": "cpp/container/list/push_front", + "cppdoc": "cpp/library/container/list/push_front" + }, + { + "cppref": "cpp/container/list/operator=", + "cppdoc": "cpp/library/container/list/operator=" + }, + { + "cppref": "cpp/container/list/push_back", + "cppdoc": "cpp/library/container/list/push_back" + }, + { + "cppref": "cpp/container/list/prepend_range", + "cppdoc": "cpp/library/container/list/prepend_range" + }, + { + "cppref": "cpp/container/list/append_range", + "cppdoc": "cpp/library/container/list/append_range" + }, + { + "cppref": "cpp/container/list/clear", + "cppdoc": "cpp/library/container/list/clear" + }, + { + "cppref": "cpp/container/list/reverse", + "cppdoc": "cpp/library/container/list/reverse" + }, + { + "cppref": "cpp/container/stack/stack", + "cppdoc": "cpp/library/container/stack/stack" + }, + { + "cppref": "cpp/container/stack/push", + "cppdoc": "cpp/library/container/stack/push" + }, + { + "cppref": "cpp/container/stack/emplace", + "cppdoc": "cpp/library/container/stack/emplace" + }, + { + "cppref": "cpp/container/stack/empty", + "cppdoc": "cpp/library/container/stack/empty" + }, + { + "cppref": "cpp/container/stack/size", + "cppdoc": "cpp/library/container/stack/size" + }, + { + "cppref": "cpp/container/stack/swap2", + "cppdoc": "cpp/library/container/stack/swap2" + }, + { + "cppref": "cpp/container/stack/formatter", + "cppdoc": "cpp/library/container/stack/formatter" + }, + { + "cppref": "cpp/container/stack/top", + "cppdoc": "cpp/library/container/stack/top" + }, + { + "cppref": "cpp/container/stack/deduction_guides", + "cppdoc": "cpp/library/container/stack/deduction_guides" + }, + { + "cppref": "cpp/container/stack/~stack", + "cppdoc": "cpp/library/container/stack/~stack" + }, + { + "cppref": "cpp/container/stack/swap", + "cppdoc": "cpp/library/container/stack/swap" + }, + { + "cppref": "cpp/container/stack/push_range", + "cppdoc": "cpp/library/container/stack/push_range" + }, + { + "cppref": "cpp/container/stack/operator_cmp", + "cppdoc": "cpp/library/container/stack/operator_cmp" + }, + { + "cppref": "cpp/container/stack/operator=", + "cppdoc": "cpp/library/container/stack/operator=" + }, + { + "cppref": "cpp/container/stack/pop", + "cppdoc": "cpp/library/container/stack/pop" + }, + { + "cppref": "cpp/container/stack/uses_allocator", + "cppdoc": "cpp/library/container/stack/uses_allocator" + }, + { + "cppref": "cpp/container/vector/operator_at", + "cppdoc": "cpp/library/container/vector/operator_at" + }, + { + "cppref": "cpp/container/vector/at", + "cppdoc": "cpp/library/container/vector/at" + }, + { + "cppref": "cpp/container/vector/back", + "cppdoc": "cpp/library/container/vector/back" + }, + { + "cppref": "cpp/container/vector/assign", + "cppdoc": "cpp/library/container/vector/assign" + }, + { + "cppref": "cpp/container/vector/emplace_back", + "cppdoc": "cpp/library/container/vector/emplace_back" + }, + { + "cppref": "cpp/container/vector/insert", + "cppdoc": "cpp/library/container/vector/insert" + }, + { + "cppref": "cpp/container/vector/emplace", + "cppdoc": "cpp/library/container/vector/emplace" + }, + { + "cppref": "cpp/container/vector/empty", + "cppdoc": "cpp/library/container/vector/empty" + }, + { + "cppref": "cpp/container/vector/max_size", + "cppdoc": "cpp/library/container/vector/max_size" + }, + { + "cppref": "cpp/container/vector/size", + "cppdoc": "cpp/library/container/vector/size" + }, + { + "cppref": "cpp/container/vector/swap2", + "cppdoc": "cpp/library/container/vector/swap2" + }, + { + "cppref": "cpp/container/vector/end", + "cppdoc": "cpp/library/container/vector/end" + }, + { + "cppref": "cpp/container/vector/rend", + "cppdoc": "cpp/library/container/vector/rend" + }, + { + "cppref": "cpp/container/vector/begin", + "cppdoc": "cpp/library/container/vector/begin" + }, + { + "cppref": "cpp/container/vector/deduction_guides", + "cppdoc": "cpp/library/container/vector/deduction_guides" + }, + { + "cppref": "cpp/container/vector/pop_back", + "cppdoc": "cpp/library/container/vector/pop_back" + }, + { + "cppref": "cpp/container/vector/assign_range", + "cppdoc": "cpp/library/container/vector/assign_range" + }, + { + "cppref": "cpp/container/vector/swap", + "cppdoc": "cpp/library/container/vector/swap" + }, + { + "cppref": "cpp/container/vector/front", + "cppdoc": "cpp/library/container/vector/front" + }, + { + "cppref": "cpp/container/vector/resize", + "cppdoc": "cpp/library/container/vector/resize" + }, + { + "cppref": "cpp/container/vector/rbegin", + "cppdoc": "cpp/library/container/vector/rbegin" + }, + { + "cppref": "cpp/container/vector/reserve", + "cppdoc": "cpp/library/container/vector/reserve" + }, + { + "cppref": "cpp/container/vector/erase", + "cppdoc": "cpp/library/container/vector/erase" + }, + { + "cppref": "cpp/container/vector/operator_cmp", + "cppdoc": "cpp/library/container/vector/operator_cmp" + }, + { + "cppref": "cpp/container/vector/get_allocator", + "cppdoc": "cpp/library/container/vector/get_allocator" + }, + { + "cppref": "cpp/container/vector/insert_range", + "cppdoc": "cpp/library/container/vector/insert_range" + }, + { + "cppref": "cpp/container/vector/erase2", + "cppdoc": "cpp/library/container/vector/erase2" + }, + { + "cppref": "cpp/container/vector/~vector", + "cppdoc": "cpp/library/container/vector/~vector" + }, + { + "cppref": "cpp/container/vector/capacity", + "cppdoc": "cpp/library/container/vector/capacity" + }, + { + "cppref": "cpp/container/vector/operator=", + "cppdoc": "cpp/library/container/vector/operator=" + }, + { + "cppref": "cpp/container/vector/data", + "cppdoc": "cpp/library/container/vector/data" + }, + { + "cppref": "cpp/container/vector/push_back", + "cppdoc": "cpp/library/container/vector/push_back" + }, + { + "cppref": "cpp/container/vector/shrink_to_fit", + "cppdoc": "cpp/library/container/vector/shrink_to_fit" + }, + { + "cppref": "cpp/container/vector/append_range", + "cppdoc": "cpp/library/container/vector/append_range" + }, + { + "cppref": "cpp/container/vector/clear", + "cppdoc": "cpp/library/container/vector/clear" + }, + { + "cppref": "cpp/container/vector/vector", + "cppdoc": "cpp/library/container/vector/vector" + }, + { + "cppref": "cpp/container/multimap/extract", + "cppdoc": "cpp/library/container/multimap/extract" + }, + { + "cppref": "cpp/container/multimap/insert", + "cppdoc": "cpp/library/container/multimap/insert" + }, + { + "cppref": "cpp/container/multimap/emplace", + "cppdoc": "cpp/library/container/multimap/emplace" + }, + { + "cppref": "cpp/container/multimap/empty", + "cppdoc": "cpp/library/container/multimap/empty" + }, + { + "cppref": "cpp/container/multimap/find", + "cppdoc": "cpp/library/container/multimap/find" + }, + { + "cppref": "cpp/container/multimap/equal_range", + "cppdoc": "cpp/library/container/multimap/equal_range" + }, + { + "cppref": "cpp/container/multimap/max_size", + "cppdoc": "cpp/library/container/multimap/max_size" + }, + { + "cppref": "cpp/container/multimap/size", + "cppdoc": "cpp/library/container/multimap/size" + }, + { + "cppref": "cpp/container/multimap/swap2", + "cppdoc": "cpp/library/container/multimap/swap2" + }, + { + "cppref": "cpp/container/multimap/end", + "cppdoc": "cpp/library/container/multimap/end" + }, + { + "cppref": "cpp/container/multimap/value_compare", + "cppdoc": "cpp/library/container/multimap/value_compare" + }, + { + "cppref": "cpp/container/multimap/rend", + "cppdoc": "cpp/library/container/multimap/rend" + }, + { + "cppref": "cpp/container/multimap/begin", + "cppdoc": "cpp/library/container/multimap/begin" + }, + { + "cppref": "cpp/container/multimap/deduction_guides", + "cppdoc": "cpp/library/container/multimap/deduction_guides" + }, + { + "cppref": "cpp/container/multimap/value_comp", + "cppdoc": "cpp/library/container/multimap/value_comp" + }, + { + "cppref": "cpp/container/multimap/swap", + "cppdoc": "cpp/library/container/multimap/swap" + }, + { + "cppref": "cpp/container/multimap/upper_bound", + "cppdoc": "cpp/library/container/multimap/upper_bound" + }, + { + "cppref": "cpp/container/multimap/rbegin", + "cppdoc": "cpp/library/container/multimap/rbegin" + }, + { + "cppref": "cpp/container/multimap/lower_bound", + "cppdoc": "cpp/library/container/multimap/lower_bound" + }, + { + "cppref": "cpp/container/multimap/count", + "cppdoc": "cpp/library/container/multimap/count" + }, + { + "cppref": "cpp/container/multimap/erase", + "cppdoc": "cpp/library/container/multimap/erase" + }, + { + "cppref": "cpp/container/multimap/operator_cmp", + "cppdoc": "cpp/library/container/multimap/operator_cmp" + }, + { + "cppref": "cpp/container/multimap/get_allocator", + "cppdoc": "cpp/library/container/multimap/get_allocator" + }, + { + "cppref": "cpp/container/multimap/contains", + "cppdoc": "cpp/library/container/multimap/contains" + }, + { + "cppref": "cpp/container/multimap/merge", + "cppdoc": "cpp/library/container/multimap/merge" + }, + { + "cppref": "cpp/container/multimap/erase_if", + "cppdoc": "cpp/library/container/multimap/erase_if" + }, + { + "cppref": "cpp/container/multimap/insert_range", + "cppdoc": "cpp/library/container/multimap/insert_range" + }, + { + "cppref": "cpp/container/multimap/multimap", + "cppdoc": "cpp/library/container/multimap/multimap" + }, + { + "cppref": "cpp/container/multimap/emplace_hint", + "cppdoc": "cpp/library/container/multimap/emplace_hint" + }, + { + "cppref": "cpp/container/multimap/~multimap", + "cppdoc": "cpp/library/container/multimap/~multimap" + }, + { + "cppref": "cpp/container/multimap/key_comp", + "cppdoc": "cpp/library/container/multimap/key_comp" + }, + { + "cppref": "cpp/container/multimap/operator=", + "cppdoc": "cpp/library/container/multimap/operator=" + }, + { + "cppref": "cpp/container/multimap/clear", + "cppdoc": "cpp/library/container/multimap/clear" + }, + { + "cppref": "cpp/container/flat_multiset/replace", + "cppdoc": "cpp/library/container/flat_multiset/replace" + }, + { + "cppref": "cpp/container/flat_multiset/extract", + "cppdoc": "cpp/library/container/flat_multiset/extract" + }, + { + "cppref": "cpp/container/flat_multiset/insert", + "cppdoc": "cpp/library/container/flat_multiset/insert" + }, + { + "cppref": "cpp/container/flat_multiset/emplace", + "cppdoc": "cpp/library/container/flat_multiset/emplace" + }, + { + "cppref": "cpp/container/flat_multiset/empty", + "cppdoc": "cpp/library/container/flat_multiset/empty" + }, + { + "cppref": "cpp/container/flat_multiset/find", + "cppdoc": "cpp/library/container/flat_multiset/find" + }, + { + "cppref": "cpp/container/flat_multiset/equal_range", + "cppdoc": "cpp/library/container/flat_multiset/equal_range" + }, + { + "cppref": "cpp/container/flat_multiset/max_size", + "cppdoc": "cpp/library/container/flat_multiset/max_size" + }, + { + "cppref": "cpp/container/flat_multiset/size", + "cppdoc": "cpp/library/container/flat_multiset/size" + }, + { + "cppref": "cpp/container/flat_multiset/swap2", + "cppdoc": "cpp/library/container/flat_multiset/swap2" + }, + { + "cppref": "cpp/container/flat_multiset/end", + "cppdoc": "cpp/library/container/flat_multiset/end" + }, + { + "cppref": "cpp/container/flat_multiset/rend", + "cppdoc": "cpp/library/container/flat_multiset/rend" + }, + { + "cppref": "cpp/container/flat_multiset/begin", + "cppdoc": "cpp/library/container/flat_multiset/begin" + }, + { + "cppref": "cpp/container/flat_multiset/deduction_guides", + "cppdoc": "cpp/library/container/flat_multiset/deduction_guides" + }, + { + "cppref": "cpp/container/flat_multiset/value_comp", + "cppdoc": "cpp/library/container/flat_multiset/value_comp" + }, + { + "cppref": "cpp/container/flat_multiset/swap", + "cppdoc": "cpp/library/container/flat_multiset/swap" + }, + { + "cppref": "cpp/container/flat_multiset/upper_bound", + "cppdoc": "cpp/library/container/flat_multiset/upper_bound" + }, + { + "cppref": "cpp/container/flat_multiset/rbegin", + "cppdoc": "cpp/library/container/flat_multiset/rbegin" + }, + { + "cppref": "cpp/container/flat_multiset/lower_bound", + "cppdoc": "cpp/library/container/flat_multiset/lower_bound" + }, + { + "cppref": "cpp/container/flat_multiset/count", + "cppdoc": "cpp/library/container/flat_multiset/count" + }, + { + "cppref": "cpp/container/flat_multiset/erase", + "cppdoc": "cpp/library/container/flat_multiset/erase" + }, + { + "cppref": "cpp/container/flat_multiset/operator_cmp", + "cppdoc": "cpp/library/container/flat_multiset/operator_cmp" + }, + { + "cppref": "cpp/container/flat_multiset/contains", + "cppdoc": "cpp/library/container/flat_multiset/contains" + }, + { + "cppref": "cpp/container/flat_multiset/erase_if", + "cppdoc": "cpp/library/container/flat_multiset/erase_if" + }, + { + "cppref": "cpp/container/flat_multiset/insert_range", + "cppdoc": "cpp/library/container/flat_multiset/insert_range" + }, + { + "cppref": "cpp/container/flat_multiset/emplace_hint", + "cppdoc": "cpp/library/container/flat_multiset/emplace_hint" + }, + { + "cppref": "cpp/container/flat_multiset/key_comp", + "cppdoc": "cpp/library/container/flat_multiset/key_comp" + }, + { + "cppref": "cpp/container/flat_multiset/operator=", + "cppdoc": "cpp/library/container/flat_multiset/operator=" + }, + { + "cppref": "cpp/container/flat_multiset/clear", + "cppdoc": "cpp/library/container/flat_multiset/clear" + }, + { + "cppref": "cpp/container/flat_multiset/flat_multiset", + "cppdoc": "cpp/library/container/flat_multiset/flat_multiset" + }, + { + "cppref": "cpp/container/flat_multiset/uses_allocator", + "cppdoc": "cpp/library/container/flat_multiset/uses_allocator" + }, + { + "cppref": "cpp/container/flat_set/replace", + "cppdoc": "cpp/library/container/flat_set/replace" + }, + { + "cppref": "cpp/container/flat_set/extract", + "cppdoc": "cpp/library/container/flat_set/extract" + }, + { + "cppref": "cpp/container/flat_set/insert", + "cppdoc": "cpp/library/container/flat_set/insert" + }, + { + "cppref": "cpp/container/flat_set/emplace", + "cppdoc": "cpp/library/container/flat_set/emplace" + }, + { + "cppref": "cpp/container/flat_set/empty", + "cppdoc": "cpp/library/container/flat_set/empty" + }, + { + "cppref": "cpp/container/flat_set/find", + "cppdoc": "cpp/library/container/flat_set/find" + }, + { + "cppref": "cpp/container/flat_set/equal_range", + "cppdoc": "cpp/library/container/flat_set/equal_range" + }, + { + "cppref": "cpp/container/flat_set/max_size", + "cppdoc": "cpp/library/container/flat_set/max_size" + }, + { + "cppref": "cpp/container/flat_set/size", + "cppdoc": "cpp/library/container/flat_set/size" + }, + { + "cppref": "cpp/container/flat_set/swap2", + "cppdoc": "cpp/library/container/flat_set/swap2" + }, + { + "cppref": "cpp/container/flat_set/end", + "cppdoc": "cpp/library/container/flat_set/end" + }, + { + "cppref": "cpp/container/flat_set/rend", + "cppdoc": "cpp/library/container/flat_set/rend" + }, + { + "cppref": "cpp/container/flat_set/begin", + "cppdoc": "cpp/library/container/flat_set/begin" + }, + { + "cppref": "cpp/container/flat_set/deduction_guides", + "cppdoc": "cpp/library/container/flat_set/deduction_guides" + }, + { + "cppref": "cpp/container/flat_set/value_comp", + "cppdoc": "cpp/library/container/flat_set/value_comp" + }, + { + "cppref": "cpp/container/flat_set/swap", + "cppdoc": "cpp/library/container/flat_set/swap" + }, + { + "cppref": "cpp/container/flat_set/flat_set", + "cppdoc": "cpp/library/container/flat_set/flat_set" + }, + { + "cppref": "cpp/container/flat_set/upper_bound", + "cppdoc": "cpp/library/container/flat_set/upper_bound" + }, + { + "cppref": "cpp/container/flat_set/rbegin", + "cppdoc": "cpp/library/container/flat_set/rbegin" + }, + { + "cppref": "cpp/container/flat_set/lower_bound", + "cppdoc": "cpp/library/container/flat_set/lower_bound" + }, + { + "cppref": "cpp/container/flat_set/count", + "cppdoc": "cpp/library/container/flat_set/count" + }, + { + "cppref": "cpp/container/flat_set/erase", + "cppdoc": "cpp/library/container/flat_set/erase" + }, + { + "cppref": "cpp/container/flat_set/operator_cmp", + "cppdoc": "cpp/library/container/flat_set/operator_cmp" + }, + { + "cppref": "cpp/container/flat_set/contains", + "cppdoc": "cpp/library/container/flat_set/contains" + }, + { + "cppref": "cpp/container/flat_set/erase_if", + "cppdoc": "cpp/library/container/flat_set/erase_if" + }, + { + "cppref": "cpp/container/flat_set/insert_range", + "cppdoc": "cpp/library/container/flat_set/insert_range" + }, + { + "cppref": "cpp/container/flat_set/emplace_hint", + "cppdoc": "cpp/library/container/flat_set/emplace_hint" + }, + { + "cppref": "cpp/container/flat_set/key_comp", + "cppdoc": "cpp/library/container/flat_set/key_comp" + }, + { + "cppref": "cpp/container/flat_set/operator=", + "cppdoc": "cpp/library/container/flat_set/operator=" + }, + { + "cppref": "cpp/container/flat_set/clear", + "cppdoc": "cpp/library/container/flat_set/clear" + }, + { + "cppref": "cpp/container/flat_set/uses_allocator", + "cppdoc": "cpp/library/container/flat_set/uses_allocator" + }, + { + "cppref": "cpp/container/unordered_multiset/bucket_count", + "cppdoc": "cpp/library/container/unordered_multiset/bucket_count" + }, + { + "cppref": "cpp/container/unordered_multiset/end2", + "cppdoc": "cpp/library/container/unordered_multiset/end2" + }, + { + "cppref": "cpp/container/unordered_multiset/extract", + "cppdoc": "cpp/library/container/unordered_multiset/extract" + }, + { + "cppref": "cpp/container/unordered_multiset/insert", + "cppdoc": "cpp/library/container/unordered_multiset/insert" + }, + { + "cppref": "cpp/container/unordered_multiset/emplace", + "cppdoc": "cpp/library/container/unordered_multiset/emplace" + }, + { + "cppref": "cpp/container/unordered_multiset/empty", + "cppdoc": "cpp/library/container/unordered_multiset/empty" + }, + { + "cppref": "cpp/container/unordered_multiset/find", + "cppdoc": "cpp/library/container/unordered_multiset/find" + }, + { + "cppref": "cpp/container/unordered_multiset/equal_range", + "cppdoc": "cpp/library/container/unordered_multiset/equal_range" + }, + { + "cppref": "cpp/container/unordered_multiset/max_size", + "cppdoc": "cpp/library/container/unordered_multiset/max_size" + }, + { + "cppref": "cpp/container/unordered_multiset/size", + "cppdoc": "cpp/library/container/unordered_multiset/size" + }, + { + "cppref": "cpp/container/unordered_multiset/swap2", + "cppdoc": "cpp/library/container/unordered_multiset/swap2" + }, + { + "cppref": "cpp/container/unordered_multiset/end", + "cppdoc": "cpp/library/container/unordered_multiset/end" + }, + { + "cppref": "cpp/container/unordered_multiset/load_factor", + "cppdoc": "cpp/library/container/unordered_multiset/load_factor" + }, + { + "cppref": "cpp/container/unordered_multiset/rehash", + "cppdoc": "cpp/library/container/unordered_multiset/rehash" + }, + { + "cppref": "cpp/container/unordered_multiset/begin2", + "cppdoc": "cpp/library/container/unordered_multiset/begin2" + }, + { + "cppref": "cpp/container/unordered_multiset/begin", + "cppdoc": "cpp/library/container/unordered_multiset/begin" + }, + { + "cppref": "cpp/container/unordered_multiset/deduction_guides", + "cppdoc": "cpp/library/container/unordered_multiset/deduction_guides" + }, + { + "cppref": "cpp/container/unordered_multiset/unordered_multiset", + "cppdoc": "cpp/library/container/unordered_multiset/unordered_multiset" + }, + { + "cppref": "cpp/container/unordered_multiset/max_bucket_count", + "cppdoc": "cpp/library/container/unordered_multiset/max_bucket_count" + }, + { + "cppref": "cpp/container/unordered_multiset/swap", + "cppdoc": "cpp/library/container/unordered_multiset/swap" + }, + { + "cppref": "cpp/container/unordered_multiset/reserve", + "cppdoc": "cpp/library/container/unordered_multiset/reserve" + }, + { + "cppref": "cpp/container/unordered_multiset/count", + "cppdoc": "cpp/library/container/unordered_multiset/count" + }, + { + "cppref": "cpp/container/unordered_multiset/erase", + "cppdoc": "cpp/library/container/unordered_multiset/erase" + }, + { + "cppref": "cpp/container/unordered_multiset/operator_cmp", + "cppdoc": "cpp/library/container/unordered_multiset/operator_cmp" + }, + { + "cppref": "cpp/container/unordered_multiset/get_allocator", + "cppdoc": "cpp/library/container/unordered_multiset/get_allocator" + }, + { + "cppref": "cpp/container/unordered_multiset/contains", + "cppdoc": "cpp/library/container/unordered_multiset/contains" + }, + { + "cppref": "cpp/container/unordered_multiset/merge", + "cppdoc": "cpp/library/container/unordered_multiset/merge" + }, + { + "cppref": "cpp/container/unordered_multiset/erase_if", + "cppdoc": "cpp/library/container/unordered_multiset/erase_if" + }, + { + "cppref": "cpp/container/unordered_multiset/insert_range", + "cppdoc": "cpp/library/container/unordered_multiset/insert_range" + }, + { + "cppref": "cpp/container/unordered_multiset/key_eq", + "cppdoc": "cpp/library/container/unordered_multiset/key_eq" + }, + { + "cppref": "cpp/container/unordered_multiset/~unordered_multiset", + "cppdoc": "cpp/library/container/unordered_multiset/~unordered_multiset" + }, + { + "cppref": "cpp/container/unordered_multiset/bucket", + "cppdoc": "cpp/library/container/unordered_multiset/bucket" + }, + { + "cppref": "cpp/container/unordered_multiset/emplace_hint", + "cppdoc": "cpp/library/container/unordered_multiset/emplace_hint" + }, + { + "cppref": "cpp/container/unordered_multiset/hash_function", + "cppdoc": "cpp/library/container/unordered_multiset/hash_function" + }, + { + "cppref": "cpp/container/unordered_multiset/operator=", + "cppdoc": "cpp/library/container/unordered_multiset/operator=" + }, + { + "cppref": "cpp/container/unordered_multiset/max_load_factor", + "cppdoc": "cpp/library/container/unordered_multiset/max_load_factor" + }, + { + "cppref": "cpp/container/unordered_multiset/bucket_size", + "cppdoc": "cpp/library/container/unordered_multiset/bucket_size" + }, + { + "cppref": "cpp/container/unordered_multiset/clear", + "cppdoc": "cpp/library/container/unordered_multiset/clear" + }, + { + "cppref": "cpp/container/priority_queue/push", + "cppdoc": "cpp/library/container/priority_queue/push" + }, + { + "cppref": "cpp/container/priority_queue/emplace", + "cppdoc": "cpp/library/container/priority_queue/emplace" + }, + { + "cppref": "cpp/container/priority_queue/empty", + "cppdoc": "cpp/library/container/priority_queue/empty" + }, + { + "cppref": "cpp/container/priority_queue/size", + "cppdoc": "cpp/library/container/priority_queue/size" + }, + { + "cppref": "cpp/container/priority_queue/priority_queue", + "cppdoc": "cpp/library/container/priority_queue/priority_queue" + }, + { + "cppref": "cpp/container/priority_queue/swap2", + "cppdoc": "cpp/library/container/priority_queue/swap2" + }, + { + "cppref": "cpp/container/priority_queue/formatter", + "cppdoc": "cpp/library/container/priority_queue/formatter" + }, + { + "cppref": "cpp/container/priority_queue/~priority_queue", + "cppdoc": "cpp/library/container/priority_queue/~priority_queue" + }, + { + "cppref": "cpp/container/priority_queue/top", + "cppdoc": "cpp/library/container/priority_queue/top" + }, + { + "cppref": "cpp/container/priority_queue/deduction_guides", + "cppdoc": "cpp/library/container/priority_queue/deduction_guides" + }, + { + "cppref": "cpp/container/priority_queue/swap", + "cppdoc": "cpp/library/container/priority_queue/swap" + }, + { + "cppref": "cpp/container/priority_queue/push_range", + "cppdoc": "cpp/library/container/priority_queue/push_range" + }, + { + "cppref": "cpp/container/priority_queue/operator=", + "cppdoc": "cpp/library/container/priority_queue/operator=" + }, + { + "cppref": "cpp/container/priority_queue/pop", + "cppdoc": "cpp/library/container/priority_queue/pop" + }, + { + "cppref": "cpp/container/priority_queue/uses_allocator", + "cppdoc": "cpp/library/container/priority_queue/uses_allocator" + }, + { + "cppref": "cpp/chrono/year_month_day", + "cppdoc": "cpp/library/chrono/year_month_day" + }, + { + "cppref": "cpp/chrono/steady_clock", + "cppdoc": "cpp/library/chrono/steady_clock" + }, + { + "cppref": "cpp/chrono/tzdb_functions", + "cppdoc": "cpp/library/chrono/tzdb_functions" + }, + { + "cppref": "cpp/chrono/locate_zone", + "cppdoc": "cpp/library/chrono/locate_zone" + }, + { + "cppref": "cpp/chrono/month_weekday_last", + "cppdoc": "cpp/library/chrono/month_weekday_last" + }, + { + "cppref": "cpp/chrono/duration", + "cppdoc": "cpp/library/chrono/duration" + }, + { + "cppref": "cpp/chrono/operator_q__q_ms", + "cppdoc": "cpp/library/chrono/duration/operator_q__q_ms" + }, + { + "cppref": "cpp/chrono/utc_clock", + "cppdoc": "cpp/library/chrono/utc_clock" + }, + { + "cppref": "cpp/chrono/system_clock", + "cppdoc": "cpp/library/chrono/system_clock" + }, + { + "cppref": "cpp/chrono/operator_slash", + "cppdoc": "cpp/library/chrono/operator_slash" + }, + { + "cppref": "cpp/chrono/operator_q__q_us", + "cppdoc": "cpp/library/chrono/duration/operator_q__q_us" + }, + { + "cppref": "cpp/chrono/leap_second", + "cppdoc": "cpp/library/chrono/leap_second" + }, + { + "cppref": "cpp/chrono/year_month_day_last", + "cppdoc": "cpp/library/chrono/year_month_day_last" + }, + { + "cppref": "cpp/chrono/clock_time_conversion", + "cppdoc": "cpp/library/chrono/clock_time_conversion" + }, + { + "cppref": "cpp/chrono/duration_values", + "cppdoc": "cpp/library/chrono/duration/../duration_values" + }, + { + "cppref": "cpp/chrono/year_month_weekday", + "cppdoc": "cpp/library/chrono/year_month_weekday" + }, + { + "cppref": "cpp/chrono/local_info", + "cppdoc": "cpp/library/chrono/local_info" + }, + { + "cppref": "cpp/chrono/sys_info", + "cppdoc": "cpp/library/chrono/sys_info" + }, + { + "cppref": "cpp/chrono/tzdb", + "cppdoc": "cpp/library/chrono/tzdb" + }, + { + "cppref": "cpp/chrono/gps_clock", + "cppdoc": "cpp/library/chrono/gps_clock" + }, + { + "cppref": "cpp/chrono/nonexistent_local_time", + "cppdoc": "cpp/library/chrono/nonexistent_local_time" + }, + { + "cppref": "cpp/chrono/local_t", + "cppdoc": "cpp/library/chrono/local_t" + }, + { + "cppref": "cpp/chrono/weekday_indexed", + "cppdoc": "cpp/library/chrono/weekday_indexed" + }, + { + "cppref": "cpp/chrono/time_point", + "cppdoc": "cpp/library/chrono/time_point" + }, + { + "cppref": "cpp/chrono/month_weekday", + "cppdoc": "cpp/library/chrono/month_weekday" + }, + { + "cppref": "cpp/chrono/year_month_weekday_last", + "cppdoc": "cpp/library/chrono/year_month_weekday_last" + }, + { + "cppref": "cpp/chrono/ambiguous_local_time", + "cppdoc": "cpp/library/chrono/ambiguous_local_time" + }, + { + "cppref": "cpp/chrono/tzdb_list", + "cppdoc": "cpp/library/chrono/tzdb_list" + }, + { + "cppref": "cpp/chrono/weekday", + "cppdoc": "cpp/library/chrono/weekday" + }, + { + "cppref": "cpp/chrono/hh_mm_ss", + "cppdoc": "cpp/library/chrono/hh_mm_ss" + }, + { + "cppref": "cpp/chrono/parse", + "cppdoc": "cpp/library/chrono/parse" + }, + { + "cppref": "cpp/chrono/year_month", + "cppdoc": "cpp/library/chrono/year_month" + }, + { + "cppref": "cpp/chrono/weekday_last", + "cppdoc": "cpp/library/chrono/weekday_last" + }, + { + "cppref": "cpp/chrono/month_day_last", + "cppdoc": "cpp/library/chrono/month_day_last" + }, + { + "cppref": "cpp/chrono/c", + "cppdoc": "cpp/library/chrono/c" + }, + { + "cppref": "cpp/chrono/time_zone", + "cppdoc": "cpp/library/chrono/time_zone" + }, + { + "cppref": "cpp/chrono/tai_clock", + "cppdoc": "cpp/library/chrono/tai_clock" + }, + { + "cppref": "cpp/chrono/hour_fun", + "cppdoc": "cpp/library/chrono/hour_fun" + }, + { + "cppref": "cpp/chrono/last_spec", + "cppdoc": "cpp/library/chrono/last_spec" + }, + { + "cppref": "cpp/chrono/clock_cast", + "cppdoc": "cpp/library/chrono/clock_cast" + }, + { + "cppref": "cpp/chrono/year", + "cppdoc": "cpp/library/chrono/year" + }, + { + "cppref": "cpp/chrono/current_zone", + "cppdoc": "cpp/library/chrono/current_zone" + }, + { + "cppref": "cpp/chrono/file_clock", + "cppdoc": "cpp/library/chrono/file_clock" + }, + { + "cppref": "cpp/chrono/month", + "cppdoc": "cpp/library/chrono/month" + }, + { + "cppref": "cpp/chrono/zoned_time", + "cppdoc": "cpp/library/chrono/zoned_time" + }, + { + "cppref": "cpp/chrono/day", + "cppdoc": "cpp/library/chrono/day" + }, + { + "cppref": "cpp/chrono/month_day", + "cppdoc": "cpp/library/chrono/month_day" + }, + { + "cppref": "cpp/chrono/treat_as_floating_point", + "cppdoc": "cpp/library/chrono/duration/treat_as_floating_point" + }, + { + "cppref": "cpp/chrono/zoned_traits", + "cppdoc": "cpp/library/chrono/zoned_traits" + }, + { + "cppref": "cpp/chrono/operator_q__q_h", + "cppdoc": "cpp/library/chrono/duration/operator_q__q_h" + }, + { + "cppref": "cpp/chrono/is_clock", + "cppdoc": "cpp/library/chrono/is_clock" + }, + { + "cppref": "cpp/chrono/time_zone_link", + "cppdoc": "cpp/library/chrono/time_zone_link" + }, + { + "cppref": "cpp/chrono/operator_q__q_ns", + "cppdoc": "cpp/library/chrono/duration/operator_q__q_ns" + }, + { + "cppref": "cpp/chrono/high_resolution_clock", + "cppdoc": "cpp/library/chrono/high_resolution_clock" + }, + { + "cppref": "cpp/chrono/choose", + "cppdoc": "cpp/library/chrono/choose" + }, + { + "cppref": "cpp/chrono/time_point/hash", + "cppdoc": "cpp/library/chrono/time_point/hash" + }, + { + "cppref": "cpp/chrono/time_point/min", + "cppdoc": "cpp/library/chrono/time_point/min" + }, + { + "cppref": "cpp/chrono/time_point/floor", + "cppdoc": "cpp/library/chrono/time_point/floor" + }, + { + "cppref": "cpp/chrono/time_point/ceil", + "cppdoc": "cpp/library/chrono/time_point/ceil" + }, + { + "cppref": "cpp/chrono/time_point/time_point_cast", + "cppdoc": "cpp/library/chrono/time_point/time_point_cast" + }, + { + "cppref": "cpp/chrono/time_point/time_point", + "cppdoc": "cpp/library/chrono/time_point/time_point" + }, + { + "cppref": "cpp/chrono/time_point/operator_arith", + "cppdoc": "cpp/library/chrono/time_point/operator_arith" + }, + { + "cppref": "cpp/chrono/time_point/max", + "cppdoc": "cpp/library/chrono/time_point/max" + }, + { + "cppref": "cpp/chrono/time_point/common_type", + "cppdoc": "cpp/library/chrono/time_point/common_type" + }, + { + "cppref": "cpp/chrono/time_point/operator_cmp", + "cppdoc": "cpp/library/chrono/time_point/operator_cmp" + }, + { + "cppref": "cpp/chrono/time_point/operator_inc_dec", + "cppdoc": "cpp/library/chrono/time_point/operator_inc_dec" + }, + { + "cppref": "cpp/chrono/time_point/operator_arith2", + "cppdoc": "cpp/library/chrono/time_point/operator_arith2" + }, + { + "cppref": "cpp/chrono/time_point/round", + "cppdoc": "cpp/library/chrono/time_point/round" + }, + { + "cppref": "cpp/chrono/time_point/time_since_epoch", + "cppdoc": "cpp/library/chrono/time_point/time_since_epoch" + }, + { + "cppref": "cpp/chrono/year_month_weekday_last/hash", + "cppdoc": "cpp/library/chrono/year_month_weekday_last/hash" + }, + { + "cppref": "cpp/chrono/year_month_weekday_last/formatter", + "cppdoc": "cpp/library/chrono/year_month_weekday_last/formatter" + }, + { + "cppref": "cpp/chrono/year_month_weekday_last/operator_arith", + "cppdoc": "cpp/library/chrono/year_month_weekday_last/operator_arith" + }, + { + "cppref": "cpp/chrono/year_month_weekday_last/year_month_weekday_last", + "cppdoc": "cpp/library/chrono/year_month_weekday_last/year_month_weekday_last" + }, + { + "cppref": "cpp/chrono/year_month_weekday_last/operator_arith_2", + "cppdoc": "cpp/library/chrono/year_month_weekday_last/operator_arith_2" + }, + { + "cppref": "cpp/chrono/year_month_weekday_last/operator_cmp", + "cppdoc": "cpp/library/chrono/year_month_weekday_last/operator_cmp" + }, + { + "cppref": "cpp/chrono/year_month_weekday_last/accessors", + "cppdoc": "cpp/library/chrono/year_month_weekday_last/accessors" + }, + { + "cppref": "cpp/chrono/year_month_weekday_last/operator_ltlt", + "cppdoc": "cpp/library/chrono/year_month_weekday_last/operator_ltlt" + }, + { + "cppref": "cpp/chrono/year_month_weekday_last/operator_days", + "cppdoc": "cpp/library/chrono/year_month_weekday_last/operator_days" + }, + { + "cppref": "cpp/chrono/year_month_weekday_last/ok", + "cppdoc": "cpp/library/chrono/year_month_weekday_last/ok" + }, + { + "cppref": "cpp/chrono/file_clock/to_from_sys", + "cppdoc": "cpp/library/chrono/file_clock/to_from_sys" + }, + { + "cppref": "cpp/chrono/file_clock/to_from_utc", + "cppdoc": "cpp/library/chrono/file_clock/to_from_utc" + }, + { + "cppref": "cpp/chrono/file_clock/formatter", + "cppdoc": "cpp/library/chrono/file_clock/formatter" + }, + { + "cppref": "cpp/chrono/file_clock/now", + "cppdoc": "cpp/library/chrono/file_clock/now" + }, + { + "cppref": "cpp/chrono/file_clock/from_stream", + "cppdoc": "cpp/library/chrono/file_clock/from_stream" + }, + { + "cppref": "cpp/chrono/file_clock/operator_ltlt", + "cppdoc": "cpp/library/chrono/file_clock/operator_ltlt" + }, + { + "cppref": "cpp/chrono/year_month/hash", + "cppdoc": "cpp/library/chrono/year_month/hash" + }, + { + "cppref": "cpp/chrono/year_month/formatter", + "cppdoc": "cpp/library/chrono/year_month/formatter" + }, + { + "cppref": "cpp/chrono/year_month/operator_arith", + "cppdoc": "cpp/library/chrono/year_month/operator_arith" + }, + { + "cppref": "cpp/chrono/year_month/operator_arith_2", + "cppdoc": "cpp/library/chrono/year_month/operator_arith_2" + }, + { + "cppref": "cpp/chrono/year_month/year_month", + "cppdoc": "cpp/library/chrono/year_month/year_month" + }, + { + "cppref": "cpp/chrono/year_month/operator_cmp", + "cppdoc": "cpp/library/chrono/year_month/operator_cmp" + }, + { + "cppref": "cpp/chrono/year_month/from_stream", + "cppdoc": "cpp/library/chrono/year_month/from_stream" + }, + { + "cppref": "cpp/chrono/year_month/accessors", + "cppdoc": "cpp/library/chrono/year_month/accessors" + }, + { + "cppref": "cpp/chrono/year_month/operator_ltlt", + "cppdoc": "cpp/library/chrono/year_month/operator_ltlt" + }, + { + "cppref": "cpp/chrono/year_month/ok", + "cppdoc": "cpp/library/chrono/year_month/ok" + }, + { + "cppref": "cpp/chrono/duration_values/zero", + "cppdoc": "cpp/library/chrono/duration/../duration_values/zero" + }, + { + "cppref": "cpp/chrono/duration_values/min", + "cppdoc": "cpp/library/chrono/duration/../duration_values/min" + }, + { + "cppref": "cpp/chrono/duration_values/max", + "cppdoc": "cpp/library/chrono/duration/../duration_values/max" + }, + { + "cppref": "cpp/chrono/duration/zero", + "cppdoc": "cpp/library/chrono/duration/zero" + }, + { + "cppref": "cpp/chrono/duration/duration", + "cppdoc": "cpp/library/chrono/duration/duration" + }, + { + "cppref": "cpp/chrono/duration/hash", + "cppdoc": "cpp/library/chrono/duration/hash" + }, + { + "cppref": "cpp/chrono/duration/min", + "cppdoc": "cpp/library/chrono/duration/min" + }, + { + "cppref": "cpp/chrono/duration/floor", + "cppdoc": "cpp/library/chrono/duration/floor" + }, + { + "cppref": "cpp/chrono/duration/formatter", + "cppdoc": "cpp/library/chrono/duration/formatter" + }, + { + "cppref": "cpp/chrono/duration/ceil", + "cppdoc": "cpp/library/chrono/duration/ceil" + }, + { + "cppref": "cpp/chrono/duration/operator_arith", + "cppdoc": "cpp/library/chrono/duration/operator_arith" + }, + { + "cppref": "cpp/chrono/duration/operator_arith3", + "cppdoc": "cpp/library/chrono/duration/operator_arith3" + }, + { + "cppref": "cpp/chrono/duration/max", + "cppdoc": "cpp/library/chrono/duration/max" + }, + { + "cppref": "cpp/chrono/duration/common_type", + "cppdoc": "cpp/library/chrono/duration/common_type" + }, + { + "cppref": "cpp/chrono/duration/count", + "cppdoc": "cpp/library/chrono/duration/count" + }, + { + "cppref": "cpp/chrono/duration/duration_cast", + "cppdoc": "cpp/library/chrono/duration/duration_cast" + }, + { + "cppref": "cpp/chrono/duration/operator_cmp", + "cppdoc": "cpp/library/chrono/duration/operator_cmp" + }, + { + "cppref": "cpp/chrono/duration/from_stream", + "cppdoc": "cpp/library/chrono/duration/from_stream" + }, + { + "cppref": "cpp/chrono/duration/operator_arith4", + "cppdoc": "cpp/library/chrono/duration/operator_arith4" + }, + { + "cppref": "cpp/chrono/duration/operator_arith2", + "cppdoc": "cpp/library/chrono/duration/operator_arith2" + }, + { + "cppref": "cpp/chrono/duration/operator=", + "cppdoc": "cpp/library/chrono/duration/operator=" + }, + { + "cppref": "cpp/chrono/duration/round", + "cppdoc": "cpp/library/chrono/duration/round" + }, + { + "cppref": "cpp/chrono/duration/operator_ltlt", + "cppdoc": "cpp/library/chrono/duration/operator_ltlt" + }, + { + "cppref": "cpp/chrono/duration/abs", + "cppdoc": "cpp/library/chrono/duration/abs" + }, + { + "cppref": "cpp/chrono/gps_clock/to_utc", + "cppdoc": "cpp/library/chrono/gps_clock/to_utc" + }, + { + "cppref": "cpp/chrono/gps_clock/formatter", + "cppdoc": "cpp/library/chrono/gps_clock/formatter" + }, + { + "cppref": "cpp/chrono/gps_clock/now", + "cppdoc": "cpp/library/chrono/gps_clock/now" + }, + { + "cppref": "cpp/chrono/gps_clock/from_stream", + "cppdoc": "cpp/library/chrono/gps_clock/from_stream" + }, + { + "cppref": "cpp/chrono/gps_clock/from_utc", + "cppdoc": "cpp/library/chrono/gps_clock/from_utc" + }, + { + "cppref": "cpp/chrono/gps_clock/operator_ltlt", + "cppdoc": "cpp/library/chrono/gps_clock/operator_ltlt" + }, + { + "cppref": "cpp/chrono/leap_second/hash", + "cppdoc": "cpp/library/chrono/leap_second/hash" + }, + { + "cppref": "cpp/chrono/leap_second/date", + "cppdoc": "cpp/library/chrono/leap_second/date" + }, + { + "cppref": "cpp/chrono/leap_second/operator_cmp", + "cppdoc": "cpp/library/chrono/leap_second/operator_cmp" + }, + { + "cppref": "cpp/chrono/utc_clock/get_leap_second_info", + "cppdoc": "cpp/library/chrono/utc_clock/get_leap_second_info" + }, + { + "cppref": "cpp/chrono/utc_clock/to_sys", + "cppdoc": "cpp/library/chrono/utc_clock/to_sys" + }, + { + "cppref": "cpp/chrono/utc_clock/leap_second_info", + "cppdoc": "cpp/library/chrono/utc_clock/leap_second_info" + }, + { + "cppref": "cpp/chrono/utc_clock/from_sys", + "cppdoc": "cpp/library/chrono/utc_clock/from_sys" + }, + { + "cppref": "cpp/chrono/utc_clock/formatter", + "cppdoc": "cpp/library/chrono/utc_clock/formatter" + }, + { + "cppref": "cpp/chrono/utc_clock/now", + "cppdoc": "cpp/library/chrono/utc_clock/now" + }, + { + "cppref": "cpp/chrono/utc_clock/from_stream", + "cppdoc": "cpp/library/chrono/utc_clock/from_stream" + }, + { + "cppref": "cpp/chrono/utc_clock/operator_ltlt", + "cppdoc": "cpp/library/chrono/utc_clock/operator_ltlt" + }, + { + "cppref": "cpp/chrono/month_day/hash", + "cppdoc": "cpp/library/chrono/month_day/hash" + }, + { + "cppref": "cpp/chrono/month_day/formatter", + "cppdoc": "cpp/library/chrono/month_day/formatter" + }, + { + "cppref": "cpp/chrono/month_day/operator_cmp", + "cppdoc": "cpp/library/chrono/month_day/operator_cmp" + }, + { + "cppref": "cpp/chrono/month_day/from_stream", + "cppdoc": "cpp/library/chrono/month_day/from_stream" + }, + { + "cppref": "cpp/chrono/month_day/accessors", + "cppdoc": "cpp/library/chrono/month_day/accessors" + }, + { + "cppref": "cpp/chrono/month_day/month_day", + "cppdoc": "cpp/library/chrono/month_day/month_day" + }, + { + "cppref": "cpp/chrono/month_day/operator_ltlt", + "cppdoc": "cpp/library/chrono/month_day/operator_ltlt" + }, + { + "cppref": "cpp/chrono/month_day/ok", + "cppdoc": "cpp/library/chrono/month_day/ok" + }, + { + "cppref": "cpp/chrono/local_info/formatter", + "cppdoc": "cpp/library/chrono/local_info/formatter" + }, + { + "cppref": "cpp/chrono/local_info/operator_ltlt", + "cppdoc": "cpp/library/chrono/local_info/operator_ltlt" + }, + { + "cppref": "cpp/chrono/steady_clock/now", + "cppdoc": "cpp/library/chrono/steady_clock/now" + }, + { + "cppref": "cpp/chrono/high_resolution_clock/now", + "cppdoc": "cpp/library/chrono/high_resolution_clock/now" + }, + { + "cppref": "cpp/chrono/year/operator_sign", + "cppdoc": "cpp/library/chrono/year/operator_sign" + }, + { + "cppref": "cpp/chrono/year/hash", + "cppdoc": "cpp/library/chrono/year/hash" + }, + { + "cppref": "cpp/chrono/year/min", + "cppdoc": "cpp/library/chrono/year/min" + }, + { + "cppref": "cpp/chrono/year/formatter", + "cppdoc": "cpp/library/chrono/year/formatter" + }, + { + "cppref": "cpp/chrono/year/operator_arith", + "cppdoc": "cpp/library/chrono/year/operator_arith" + }, + { + "cppref": "cpp/chrono/year/operator_arith_2", + "cppdoc": "cpp/library/chrono/year/operator_arith_2" + }, + { + "cppref": "cpp/chrono/year/max", + "cppdoc": "cpp/library/chrono/year/max" + }, + { + "cppref": "cpp/chrono/year/operator_cmp", + "cppdoc": "cpp/library/chrono/year/operator_cmp" + }, + { + "cppref": "cpp/chrono/year/from_stream", + "cppdoc": "cpp/library/chrono/year/from_stream" + }, + { + "cppref": "cpp/chrono/year/operator_int", + "cppdoc": "cpp/library/chrono/year/operator_int" + }, + { + "cppref": "cpp/chrono/year/operator_inc_dec", + "cppdoc": "cpp/library/chrono/year/operator_inc_dec" + }, + { + "cppref": "cpp/chrono/year/year", + "cppdoc": "cpp/library/chrono/year/year" + }, + { + "cppref": "cpp/chrono/year/is_leap", + "cppdoc": "cpp/library/chrono/year/is_leap" + }, + { + "cppref": "cpp/chrono/year/operator_ltlt", + "cppdoc": "cpp/library/chrono/year/operator_ltlt" + }, + { + "cppref": "cpp/chrono/year/ok", + "cppdoc": "cpp/library/chrono/year/ok" + }, + { + "cppref": "cpp/chrono/weekday_indexed/index", + "cppdoc": "cpp/library/chrono/weekday_indexed/index" + }, + { + "cppref": "cpp/chrono/weekday_indexed/hash", + "cppdoc": "cpp/library/chrono/weekday_indexed/hash" + }, + { + "cppref": "cpp/chrono/weekday_indexed/formatter", + "cppdoc": "cpp/library/chrono/weekday_indexed/formatter" + }, + { + "cppref": "cpp/chrono/weekday_indexed/weekday_indexed", + "cppdoc": "cpp/library/chrono/weekday_indexed/weekday_indexed" + }, + { + "cppref": "cpp/chrono/weekday_indexed/weekday", + "cppdoc": "cpp/library/chrono/weekday_indexed/weekday" + }, + { + "cppref": "cpp/chrono/weekday_indexed/operator_cmp", + "cppdoc": "cpp/library/chrono/weekday_indexed/operator_cmp" + }, + { + "cppref": "cpp/chrono/weekday_indexed/operator_ltlt", + "cppdoc": "cpp/library/chrono/weekday_indexed/operator_ltlt" + }, + { + "cppref": "cpp/chrono/weekday_indexed/ok", + "cppdoc": "cpp/library/chrono/weekday_indexed/ok" + }, + { + "cppref": "cpp/chrono/c/mktime", + "cppdoc": "cpp/library/chrono/c/mktime" + }, + { + "cppref": "cpp/chrono/c/clock", + "cppdoc": "cpp/library/chrono/c/clock" + }, + { + "cppref": "cpp/chrono/c/CLOCKS_PER_SEC", + "cppdoc": "cpp/library/chrono/c/CLOCKS_PER_SEC" + }, + { + "cppref": "cpp/chrono/c/time_t", + "cppdoc": "cpp/library/chrono/c/time_t" + }, + { + "cppref": "cpp/chrono/c/gmtime", + "cppdoc": "cpp/library/chrono/c/gmtime" + }, + { + "cppref": "cpp/chrono/c/clock_t", + "cppdoc": "cpp/library/chrono/c/clock_t" + }, + { + "cppref": "cpp/chrono/c/strftime", + "cppdoc": "cpp/library/chrono/c/strftime" + }, + { + "cppref": "cpp/chrono/c/difftime", + "cppdoc": "cpp/library/chrono/c/difftime" + }, + { + "cppref": "cpp/chrono/c/ctime", + "cppdoc": "cpp/library/chrono/c/ctime" + }, + { + "cppref": "cpp/chrono/c/asctime", + "cppdoc": "cpp/library/chrono/c/asctime" + }, + { + "cppref": "cpp/chrono/c/tm", + "cppdoc": "cpp/library/chrono/c/tm" + }, + { + "cppref": "cpp/chrono/c/time", + "cppdoc": "cpp/library/chrono/c/time" + }, + { + "cppref": "cpp/chrono/c/timespec", + "cppdoc": "cpp/library/chrono/c/timespec" + }, + { + "cppref": "cpp/chrono/c/timespec_get", + "cppdoc": "cpp/library/chrono/c/timespec_get" + }, + { + "cppref": "cpp/chrono/c/wcsftime", + "cppdoc": "cpp/library/chrono/c/wcsftime" + }, + { + "cppref": "cpp/chrono/c/localtime", + "cppdoc": "cpp/library/chrono/c/localtime" + }, + { + "cppref": "cpp/chrono/local_t/formatter", + "cppdoc": "cpp/library/chrono/local_t/formatter" + }, + { + "cppref": "cpp/chrono/local_t/from_stream", + "cppdoc": "cpp/library/chrono/local_t/from_stream" + }, + { + "cppref": "cpp/chrono/local_t/operator_ltlt", + "cppdoc": "cpp/library/chrono/local_t/operator_ltlt" + }, + { + "cppref": "cpp/chrono/month_weekday/hash", + "cppdoc": "cpp/library/chrono/month_weekday/hash" + }, + { + "cppref": "cpp/chrono/month_weekday/formatter", + "cppdoc": "cpp/library/chrono/month_weekday/formatter" + }, + { + "cppref": "cpp/chrono/month_weekday/month_weekday", + "cppdoc": "cpp/library/chrono/month_weekday/month_weekday" + }, + { + "cppref": "cpp/chrono/month_weekday/operator_cmp", + "cppdoc": "cpp/library/chrono/month_weekday/operator_cmp" + }, + { + "cppref": "cpp/chrono/month_weekday/accessors", + "cppdoc": "cpp/library/chrono/month_weekday/accessors" + }, + { + "cppref": "cpp/chrono/month_weekday/operator_ltlt", + "cppdoc": "cpp/library/chrono/month_weekday/operator_ltlt" + }, + { + "cppref": "cpp/chrono/month_weekday/ok", + "cppdoc": "cpp/library/chrono/month_weekday/ok" + }, + { + "cppref": "cpp/chrono/year_month_day/year_month_day", + "cppdoc": "cpp/library/chrono/year_month_day/year_month_day" + }, + { + "cppref": "cpp/chrono/year_month_day/hash", + "cppdoc": "cpp/library/chrono/year_month_day/hash" + }, + { + "cppref": "cpp/chrono/year_month_day/formatter", + "cppdoc": "cpp/library/chrono/year_month_day/formatter" + }, + { + "cppref": "cpp/chrono/year_month_day/operator_arith", + "cppdoc": "cpp/library/chrono/year_month_day/operator_arith" + }, + { + "cppref": "cpp/chrono/year_month_day/operator_arith_2", + "cppdoc": "cpp/library/chrono/year_month_day/operator_arith_2" + }, + { + "cppref": "cpp/chrono/year_month_day/operator_cmp", + "cppdoc": "cpp/library/chrono/year_month_day/operator_cmp" + }, + { + "cppref": "cpp/chrono/year_month_day/from_stream", + "cppdoc": "cpp/library/chrono/year_month_day/from_stream" + }, + { + "cppref": "cpp/chrono/year_month_day/accessors", + "cppdoc": "cpp/library/chrono/year_month_day/accessors" + }, + { + "cppref": "cpp/chrono/year_month_day/operator_ltlt", + "cppdoc": "cpp/library/chrono/year_month_day/operator_ltlt" + }, + { + "cppref": "cpp/chrono/year_month_day/operator_days", + "cppdoc": "cpp/library/chrono/year_month_day/operator_days" + }, + { + "cppref": "cpp/chrono/year_month_day/ok", + "cppdoc": "cpp/library/chrono/year_month_day/ok" + }, + { + "cppref": "cpp/chrono/time_zone/to_sys", + "cppdoc": "cpp/library/chrono/time_zone/to_sys" + }, + { + "cppref": "cpp/chrono/time_zone/to_local", + "cppdoc": "cpp/library/chrono/time_zone/to_local" + }, + { + "cppref": "cpp/chrono/time_zone/name", + "cppdoc": "cpp/library/chrono/time_zone/name" + }, + { + "cppref": "cpp/chrono/time_zone/get_info", + "cppdoc": "cpp/library/chrono/time_zone/get_info" + }, + { + "cppref": "cpp/chrono/time_zone/operator_cmp", + "cppdoc": "cpp/library/chrono/time_zone/operator_cmp" + }, + { + "cppref": "cpp/chrono/tai_clock/to_utc", + "cppdoc": "cpp/library/chrono/tai_clock/to_utc" + }, + { + "cppref": "cpp/chrono/tai_clock/formatter", + "cppdoc": "cpp/library/chrono/tai_clock/formatter" + }, + { + "cppref": "cpp/chrono/tai_clock/now", + "cppdoc": "cpp/library/chrono/tai_clock/now" + }, + { + "cppref": "cpp/chrono/tai_clock/from_stream", + "cppdoc": "cpp/library/chrono/tai_clock/from_stream" + }, + { + "cppref": "cpp/chrono/tai_clock/from_utc", + "cppdoc": "cpp/library/chrono/tai_clock/from_utc" + }, + { + "cppref": "cpp/chrono/tai_clock/operator_ltlt", + "cppdoc": "cpp/library/chrono/tai_clock/operator_ltlt" + }, + { + "cppref": "cpp/chrono/hh_mm_ss/duration", + "cppdoc": "cpp/library/chrono/hh_mm_ss/duration" + }, + { + "cppref": "cpp/chrono/hh_mm_ss/formatter", + "cppdoc": "cpp/library/chrono/hh_mm_ss/formatter" + }, + { + "cppref": "cpp/chrono/hh_mm_ss/hh_mm_ss", + "cppdoc": "cpp/library/chrono/hh_mm_ss/hh_mm_ss" + }, + { + "cppref": "cpp/chrono/hh_mm_ss/accessors", + "cppdoc": "cpp/library/chrono/hh_mm_ss/accessors" + }, + { + "cppref": "cpp/chrono/hh_mm_ss/operator_ltlt", + "cppdoc": "cpp/library/chrono/hh_mm_ss/operator_ltlt" + }, + { + "cppref": "cpp/chrono/month_weekday_last/month_weekday_last", + "cppdoc": "cpp/library/chrono/month_weekday_last/month_weekday_last" + }, + { + "cppref": "cpp/chrono/month_weekday_last/hash", + "cppdoc": "cpp/library/chrono/month_weekday_last/hash" + }, + { + "cppref": "cpp/chrono/month_weekday_last/formatter", + "cppdoc": "cpp/library/chrono/month_weekday_last/formatter" + }, + { + "cppref": "cpp/chrono/month_weekday_last/operator_cmp", + "cppdoc": "cpp/library/chrono/month_weekday_last/operator_cmp" + }, + { + "cppref": "cpp/chrono/month_weekday_last/accessors", + "cppdoc": "cpp/library/chrono/month_weekday_last/accessors" + }, + { + "cppref": "cpp/chrono/month_weekday_last/operator_ltlt", + "cppdoc": "cpp/library/chrono/month_weekday_last/operator_ltlt" + }, + { + "cppref": "cpp/chrono/month_weekday_last/ok", + "cppdoc": "cpp/library/chrono/month_weekday_last/ok" + }, + { + "cppref": "cpp/chrono/year_month_day_last/hash", + "cppdoc": "cpp/library/chrono/year_month_day_last/hash" + }, + { + "cppref": "cpp/chrono/year_month_day_last/year_month_day_last", + "cppdoc": "cpp/library/chrono/year_month_day_last/year_month_day_last" + }, + { + "cppref": "cpp/chrono/year_month_day_last/formatter", + "cppdoc": "cpp/library/chrono/year_month_day_last/formatter" + }, + { + "cppref": "cpp/chrono/year_month_day_last/operator_arith", + "cppdoc": "cpp/library/chrono/year_month_day_last/operator_arith" + }, + { + "cppref": "cpp/chrono/year_month_day_last/operator_arith_2", + "cppdoc": "cpp/library/chrono/year_month_day_last/operator_arith_2" + }, + { + "cppref": "cpp/chrono/year_month_day_last/operator_cmp", + "cppdoc": "cpp/library/chrono/year_month_day_last/operator_cmp" + }, + { + "cppref": "cpp/chrono/year_month_day_last/accessors", + "cppdoc": "cpp/library/chrono/year_month_day_last/accessors" + }, + { + "cppref": "cpp/chrono/year_month_day_last/operator_ltlt", + "cppdoc": "cpp/library/chrono/year_month_day_last/operator_ltlt" + }, + { + "cppref": "cpp/chrono/year_month_day_last/operator_days", + "cppdoc": "cpp/library/chrono/year_month_day_last/operator_days" + }, + { + "cppref": "cpp/chrono/year_month_day_last/ok", + "cppdoc": "cpp/library/chrono/year_month_day_last/ok" + }, + { + "cppref": "cpp/chrono/year_month_weekday/hash", + "cppdoc": "cpp/library/chrono/year_month_weekday/hash" + }, + { + "cppref": "cpp/chrono/year_month_weekday/formatter", + "cppdoc": "cpp/library/chrono/year_month_weekday/formatter" + }, + { + "cppref": "cpp/chrono/year_month_weekday/year_month_weekday", + "cppdoc": "cpp/library/chrono/year_month_weekday/year_month_weekday" + }, + { + "cppref": "cpp/chrono/year_month_weekday/operator_arith", + "cppdoc": "cpp/library/chrono/year_month_weekday/operator_arith" + }, + { + "cppref": "cpp/chrono/year_month_weekday/operator_arith_2", + "cppdoc": "cpp/library/chrono/year_month_weekday/operator_arith_2" + }, + { + "cppref": "cpp/chrono/year_month_weekday/operator_cmp", + "cppdoc": "cpp/library/chrono/year_month_weekday/operator_cmp" + }, + { + "cppref": "cpp/chrono/year_month_weekday/accessors", + "cppdoc": "cpp/library/chrono/year_month_weekday/accessors" + }, + { + "cppref": "cpp/chrono/year_month_weekday/operator_ltlt", + "cppdoc": "cpp/library/chrono/year_month_weekday/operator_ltlt" + }, + { + "cppref": "cpp/chrono/year_month_weekday/operator_days", + "cppdoc": "cpp/library/chrono/year_month_weekday/operator_days" + }, + { + "cppref": "cpp/chrono/year_month_weekday/ok", + "cppdoc": "cpp/library/chrono/year_month_weekday/ok" + }, + { + "cppref": "cpp/chrono/time_zone_link/operator_cmp", + "cppdoc": "cpp/library/chrono/time_zone_link/operator_cmp" + }, + { + "cppref": "cpp/chrono/time_zone_link/accessors", + "cppdoc": "cpp/library/chrono/time_zone_link/accessors" + }, + { + "cppref": "cpp/chrono/weekday_last/hash", + "cppdoc": "cpp/library/chrono/weekday_last/hash" + }, + { + "cppref": "cpp/chrono/weekday_last/formatter", + "cppdoc": "cpp/library/chrono/weekday_last/formatter" + }, + { + "cppref": "cpp/chrono/weekday_last/weekday", + "cppdoc": "cpp/library/chrono/weekday_last/weekday" + }, + { + "cppref": "cpp/chrono/weekday_last/weekday_last", + "cppdoc": "cpp/library/chrono/weekday_last/weekday_last" + }, + { + "cppref": "cpp/chrono/weekday_last/operator_cmp", + "cppdoc": "cpp/library/chrono/weekday_last/operator_cmp" + }, + { + "cppref": "cpp/chrono/weekday_last/operator_ltlt", + "cppdoc": "cpp/library/chrono/weekday_last/operator_ltlt" + }, + { + "cppref": "cpp/chrono/weekday_last/ok", + "cppdoc": "cpp/library/chrono/weekday_last/ok" + }, + { + "cppref": "cpp/chrono/month_day_last/hash", + "cppdoc": "cpp/library/chrono/month_day_last/hash" + }, + { + "cppref": "cpp/chrono/month_day_last/formatter", + "cppdoc": "cpp/library/chrono/month_day_last/formatter" + }, + { + "cppref": "cpp/chrono/month_day_last/month_day_last", + "cppdoc": "cpp/library/chrono/month_day_last/month_day_last" + }, + { + "cppref": "cpp/chrono/month_day_last/operator_cmp", + "cppdoc": "cpp/library/chrono/month_day_last/operator_cmp" + }, + { + "cppref": "cpp/chrono/month_day_last/month", + "cppdoc": "cpp/library/chrono/month_day_last/month" + }, + { + "cppref": "cpp/chrono/month_day_last/operator_ltlt", + "cppdoc": "cpp/library/chrono/month_day_last/operator_ltlt" + }, + { + "cppref": "cpp/chrono/month_day_last/ok", + "cppdoc": "cpp/library/chrono/month_day_last/ok" + }, + { + "cppref": "cpp/chrono/day/operator_unsigned", + "cppdoc": "cpp/library/chrono/day/operator_unsigned" + }, + { + "cppref": "cpp/chrono/day/hash", + "cppdoc": "cpp/library/chrono/day/hash" + }, + { + "cppref": "cpp/chrono/day/formatter", + "cppdoc": "cpp/library/chrono/day/formatter" + }, + { + "cppref": "cpp/chrono/day/operator_arith", + "cppdoc": "cpp/library/chrono/day/operator_arith" + }, + { + "cppref": "cpp/chrono/day/operator_arith_2", + "cppdoc": "cpp/library/chrono/day/operator_arith_2" + }, + { + "cppref": "cpp/chrono/day/operator_cmp", + "cppdoc": "cpp/library/chrono/day/operator_cmp" + }, + { + "cppref": "cpp/chrono/day/from_stream", + "cppdoc": "cpp/library/chrono/day/from_stream" + }, + { + "cppref": "cpp/chrono/day/operator_inc_dec", + "cppdoc": "cpp/library/chrono/day/operator_inc_dec" + }, + { + "cppref": "cpp/chrono/day/day", + "cppdoc": "cpp/library/chrono/day/day" + }, + { + "cppref": "cpp/chrono/day/operator_ltlt", + "cppdoc": "cpp/library/chrono/day/operator_ltlt" + }, + { + "cppref": "cpp/chrono/day/ok", + "cppdoc": "cpp/library/chrono/day/ok" + }, + { + "cppref": "cpp/chrono/zoned_time/get_time_zone", + "cppdoc": "cpp/library/chrono/zoned_time/get_time_zone" + }, + { + "cppref": "cpp/chrono/zoned_time/get_local_time", + "cppdoc": "cpp/library/chrono/zoned_time/get_local_time" + }, + { + "cppref": "cpp/chrono/zoned_time/hash", + "cppdoc": "cpp/library/chrono/zoned_time/hash" + }, + { + "cppref": "cpp/chrono/zoned_time/formatter", + "cppdoc": "cpp/library/chrono/zoned_time/formatter" + }, + { + "cppref": "cpp/chrono/zoned_time/deduction_guides", + "cppdoc": "cpp/library/chrono/zoned_time/deduction_guides" + }, + { + "cppref": "cpp/chrono/zoned_time/get_info", + "cppdoc": "cpp/library/chrono/zoned_time/get_info" + }, + { + "cppref": "cpp/chrono/zoned_time/operator_cmp", + "cppdoc": "cpp/library/chrono/zoned_time/operator_cmp" + }, + { + "cppref": "cpp/chrono/zoned_time/operator=", + "cppdoc": "cpp/library/chrono/zoned_time/operator=" + }, + { + "cppref": "cpp/chrono/zoned_time/zoned_time", + "cppdoc": "cpp/library/chrono/zoned_time/zoned_time" + }, + { + "cppref": "cpp/chrono/zoned_time/operator_ltlt", + "cppdoc": "cpp/library/chrono/zoned_time/operator_ltlt" + }, + { + "cppref": "cpp/chrono/zoned_time/get_sys_time", + "cppdoc": "cpp/library/chrono/zoned_time/get_sys_time" + }, + { + "cppref": "cpp/chrono/sys_info/formatter", + "cppdoc": "cpp/library/chrono/sys_info/formatter" + }, + { + "cppref": "cpp/chrono/sys_info/operator_ltlt", + "cppdoc": "cpp/library/chrono/sys_info/operator_ltlt" + }, + { + "cppref": "cpp/chrono/system_clock/from_time_t", + "cppdoc": "cpp/library/chrono/system_clock/from_time_t" + }, + { + "cppref": "cpp/chrono/system_clock/formatter", + "cppdoc": "cpp/library/chrono/system_clock/formatter" + }, + { + "cppref": "cpp/chrono/system_clock/now", + "cppdoc": "cpp/library/chrono/system_clock/now" + }, + { + "cppref": "cpp/chrono/system_clock/to_time_t", + "cppdoc": "cpp/library/chrono/system_clock/to_time_t" + }, + { + "cppref": "cpp/chrono/system_clock/from_stream", + "cppdoc": "cpp/library/chrono/system_clock/from_stream" + }, + { + "cppref": "cpp/chrono/system_clock/operator_ltlt", + "cppdoc": "cpp/library/chrono/system_clock/operator_ltlt" + }, + { + "cppref": "cpp/chrono/tzdb_list/erase_after", + "cppdoc": "cpp/library/chrono/tzdb_list/erase_after" + }, + { + "cppref": "cpp/chrono/tzdb_list/end", + "cppdoc": "cpp/library/chrono/tzdb_list/end" + }, + { + "cppref": "cpp/chrono/tzdb_list/begin", + "cppdoc": "cpp/library/chrono/tzdb_list/begin" + }, + { + "cppref": "cpp/chrono/tzdb_list/front", + "cppdoc": "cpp/library/chrono/tzdb_list/front" + }, + { + "cppref": "cpp/chrono/month/operator_unsigned", + "cppdoc": "cpp/library/chrono/month/operator_unsigned" + }, + { + "cppref": "cpp/chrono/month/hash", + "cppdoc": "cpp/library/chrono/month/hash" + }, + { + "cppref": "cpp/chrono/month/formatter", + "cppdoc": "cpp/library/chrono/month/formatter" + }, + { + "cppref": "cpp/chrono/month/operator_arith", + "cppdoc": "cpp/library/chrono/month/operator_arith" + }, + { + "cppref": "cpp/chrono/month/operator_arith_2", + "cppdoc": "cpp/library/chrono/month/operator_arith_2" + }, + { + "cppref": "cpp/chrono/month/operator_cmp", + "cppdoc": "cpp/library/chrono/month/operator_cmp" + }, + { + "cppref": "cpp/chrono/month/from_stream", + "cppdoc": "cpp/library/chrono/month/from_stream" + }, + { + "cppref": "cpp/chrono/month/operator_inc_dec", + "cppdoc": "cpp/library/chrono/month/operator_inc_dec" + }, + { + "cppref": "cpp/chrono/month/month", + "cppdoc": "cpp/library/chrono/month/month" + }, + { + "cppref": "cpp/chrono/month/operator_ltlt", + "cppdoc": "cpp/library/chrono/month/operator_ltlt" + }, + { + "cppref": "cpp/chrono/month/ok", + "cppdoc": "cpp/library/chrono/month/ok" + }, + { + "cppref": "cpp/chrono/weekday/operator_at", + "cppdoc": "cpp/library/chrono/weekday/operator_at" + }, + { + "cppref": "cpp/chrono/weekday/hash", + "cppdoc": "cpp/library/chrono/weekday/hash" + }, + { + "cppref": "cpp/chrono/weekday/formatter", + "cppdoc": "cpp/library/chrono/weekday/formatter" + }, + { + "cppref": "cpp/chrono/weekday/operator_arith", + "cppdoc": "cpp/library/chrono/weekday/operator_arith" + }, + { + "cppref": "cpp/chrono/weekday/operator_arith_2", + "cppdoc": "cpp/library/chrono/weekday/operator_arith_2" + }, + { + "cppref": "cpp/chrono/weekday/weekday", + "cppdoc": "cpp/library/chrono/weekday/weekday" + }, + { + "cppref": "cpp/chrono/weekday/operator_cmp", + "cppdoc": "cpp/library/chrono/weekday/operator_cmp" + }, + { + "cppref": "cpp/chrono/weekday/from_stream", + "cppdoc": "cpp/library/chrono/weekday/from_stream" + }, + { + "cppref": "cpp/chrono/weekday/operator_inc_dec", + "cppdoc": "cpp/library/chrono/weekday/operator_inc_dec" + }, + { + "cppref": "cpp/chrono/weekday/encoding", + "cppdoc": "cpp/library/chrono/weekday/encoding" + }, + { + "cppref": "cpp/chrono/weekday/operator_ltlt", + "cppdoc": "cpp/library/chrono/weekday/operator_ltlt" + }, + { + "cppref": "cpp/chrono/weekday/ok", + "cppdoc": "cpp/library/chrono/weekday/ok" + }, + { + "cppref": "cpp/chrono/tzdb/locate_zone", + "cppdoc": "cpp/library/chrono/tzdb/locate_zone" + }, + { + "cppref": "cpp/chrono/tzdb/current_zone", + "cppdoc": "cpp/library/chrono/tzdb/current_zone" + }, + { + "cppref": "cpp/filesystem/copy_file", + "cppdoc": "cpp/library/filesystem/copy_file" + }, + { + "cppref": "cpp/filesystem/create_symlink", + "cppdoc": "cpp/library/filesystem/create_symlink" + }, + { + "cppref": "cpp/filesystem/copy_options", + "cppdoc": "cpp/library/filesystem/copy_options" + }, + { + "cppref": "cpp/filesystem/read_symlink", + "cppdoc": "cpp/library/filesystem/read_symlink" + }, + { + "cppref": "cpp/filesystem/remove", + "cppdoc": "cpp/library/filesystem/remove" + }, + { + "cppref": "cpp/filesystem/file_type", + "cppdoc": "cpp/library/filesystem/file_type" + }, + { + "cppref": "cpp/filesystem/is_directory", + "cppdoc": "cpp/library/filesystem/is_directory" + }, + { + "cppref": "cpp/filesystem/current_path", + "cppdoc": "cpp/library/filesystem/current_path" + }, + { + "cppref": "cpp/filesystem/directory_options", + "cppdoc": "cpp/library/filesystem/directory_options" + }, + { + "cppref": "cpp/filesystem/permissions", + "cppdoc": "cpp/library/filesystem/permissions" + }, + { + "cppref": "cpp/filesystem/resize_file", + "cppdoc": "cpp/library/filesystem/resize_file" + }, + { + "cppref": "cpp/filesystem/directory_iterator", + "cppdoc": "cpp/library/filesystem/directory_iterator" + }, + { + "cppref": "cpp/filesystem/copy", + "cppdoc": "cpp/library/filesystem/copy" + }, + { + "cppref": "cpp/filesystem/is_character_file", + "cppdoc": "cpp/library/filesystem/is_character_file" + }, + { + "cppref": "cpp/filesystem/canonical", + "cppdoc": "cpp/library/filesystem/canonical" + }, + { + "cppref": "cpp/filesystem/create_directory", + "cppdoc": "cpp/library/filesystem/create_directory" + }, + { + "cppref": "cpp/filesystem/is_socket", + "cppdoc": "cpp/library/filesystem/is_socket" + }, + { + "cppref": "cpp/filesystem/perm_options", + "cppdoc": "cpp/library/filesystem/perm_options" + }, + { + "cppref": "cpp/filesystem/rename", + "cppdoc": "cpp/library/filesystem/rename" + }, + { + "cppref": "cpp/filesystem/status", + "cppdoc": "cpp/library/filesystem/status" + }, + { + "cppref": "cpp/filesystem/copy_symlink", + "cppdoc": "cpp/library/filesystem/copy_symlink" + }, + { + "cppref": "cpp/filesystem/temp_directory_path", + "cppdoc": "cpp/library/filesystem/temp_directory_path" + }, + { + "cppref": "cpp/filesystem/file_status", + "cppdoc": "cpp/library/filesystem/file_status" + }, + { + "cppref": "cpp/filesystem/create_hard_link", + "cppdoc": "cpp/library/filesystem/create_hard_link" + }, + { + "cppref": "cpp/filesystem/space", + "cppdoc": "cpp/library/filesystem/space" + }, + { + "cppref": "cpp/filesystem/file_time_type", + "cppdoc": "cpp/library/filesystem/file_time_type" + }, + { + "cppref": "cpp/filesystem/last_write_time", + "cppdoc": "cpp/library/filesystem/last_write_time" + }, + { + "cppref": "cpp/filesystem/hard_link_count", + "cppdoc": "cpp/library/filesystem/hard_link_count" + }, + { + "cppref": "cpp/filesystem/is_regular_file", + "cppdoc": "cpp/library/filesystem/is_regular_file" + }, + { + "cppref": "cpp/filesystem/absolute", + "cppdoc": "cpp/library/filesystem/absolute" + }, + { + "cppref": "cpp/filesystem/perms", + "cppdoc": "cpp/library/filesystem/perms" + }, + { + "cppref": "cpp/filesystem/path", + "cppdoc": "cpp/library/filesystem/path" + }, + { + "cppref": "cpp/filesystem/is_other", + "cppdoc": "cpp/library/filesystem/is_other" + }, + { + "cppref": "cpp/filesystem/is_empty", + "cppdoc": "cpp/library/filesystem/is_empty" + }, + { + "cppref": "cpp/filesystem/space_info", + "cppdoc": "cpp/library/filesystem/space_info" + }, + { + "cppref": "cpp/filesystem/file_size", + "cppdoc": "cpp/library/filesystem/file_size" + }, + { + "cppref": "cpp/filesystem/is_symlink", + "cppdoc": "cpp/library/filesystem/is_symlink" + }, + { + "cppref": "cpp/filesystem/status_known", + "cppdoc": "cpp/library/filesystem/status_known" + }, + { + "cppref": "cpp/filesystem/is_block_file", + "cppdoc": "cpp/library/filesystem/is_block_file" + }, + { + "cppref": "cpp/filesystem/relative", + "cppdoc": "cpp/library/filesystem/relative" + }, + { + "cppref": "cpp/filesystem/recursive_directory_iterator", + "cppdoc": "cpp/library/filesystem/recursive_directory_iterator" + }, + { + "cppref": "cpp/filesystem/is_fifo", + "cppdoc": "cpp/library/filesystem/is_fifo" + }, + { + "cppref": "cpp/filesystem/equivalent", + "cppdoc": "cpp/library/filesystem/equivalent" + }, + { + "cppref": "cpp/filesystem/directory_entry", + "cppdoc": "cpp/library/filesystem/directory_entry" + }, + { + "cppref": "cpp/filesystem/exists", + "cppdoc": "cpp/library/filesystem/exists" + }, + { + "cppref": "cpp/filesystem/filesystem_error", + "cppdoc": "cpp/library/filesystem/filesystem_error" + }, + { + "cppref": "cpp/filesystem/directory_entry/assign", + "cppdoc": "cpp/library/filesystem/directory_entry/assign" + }, + { + "cppref": "cpp/filesystem/directory_entry/replace_filename", + "cppdoc": "cpp/library/filesystem/directory_entry/replace_filename" + }, + { + "cppref": "cpp/filesystem/directory_entry/is_directory", + "cppdoc": "cpp/library/filesystem/directory_entry/is_directory" + }, + { + "cppref": "cpp/filesystem/directory_entry/is_character_file", + "cppdoc": "cpp/library/filesystem/directory_entry/is_character_file" + }, + { + "cppref": "cpp/filesystem/directory_entry/is_socket", + "cppdoc": "cpp/library/filesystem/directory_entry/is_socket" + }, + { + "cppref": "cpp/filesystem/directory_entry/status", + "cppdoc": "cpp/library/filesystem/directory_entry/status" + }, + { + "cppref": "cpp/filesystem/directory_entry/last_write_time", + "cppdoc": "cpp/library/filesystem/directory_entry/last_write_time" + }, + { + "cppref": "cpp/filesystem/directory_entry/hard_link_count", + "cppdoc": "cpp/library/filesystem/directory_entry/hard_link_count" + }, + { + "cppref": "cpp/filesystem/directory_entry/refresh", + "cppdoc": "cpp/library/filesystem/directory_entry/refresh" + }, + { + "cppref": "cpp/filesystem/directory_entry/is_regular_file", + "cppdoc": "cpp/library/filesystem/directory_entry/is_regular_file" + }, + { + "cppref": "cpp/filesystem/directory_entry/operator_cmp", + "cppdoc": "cpp/library/filesystem/directory_entry/operator_cmp" + }, + { + "cppref": "cpp/filesystem/directory_entry/path", + "cppdoc": "cpp/library/filesystem/directory_entry/path" + }, + { + "cppref": "cpp/filesystem/directory_entry/is_other", + "cppdoc": "cpp/library/filesystem/directory_entry/is_other" + }, + { + "cppref": "cpp/filesystem/directory_entry/file_size", + "cppdoc": "cpp/library/filesystem/directory_entry/file_size" + }, + { + "cppref": "cpp/filesystem/directory_entry/is_symlink", + "cppdoc": "cpp/library/filesystem/directory_entry/is_symlink" + }, + { + "cppref": "cpp/filesystem/directory_entry/is_block_file", + "cppdoc": "cpp/library/filesystem/directory_entry/is_block_file" + }, + { + "cppref": "cpp/filesystem/directory_entry/operator=", + "cppdoc": "cpp/library/filesystem/directory_entry/operator=" + }, + { + "cppref": "cpp/filesystem/directory_entry/operator_ltlt", + "cppdoc": "cpp/library/filesystem/directory_entry/operator_ltlt" + }, + { + "cppref": "cpp/filesystem/directory_entry/is_fifo", + "cppdoc": "cpp/library/filesystem/directory_entry/is_fifo" + }, + { + "cppref": "cpp/filesystem/directory_entry/directory_entry", + "cppdoc": "cpp/library/filesystem/directory_entry/directory_entry" + }, + { + "cppref": "cpp/filesystem/directory_entry/exists", + "cppdoc": "cpp/library/filesystem/directory_entry/exists" + }, + { + "cppref": "cpp/filesystem/directory_iterator/directory_iterator", + "cppdoc": "cpp/library/filesystem/directory_iterator/directory_iterator" + }, + { + "cppref": "cpp/filesystem/directory_iterator/begin", + "cppdoc": "cpp/library/filesystem/directory_iterator/begin" + }, + { + "cppref": "cpp/filesystem/directory_iterator/operator_star_", + "cppdoc": "cpp/library/filesystem/directory_iterator/operator_star_" + }, + { + "cppref": "cpp/filesystem/directory_iterator/operator=", + "cppdoc": "cpp/library/filesystem/directory_iterator/operator=" + }, + { + "cppref": "cpp/filesystem/directory_iterator/increment", + "cppdoc": "cpp/library/filesystem/directory_iterator/increment" + }, + { + "cppref": "cpp/filesystem/file_status/operator==", + "cppdoc": "cpp/library/filesystem/file_status/operator==" + }, + { + "cppref": "cpp/filesystem/file_status/permissions", + "cppdoc": "cpp/library/filesystem/file_status/permissions" + }, + { + "cppref": "cpp/filesystem/file_status/file_status", + "cppdoc": "cpp/library/filesystem/file_status/file_status" + }, + { + "cppref": "cpp/filesystem/file_status/type", + "cppdoc": "cpp/library/filesystem/file_status/type" + }, + { + "cppref": "cpp/filesystem/file_status/operator=", + "cppdoc": "cpp/library/filesystem/file_status/operator=" + }, + { + "cppref": "cpp/filesystem/path/stem", + "cppdoc": "cpp/library/filesystem/path/stem" + }, + { + "cppref": "cpp/filesystem/path/assign", + "cppdoc": "cpp/library/filesystem/path/assign" + }, + { + "cppref": "cpp/filesystem/path/remove_filename", + "cppdoc": "cpp/library/filesystem/path/remove_filename" + }, + { + "cppref": "cpp/filesystem/path/root_path", + "cppdoc": "cpp/library/filesystem/path/root_path" + }, + { + "cppref": "cpp/filesystem/path/replace_filename", + "cppdoc": "cpp/library/filesystem/path/replace_filename" + }, + { + "cppref": "cpp/filesystem/path/has_path", + "cppdoc": "cpp/library/filesystem/path/has_path" + }, + { + "cppref": "cpp/filesystem/path/empty", + "cppdoc": "cpp/library/filesystem/path/empty" + }, + { + "cppref": "cpp/filesystem/path/hash", + "cppdoc": "cpp/library/filesystem/path/hash" + }, + { + "cppref": "cpp/filesystem/path/operator_slash", + "cppdoc": "cpp/library/filesystem/path/operator_slash" + }, + { + "cppref": "cpp/filesystem/path/relative_path", + "cppdoc": "cpp/library/filesystem/path/relative_path" + }, + { + "cppref": "cpp/filesystem/path/root_directory", + "cppdoc": "cpp/library/filesystem/path/root_directory" + }, + { + "cppref": "cpp/filesystem/path/operator_ltltgtgt", + "cppdoc": "cpp/library/filesystem/path/operator_ltltgtgt" + }, + { + "cppref": "cpp/filesystem/path/swap2", + "cppdoc": "cpp/library/filesystem/path/swap2" + }, + { + "cppref": "cpp/filesystem/path/native", + "cppdoc": "cpp/library/filesystem/path/native" + }, + { + "cppref": "cpp/filesystem/path/formatter", + "cppdoc": "cpp/library/filesystem/path/formatter" + }, + { + "cppref": "cpp/filesystem/path/format", + "cppdoc": "cpp/library/filesystem/path/format" + }, + { + "cppref": "cpp/filesystem/path/begin", + "cppdoc": "cpp/library/filesystem/path/begin" + }, + { + "cppref": "cpp/filesystem/path/lexically_normal", + "cppdoc": "cpp/library/filesystem/path/lexically_normal" + }, + { + "cppref": "cpp/filesystem/path/root_name", + "cppdoc": "cpp/library/filesystem/path/root_name" + }, + { + "cppref": "cpp/filesystem/path/extension", + "cppdoc": "cpp/library/filesystem/path/extension" + }, + { + "cppref": "cpp/filesystem/path/string", + "cppdoc": "cpp/library/filesystem/path/string" + }, + { + "cppref": "cpp/filesystem/path/generic_string", + "cppdoc": "cpp/library/filesystem/path/generic_string" + }, + { + "cppref": "cpp/filesystem/path/filename", + "cppdoc": "cpp/library/filesystem/path/filename" + }, + { + "cppref": "cpp/filesystem/path/swap", + "cppdoc": "cpp/library/filesystem/path/swap" + }, + { + "cppref": "cpp/filesystem/path/compare", + "cppdoc": "cpp/library/filesystem/path/compare" + }, + { + "cppref": "cpp/filesystem/path/append", + "cppdoc": "cpp/library/filesystem/path/append" + }, + { + "cppref": "cpp/filesystem/path/operator_cmp", + "cppdoc": "cpp/library/filesystem/path/operator_cmp" + }, + { + "cppref": "cpp/filesystem/path/path", + "cppdoc": "cpp/library/filesystem/path/path" + }, + { + "cppref": "cpp/filesystem/path/replace_extension", + "cppdoc": "cpp/library/filesystem/path/replace_extension" + }, + { + "cppref": "cpp/filesystem/path/~path", + "cppdoc": "cpp/library/filesystem/path/~path" + }, + { + "cppref": "cpp/filesystem/path/hash_value", + "cppdoc": "cpp/library/filesystem/path/hash_value" + }, + { + "cppref": "cpp/filesystem/path/concat", + "cppdoc": "cpp/library/filesystem/path/concat" + }, + { + "cppref": "cpp/filesystem/path/is_absrel", + "cppdoc": "cpp/library/filesystem/path/is_absrel" + }, + { + "cppref": "cpp/filesystem/path/operator=", + "cppdoc": "cpp/library/filesystem/path/operator=" + }, + { + "cppref": "cpp/filesystem/path/parent_path", + "cppdoc": "cpp/library/filesystem/path/parent_path" + }, + { + "cppref": "cpp/filesystem/path/make_preferred", + "cppdoc": "cpp/library/filesystem/path/make_preferred" + }, + { + "cppref": "cpp/filesystem/path/u8path", + "cppdoc": "cpp/library/filesystem/path/u8path" + }, + { + "cppref": "cpp/filesystem/path/clear", + "cppdoc": "cpp/library/filesystem/path/clear" + }, + { + "cppref": "cpp/filesystem/filesystem_error/what", + "cppdoc": "cpp/library/filesystem/filesystem_error/what" + }, + { + "cppref": "cpp/filesystem/filesystem_error/path", + "cppdoc": "cpp/library/filesystem/filesystem_error/path" + }, + { + "cppref": "cpp/filesystem/filesystem_error/operator=", + "cppdoc": "cpp/library/filesystem/filesystem_error/operator=" + }, + { + "cppref": "cpp/filesystem/filesystem_error/filesystem_error", + "cppdoc": "cpp/library/filesystem/filesystem_error/filesystem_error" + }, + { + "cppref": "cpp/filesystem/recursive_directory_iterator/recursion_pending", + "cppdoc": "cpp/library/filesystem/recursive_directory_iterator/recursion_pending" + }, + { + "cppref": "cpp/filesystem/recursive_directory_iterator/begin", + "cppdoc": "cpp/library/filesystem/recursive_directory_iterator/begin" + }, + { + "cppref": "cpp/filesystem/recursive_directory_iterator/depth", + "cppdoc": "cpp/library/filesystem/recursive_directory_iterator/depth" + }, + { + "cppref": "cpp/filesystem/recursive_directory_iterator/operator_star_", + "cppdoc": "cpp/library/filesystem/recursive_directory_iterator/operator_star_" + }, + { + "cppref": "cpp/filesystem/recursive_directory_iterator/options", + "cppdoc": "cpp/library/filesystem/recursive_directory_iterator/options" + }, + { + "cppref": "cpp/filesystem/recursive_directory_iterator/disable_recursion_pending", + "cppdoc": "cpp/library/filesystem/recursive_directory_iterator/disable_recursion_pending" + }, + { + "cppref": "cpp/filesystem/recursive_directory_iterator/operator=", + "cppdoc": "cpp/library/filesystem/recursive_directory_iterator/operator=" + }, + { + "cppref": "cpp/filesystem/recursive_directory_iterator/pop", + "cppdoc": "cpp/library/filesystem/recursive_directory_iterator/pop" + }, + { + "cppref": "cpp/filesystem/recursive_directory_iterator/recursive_directory_iterator", + "cppdoc": "cpp/library/filesystem/recursive_directory_iterator/recursive_directory_iterator" + }, + { + "cppref": "cpp/filesystem/recursive_directory_iterator/increment", + "cppdoc": "cpp/library/filesystem/recursive_directory_iterator/increment" + }, + { + "cppref": "c/atomic", + "cppdoc": "c/library/atomic" + }, + { + "cppref": "c/index", + "cppdoc": "c/library/index" + }, + { + "cppref": "c/types", + "cppdoc": "c/library/types" + }, + { + "cppref": "c/thread", + "cppdoc": "c/library/thread" + }, + { + "cppref": "c/numeric", + "cppdoc": "c/library/numeric" + }, + { + "cppref": "c/variadic", + "cppdoc": "c/library/variadic" + }, + { + "cppref": "c/string", + "cppdoc": "c/library/string" + }, + { + "cppref": "c/compiler_support", + "cppdoc": "c/library/compiler_support" + }, + { + "cppref": "c/error", + "cppdoc": "c/library/error" + }, + { + "cppref": "c/memory", + "cppdoc": "c/library/memory" + }, + { + "cppref": "c/io", + "cppdoc": "c/library/io" + }, + { + "cppref": "c/chrono", + "cppdoc": "c/library/chrono" + }, + { + "cppref": "c/language", + "cppdoc": "c/language" + }, + { + "cppref": "c/links", + "cppdoc": "c/library/links" + }, + { + "cppref": "c/header", + "cppdoc": "c/library/header" + }, + { + "cppref": "c/locale", + "cppdoc": "c/library/locale" + }, + { + "cppref": "c/algorithm", + "cppdoc": "c/library/algorithm" + }, + { + "cppref": "c/utility", + "cppdoc": "c/language/utility" + }, + { + "cppref": "c/preprocessor", + "cppdoc": "c/language/preprocessor" + }, + { + "cppref": "c/program", + "cppdoc": "c/library/program" + }, + { + "cppref": "c/preprocessor/replace", + "cppdoc": "c/language/preprocessor/replace" + }, + { + "cppref": "c/preprocessor/impl", + "cppdoc": "c/language/preprocessor/impl" + }, + { + "cppref": "c/preprocessor/conditional", + "cppdoc": "c/language/preprocessor/conditional" + }, + { + "cppref": "c/preprocessor/line", + "cppdoc": "c/language/preprocessor/line" + }, + { + "cppref": "c/preprocessor/error", + "cppdoc": "c/language/preprocessor/error" + }, + { + "cppref": "c/preprocessor/embed", + "cppdoc": "c/language/preprocessor/embed" + }, + { + "cppref": "c/preprocessor/include", + "cppdoc": "c/language/preprocessor/include" + }, + { + "cppref": "c/locale/LC_categories", + "cppdoc": "c/library/locale/LC_categories" + }, + { + "cppref": "c/locale/localeconv", + "cppdoc": "c/library/locale/localeconv" + }, + { + "cppref": "c/locale/setlocale", + "cppdoc": "c/library/locale/setlocale" + }, + { + "cppref": "c/locale/lconv", + "cppdoc": "c/library/locale/lconv" + }, + { + "cppref": "c/variadic/va_list", + "cppdoc": "c/library/variadic/va_list" + }, + { + "cppref": "c/variadic/va_copy", + "cppdoc": "c/library/variadic/va_copy" + }, + { + "cppref": "c/variadic/va_arg", + "cppdoc": "c/library/variadic/va_arg" + }, + { + "cppref": "c/variadic/va_start", + "cppdoc": "c/library/variadic/va_start" + }, + { + "cppref": "c/variadic/va_end", + "cppdoc": "c/library/variadic/va_end" + }, + { + "cppref": "c/string/byte", + "cppdoc": "c/library/string/byte" + }, + { + "cppref": "c/string/multibyte", + "cppdoc": "c/library/string/multibyte" + }, + { + "cppref": "c/string/wide", + "cppdoc": "c/library/string/wide" + }, + { + "cppref": "c/string/multibyte/mbsinit", + "cppdoc": "c/library/string/multibyte/mbsinit" + }, + { + "cppref": "c/string/multibyte/mbrtoc16", + "cppdoc": "c/library/string/multibyte/mbrtoc16" + }, + { + "cppref": "c/string/multibyte/wctomb", + "cppdoc": "c/library/string/multibyte/wctomb" + }, + { + "cppref": "c/string/multibyte/mbstate_t", + "cppdoc": "c/library/string/multibyte/mbstate_t" + }, + { + "cppref": "c/string/multibyte/char8_t", + "cppdoc": "c/library/string/multibyte/char8_t" + }, + { + "cppref": "c/string/multibyte/mbtowc", + "cppdoc": "c/library/string/multibyte/mbtowc" + }, + { + "cppref": "c/string/multibyte/mbrtoc32", + "cppdoc": "c/library/string/multibyte/mbrtoc32" + }, + { + "cppref": "c/string/multibyte/wcsrtombs", + "cppdoc": "c/library/string/multibyte/wcsrtombs" + }, + { + "cppref": "c/string/multibyte/wcrtomb", + "cppdoc": "c/library/string/multibyte/wcrtomb" + }, + { + "cppref": "c/string/multibyte/wctob", + "cppdoc": "c/library/string/multibyte/wctob" + }, + { + "cppref": "c/string/multibyte/mbrlen", + "cppdoc": "c/library/string/multibyte/mbrlen" + }, + { + "cppref": "c/string/multibyte/c32rtomb", + "cppdoc": "c/library/string/multibyte/c32rtomb" + }, + { + "cppref": "c/string/multibyte/mbrtowc", + "cppdoc": "c/library/string/multibyte/mbrtowc" + }, + { + "cppref": "c/string/multibyte/c16rtomb", + "cppdoc": "c/library/string/multibyte/c16rtomb" + }, + { + "cppref": "c/string/multibyte/btowc", + "cppdoc": "c/library/string/multibyte/btowc" + }, + { + "cppref": "c/string/multibyte/char16_t", + "cppdoc": "c/library/string/multibyte/char16_t" + }, + { + "cppref": "c/string/multibyte/mbstowcs", + "cppdoc": "c/library/string/multibyte/mbstowcs" + }, + { + "cppref": "c/string/multibyte/wcstombs", + "cppdoc": "c/library/string/multibyte/wcstombs" + }, + { + "cppref": "c/string/multibyte/c8rtomb", + "cppdoc": "c/library/string/multibyte/c8rtomb" + }, + { + "cppref": "c/string/multibyte/mbsrtowcs", + "cppdoc": "c/library/string/multibyte/mbsrtowcs" + }, + { + "cppref": "c/string/multibyte/mblen", + "cppdoc": "c/library/string/multibyte/mblen" + }, + { + "cppref": "c/string/multibyte/mbrtoc8", + "cppdoc": "c/library/string/multibyte/mbrtoc8" + }, + { + "cppref": "c/string/multibyte/char32_t", + "cppdoc": "c/library/string/multibyte/char32_t" + }, + { + "cppref": "c/string/byte/memccpy", + "cppdoc": "c/library/string/byte/memccpy" + }, + { + "cppref": "c/string/byte/islower", + "cppdoc": "c/library/string/byte/islower" + }, + { + "cppref": "c/string/byte/memmove", + "cppdoc": "c/library/string/byte/memmove" + }, + { + "cppref": "c/string/byte/strpbrk", + "cppdoc": "c/library/string/byte/strpbrk" + }, + { + "cppref": "c/string/byte/iscntrl", + "cppdoc": "c/library/string/byte/iscntrl" + }, + { + "cppref": "c/string/byte/strspn", + "cppdoc": "c/library/string/byte/strspn" + }, + { + "cppref": "c/string/byte/strlen", + "cppdoc": "c/library/string/byte/strlen" + }, + { + "cppref": "c/string/byte/toupper", + "cppdoc": "c/library/string/byte/toupper" + }, + { + "cppref": "c/string/byte/isprint", + "cppdoc": "c/library/string/byte/isprint" + }, + { + "cppref": "c/string/byte/strchr", + "cppdoc": "c/library/string/byte/strchr" + }, + { + "cppref": "c/string/byte/strtoimax", + "cppdoc": "c/library/string/byte/strtoimax" + }, + { + "cppref": "c/string/byte/strrchr", + "cppdoc": "c/library/string/byte/strrchr" + }, + { + "cppref": "c/string/byte/memcpy", + "cppdoc": "c/library/string/byte/memcpy" + }, + { + "cppref": "c/string/byte/strcat", + "cppdoc": "c/library/string/byte/strcat" + }, + { + "cppref": "c/string/byte/strncpy", + "cppdoc": "c/library/string/byte/strncpy" + }, + { + "cppref": "c/string/byte/isalpha", + "cppdoc": "c/library/string/byte/isalpha" + }, + { + "cppref": "c/string/byte/strtol", + "cppdoc": "c/library/string/byte/strtol" + }, + { + "cppref": "c/string/byte/memset", + "cppdoc": "c/library/string/byte/memset" + }, + { + "cppref": "c/string/byte/strtoul", + "cppdoc": "c/library/string/byte/strtoul" + }, + { + "cppref": "c/string/byte/strtok", + "cppdoc": "c/library/string/byte/strtok" + }, + { + "cppref": "c/string/byte/ispunct", + "cppdoc": "c/library/string/byte/ispunct" + }, + { + "cppref": "c/string/byte/atoi", + "cppdoc": "c/library/string/byte/atoi" + }, + { + "cppref": "c/string/byte/strdup", + "cppdoc": "c/library/string/byte/strdup" + }, + { + "cppref": "c/string/byte/strcoll", + "cppdoc": "c/library/string/byte/strcoll" + }, + { + "cppref": "c/string/byte/strndup", + "cppdoc": "c/library/string/byte/strndup" + }, + { + "cppref": "c/string/byte/isdigit", + "cppdoc": "c/library/string/byte/isdigit" + }, + { + "cppref": "c/string/byte/memcmp", + "cppdoc": "c/library/string/byte/memcmp" + }, + { + "cppref": "c/string/byte/strerror", + "cppdoc": "c/library/string/byte/strerror" + }, + { + "cppref": "c/string/byte/isspace", + "cppdoc": "c/library/string/byte/isspace" + }, + { + "cppref": "c/string/byte/strcspn", + "cppdoc": "c/library/string/byte/strcspn" + }, + { + "cppref": "c/string/byte/strxfrm", + "cppdoc": "c/library/string/byte/strxfrm" + }, + { + "cppref": "c/string/byte/strncat", + "cppdoc": "c/library/string/byte/strncat" + }, + { + "cppref": "c/string/byte/isxdigit", + "cppdoc": "c/library/string/byte/isxdigit" + }, + { + "cppref": "c/string/byte/atof", + "cppdoc": "c/library/string/byte/atof" + }, + { + "cppref": "c/string/byte/strcmp", + "cppdoc": "c/library/string/byte/strcmp" + }, + { + "cppref": "c/string/byte/strstr", + "cppdoc": "c/library/string/byte/strstr" + }, + { + "cppref": "c/string/byte/isgraph", + "cppdoc": "c/library/string/byte/isgraph" + }, + { + "cppref": "c/string/byte/tolower", + "cppdoc": "c/library/string/byte/tolower" + }, + { + "cppref": "c/string/byte/isblank", + "cppdoc": "c/library/string/byte/isblank" + }, + { + "cppref": "c/string/byte/strtof", + "cppdoc": "c/library/string/byte/strtof" + }, + { + "cppref": "c/string/byte/isalnum", + "cppdoc": "c/library/string/byte/isalnum" + }, + { + "cppref": "c/string/byte/strcpy", + "cppdoc": "c/library/string/byte/strcpy" + }, + { + "cppref": "c/string/byte/strncmp", + "cppdoc": "c/library/string/byte/strncmp" + }, + { + "cppref": "c/string/byte/memchr", + "cppdoc": "c/library/string/byte/memchr" + }, + { + "cppref": "c/string/byte/strfromf", + "cppdoc": "c/library/string/byte/strfromf" + }, + { + "cppref": "c/string/byte/isupper", + "cppdoc": "c/library/string/byte/isupper" + }, + { + "cppref": "c/string/wide/towupper", + "cppdoc": "c/library/string/wide/towupper" + }, + { + "cppref": "c/string/wide/wcsncat", + "cppdoc": "c/library/string/wide/wcsncat" + }, + { + "cppref": "c/string/wide/wcscpy", + "cppdoc": "c/library/string/wide/wcscpy" + }, + { + "cppref": "c/string/wide/wcscmp", + "cppdoc": "c/library/string/wide/wcscmp" + }, + { + "cppref": "c/string/wide/wcsstr", + "cppdoc": "c/library/string/wide/wcsstr" + }, + { + "cppref": "c/string/wide/wcstok", + "cppdoc": "c/library/string/wide/wcstok" + }, + { + "cppref": "c/string/wide/wmemcpy", + "cppdoc": "c/library/string/wide/wmemcpy" + }, + { + "cppref": "c/string/wide/wmemset", + "cppdoc": "c/library/string/wide/wmemset" + }, + { + "cppref": "c/string/wide/wcstol", + "cppdoc": "c/library/string/wide/wcstol" + }, + { + "cppref": "c/string/wide/towctrans", + "cppdoc": "c/library/string/wide/towctrans" + }, + { + "cppref": "c/string/wide/wcspbrk", + "cppdoc": "c/library/string/wide/wcspbrk" + }, + { + "cppref": "c/string/wide/wcschr", + "cppdoc": "c/library/string/wide/wcschr" + }, + { + "cppref": "c/string/wide/wmemcmp", + "cppdoc": "c/library/string/wide/wmemcmp" + }, + { + "cppref": "c/string/wide/iswdigit", + "cppdoc": "c/library/string/wide/iswdigit" + }, + { + "cppref": "c/string/wide/wcscat", + "cppdoc": "c/library/string/wide/wcscat" + }, + { + "cppref": "c/string/wide/wmemmove", + "cppdoc": "c/library/string/wide/wmemmove" + }, + { + "cppref": "c/string/wide/iswupper", + "cppdoc": "c/library/string/wide/iswupper" + }, + { + "cppref": "c/string/wide/iswblank", + "cppdoc": "c/library/string/wide/iswblank" + }, + { + "cppref": "c/string/wide/iswpunct", + "cppdoc": "c/library/string/wide/iswpunct" + }, + { + "cppref": "c/string/wide/iswlower", + "cppdoc": "c/library/string/wide/iswlower" + }, + { + "cppref": "c/string/wide/wctype", + "cppdoc": "c/library/string/wide/wctype" + }, + { + "cppref": "c/string/wide/wcsrchr", + "cppdoc": "c/library/string/wide/wcsrchr" + }, + { + "cppref": "c/string/wide/wcscspn", + "cppdoc": "c/library/string/wide/wcscspn" + }, + { + "cppref": "c/string/wide/iswcntrl", + "cppdoc": "c/library/string/wide/iswcntrl" + }, + { + "cppref": "c/string/wide/wcstoul", + "cppdoc": "c/library/string/wide/wcstoul" + }, + { + "cppref": "c/string/wide/wcstoimax", + "cppdoc": "c/library/string/wide/wcstoimax" + }, + { + "cppref": "c/string/wide/iswalnum", + "cppdoc": "c/library/string/wide/iswalnum" + }, + { + "cppref": "c/string/wide/iswctype", + "cppdoc": "c/library/string/wide/iswctype" + }, + { + "cppref": "c/string/wide/towlower", + "cppdoc": "c/library/string/wide/towlower" + }, + { + "cppref": "c/string/wide/iswalpha", + "cppdoc": "c/library/string/wide/iswalpha" + }, + { + "cppref": "c/string/wide/wcsncmp", + "cppdoc": "c/library/string/wide/wcsncmp" + }, + { + "cppref": "c/string/wide/iswprint", + "cppdoc": "c/library/string/wide/iswprint" + }, + { + "cppref": "c/string/wide/iswxdigit", + "cppdoc": "c/library/string/wide/iswxdigit" + }, + { + "cppref": "c/string/wide/wcsxfrm", + "cppdoc": "c/library/string/wide/wcsxfrm" + }, + { + "cppref": "c/string/wide/wcsspn", + "cppdoc": "c/library/string/wide/wcsspn" + }, + { + "cppref": "c/string/wide/wcstof", + "cppdoc": "c/library/string/wide/wcstof" + }, + { + "cppref": "c/string/wide/wmemchr", + "cppdoc": "c/library/string/wide/wmemchr" + }, + { + "cppref": "c/string/wide/wcsncpy", + "cppdoc": "c/library/string/wide/wcsncpy" + }, + { + "cppref": "c/string/wide/wctrans", + "cppdoc": "c/library/string/wide/wctrans" + }, + { + "cppref": "c/string/wide/iswgraph", + "cppdoc": "c/library/string/wide/iswgraph" + }, + { + "cppref": "c/string/wide/iswspace", + "cppdoc": "c/library/string/wide/iswspace" + }, + { + "cppref": "c/string/wide/wcscoll", + "cppdoc": "c/library/string/wide/wcscoll" + }, + { + "cppref": "c/string/wide/wcslen", + "cppdoc": "c/library/string/wide/wcslen" + }, + { + "cppref": "c/algorithm/qsort", + "cppdoc": "c/library/algorithm/qsort" + }, + { + "cppref": "c/algorithm/bsearch", + "cppdoc": "c/library/algorithm/bsearch" + }, + { + "cppref": "c/numeric/bit_manip", + "cppdoc": "c/library/numeric/bit_manip" + }, + { + "cppref": "c/numeric/fenv", + "cppdoc": "c/library/numeric/fenv" + }, + { + "cppref": "c/numeric/ckd_mul", + "cppdoc": "c/library/numeric/ckd_mul" + }, + { + "cppref": "c/numeric/tgmath", + "cppdoc": "c/library/numeric/tgmath" + }, + { + "cppref": "c/numeric/ckd_sub", + "cppdoc": "c/library/numeric/ckd_sub" + }, + { + "cppref": "c/numeric/endian", + "cppdoc": "c/library/numeric/endian" + }, + { + "cppref": "c/numeric/math", + "cppdoc": "c/library/numeric/math" + }, + { + "cppref": "c/numeric/random", + "cppdoc": "c/library/numeric/random" + }, + { + "cppref": "c/numeric/ckd_add", + "cppdoc": "c/library/numeric/ckd_add" + }, + { + "cppref": "c/numeric/complex", + "cppdoc": "c/library/numeric/complex" + }, + { + "cppref": "c/numeric/complex/casinh", + "cppdoc": "c/library/numeric/complex/casinh" + }, + { + "cppref": "c/numeric/complex/ctan", + "cppdoc": "c/library/numeric/complex/ctan" + }, + { + "cppref": "c/numeric/complex/csinh", + "cppdoc": "c/library/numeric/complex/csinh" + }, + { + "cppref": "c/numeric/complex/cabs", + "cppdoc": "c/library/numeric/complex/cabs" + }, + { + "cppref": "c/numeric/complex/ctanh", + "cppdoc": "c/library/numeric/complex/ctanh" + }, + { + "cppref": "c/numeric/complex/ccosh", + "cppdoc": "c/library/numeric/complex/ccosh" + }, + { + "cppref": "c/numeric/complex/catan", + "cppdoc": "c/library/numeric/complex/catan" + }, + { + "cppref": "c/numeric/complex/carg", + "cppdoc": "c/library/numeric/complex/carg" + }, + { + "cppref": "c/numeric/complex/conj", + "cppdoc": "c/library/numeric/complex/conj" + }, + { + "cppref": "c/numeric/complex/cexp", + "cppdoc": "c/library/numeric/complex/cexp" + }, + { + "cppref": "c/numeric/complex/ccos", + "cppdoc": "c/library/numeric/complex/ccos" + }, + { + "cppref": "c/numeric/complex/casin", + "cppdoc": "c/library/numeric/complex/casin" + }, + { + "cppref": "c/numeric/complex/I", + "cppdoc": "c/library/numeric/complex/I" + }, + { + "cppref": "c/numeric/complex/CMPLX", + "cppdoc": "c/library/numeric/complex/CMPLX" + }, + { + "cppref": "c/numeric/complex/clog", + "cppdoc": "c/library/numeric/complex/clog" + }, + { + "cppref": "c/numeric/complex/cproj", + "cppdoc": "c/library/numeric/complex/cproj" + }, + { + "cppref": "c/numeric/complex/imaginary", + "cppdoc": "c/library/numeric/complex/imaginary" + }, + { + "cppref": "c/numeric/complex/Complex_I", + "cppdoc": "c/library/numeric/complex/Complex_I" + }, + { + "cppref": "c/numeric/complex/csin", + "cppdoc": "c/library/numeric/complex/csin" + }, + { + "cppref": "c/numeric/complex/csqrt", + "cppdoc": "c/library/numeric/complex/csqrt" + }, + { + "cppref": "c/numeric/complex/catanh", + "cppdoc": "c/library/numeric/complex/catanh" + }, + { + "cppref": "c/numeric/complex/cimag", + "cppdoc": "c/library/numeric/complex/cimag" + }, + { + "cppref": "c/numeric/complex/creal", + "cppdoc": "c/library/numeric/complex/creal" + }, + { + "cppref": "c/numeric/complex/cpow", + "cppdoc": "c/library/numeric/complex/cpow" + }, + { + "cppref": "c/numeric/complex/Imaginary_I", + "cppdoc": "c/library/numeric/complex/Imaginary_I" + }, + { + "cppref": "c/numeric/complex/cacosh", + "cppdoc": "c/library/numeric/complex/cacosh" + }, + { + "cppref": "c/numeric/complex/cacos", + "cppdoc": "c/library/numeric/complex/cacos" + }, + { + "cppref": "c/numeric/complex/complex", + "cppdoc": "c/library/numeric/complex/complex" + }, + { + "cppref": "c/numeric/bit/endian", + "cppdoc": "c/library/numeric/bit/endian" + }, + { + "cppref": "c/numeric/bit/stdc_leading_zeros", + "cppdoc": "c/library/numeric/bit/stdc_leading_zeros" + }, + { + "cppref": "c/numeric/random/RAND_MAX", + "cppdoc": "c/library/numeric/random/RAND_MAX" + }, + { + "cppref": "c/numeric/random/rand", + "cppdoc": "c/library/numeric/random/rand" + }, + { + "cppref": "c/numeric/random/srand", + "cppdoc": "c/library/numeric/random/srand" + }, + { + "cppref": "c/numeric/fenv/feupdateenv", + "cppdoc": "c/library/numeric/fenv/feupdateenv" + }, + { + "cppref": "c/numeric/fenv/FE_exceptions", + "cppdoc": "c/library/numeric/fenv/FE_exceptions" + }, + { + "cppref": "c/numeric/fenv/feexceptflag", + "cppdoc": "c/library/numeric/fenv/feexceptflag" + }, + { + "cppref": "c/numeric/fenv/feholdexcept", + "cppdoc": "c/library/numeric/fenv/feholdexcept" + }, + { + "cppref": "c/numeric/fenv/feraiseexcept", + "cppdoc": "c/library/numeric/fenv/feraiseexcept" + }, + { + "cppref": "c/numeric/fenv/feround", + "cppdoc": "c/library/numeric/fenv/feround" + }, + { + "cppref": "c/numeric/fenv/FE_round", + "cppdoc": "c/library/numeric/fenv/FE_round" + }, + { + "cppref": "c/numeric/fenv/feenv", + "cppdoc": "c/library/numeric/fenv/feenv" + }, + { + "cppref": "c/numeric/fenv/fetestexcept", + "cppdoc": "c/library/numeric/fenv/fetestexcept" + }, + { + "cppref": "c/numeric/fenv/FE_DFL_ENV", + "cppdoc": "c/library/numeric/fenv/FE_DFL_ENV" + }, + { + "cppref": "c/numeric/fenv/feclearexcept", + "cppdoc": "c/library/numeric/fenv/feclearexcept" + }, + { + "cppref": "c/numeric/math/fma", + "cppdoc": "c/library/numeric/math/fma" + }, + { + "cppref": "c/numeric/math/asin", + "cppdoc": "c/library/numeric/math/asin" + }, + { + "cppref": "c/numeric/math/isnormal", + "cppdoc": "c/library/numeric/math/isnormal" + }, + { + "cppref": "c/numeric/math/sin", + "cppdoc": "c/library/numeric/math/sin" + }, + { + "cppref": "c/numeric/math/scalbn", + "cppdoc": "c/library/numeric/math/scalbn" + }, + { + "cppref": "c/numeric/math/cospi", + "cppdoc": "c/library/numeric/math/cospi" + }, + { + "cppref": "c/numeric/math/float_t", + "cppdoc": "c/library/numeric/math/float_t" + }, + { + "cppref": "c/numeric/math/acos", + "cppdoc": "c/library/numeric/math/acos" + }, + { + "cppref": "c/numeric/math/modf", + "cppdoc": "c/library/numeric/math/modf" + }, + { + "cppref": "c/numeric/math/tan", + "cppdoc": "c/library/numeric/math/tan" + }, + { + "cppref": "c/numeric/math/fmin", + "cppdoc": "c/library/numeric/math/fmin" + }, + { + "cppref": "c/numeric/math/frexp", + "cppdoc": "c/library/numeric/math/frexp" + }, + { + "cppref": "c/numeric/math/fabs", + "cppdoc": "c/library/numeric/math/fabs" + }, + { + "cppref": "c/numeric/math/floor", + "cppdoc": "c/library/numeric/math/floor" + }, + { + "cppref": "c/numeric/math/fdim", + "cppdoc": "c/library/numeric/math/fdim" + }, + { + "cppref": "c/numeric/math/ldexp", + "cppdoc": "c/library/numeric/math/ldexp" + }, + { + "cppref": "c/numeric/math/log2", + "cppdoc": "c/library/numeric/math/log2" + }, + { + "cppref": "c/numeric/math/ceil", + "cppdoc": "c/library/numeric/math/ceil" + }, + { + "cppref": "c/numeric/math/erfc", + "cppdoc": "c/library/numeric/math/erfc" + }, + { + "cppref": "c/numeric/math/isless", + "cppdoc": "c/library/numeric/math/isless" + }, + { + "cppref": "c/numeric/math/exp", + "cppdoc": "c/library/numeric/math/exp" + }, + { + "cppref": "c/numeric/math/sqrt", + "cppdoc": "c/library/numeric/math/sqrt" + }, + { + "cppref": "c/numeric/math/tgamma", + "cppdoc": "c/library/numeric/math/tgamma" + }, + { + "cppref": "c/numeric/math/math_errhandling", + "cppdoc": "c/library/numeric/math/math_errhandling" + }, + { + "cppref": "c/numeric/math/erf", + "cppdoc": "c/library/numeric/math/erf" + }, + { + "cppref": "c/numeric/math/log1p", + "cppdoc": "c/library/numeric/math/log1p" + }, + { + "cppref": "c/numeric/math/exp2", + "cppdoc": "c/library/numeric/math/exp2" + }, + { + "cppref": "c/numeric/math/remainder", + "cppdoc": "c/library/numeric/math/remainder" + }, + { + "cppref": "c/numeric/math/islessgreater", + "cppdoc": "c/library/numeric/math/islessgreater" + }, + { + "cppref": "c/numeric/math/isunordered", + "cppdoc": "c/library/numeric/math/isunordered" + }, + { + "cppref": "c/numeric/math/isnan", + "cppdoc": "c/library/numeric/math/isnan" + }, + { + "cppref": "c/numeric/math/isfinite", + "cppdoc": "c/library/numeric/math/isfinite" + }, + { + "cppref": "c/numeric/math/ilogb", + "cppdoc": "c/library/numeric/math/ilogb" + }, + { + "cppref": "c/numeric/math/trunc", + "cppdoc": "c/library/numeric/math/trunc" + }, + { + "cppref": "c/numeric/math/isinf", + "cppdoc": "c/library/numeric/math/isinf" + }, + { + "cppref": "c/numeric/math/signbit", + "cppdoc": "c/library/numeric/math/signbit" + }, + { + "cppref": "c/numeric/math/HUGE_VAL", + "cppdoc": "c/library/numeric/math/HUGE_VAL" + }, + { + "cppref": "c/numeric/math/cosh", + "cppdoc": "c/library/numeric/math/cosh" + }, + { + "cppref": "c/numeric/math/pow", + "cppdoc": "c/library/numeric/math/pow" + }, + { + "cppref": "c/numeric/math/isgreaterequal", + "cppdoc": "c/library/numeric/math/isgreaterequal" + }, + { + "cppref": "c/numeric/math/INFINITY", + "cppdoc": "c/library/numeric/math/INFINITY" + }, + { + "cppref": "c/numeric/math/logb", + "cppdoc": "c/library/numeric/math/logb" + }, + { + "cppref": "c/numeric/math/NAN", + "cppdoc": "c/library/numeric/math/NAN" + }, + { + "cppref": "c/numeric/math/asinh", + "cppdoc": "c/library/numeric/math/asinh" + }, + { + "cppref": "c/numeric/math/lgamma", + "cppdoc": "c/library/numeric/math/lgamma" + }, + { + "cppref": "c/numeric/math/FP_categories", + "cppdoc": "c/library/numeric/math/FP_categories" + }, + { + "cppref": "c/numeric/math/tanh", + "cppdoc": "c/library/numeric/math/tanh" + }, + { + "cppref": "c/numeric/math/sinpi", + "cppdoc": "c/library/numeric/math/sinpi" + }, + { + "cppref": "c/numeric/math/copysign", + "cppdoc": "c/library/numeric/math/copysign" + }, + { + "cppref": "c/numeric/math/cbrt", + "cppdoc": "c/library/numeric/math/cbrt" + }, + { + "cppref": "c/numeric/math/hypot", + "cppdoc": "c/library/numeric/math/hypot" + }, + { + "cppref": "c/numeric/math/cos", + "cppdoc": "c/library/numeric/math/cos" + }, + { + "cppref": "c/numeric/math/rint", + "cppdoc": "c/library/numeric/math/rint" + }, + { + "cppref": "c/numeric/math/nextafter", + "cppdoc": "c/library/numeric/math/nextafter" + }, + { + "cppref": "c/numeric/math/sinh", + "cppdoc": "c/library/numeric/math/sinh" + }, + { + "cppref": "c/numeric/math/isgreater", + "cppdoc": "c/library/numeric/math/isgreater" + }, + { + "cppref": "c/numeric/math/nearbyint", + "cppdoc": "c/library/numeric/math/nearbyint" + }, + { + "cppref": "c/numeric/math/atan", + "cppdoc": "c/library/numeric/math/atan" + }, + { + "cppref": "c/numeric/math/atan2", + "cppdoc": "c/library/numeric/math/atan2" + }, + { + "cppref": "c/numeric/math/log10", + "cppdoc": "c/library/numeric/math/log10" + }, + { + "cppref": "c/numeric/math/round", + "cppdoc": "c/library/numeric/math/round" + }, + { + "cppref": "c/numeric/math/nan.2", + "cppdoc": "c/library/numeric/math/nan.2" + }, + { + "cppref": "c/numeric/math/fmax", + "cppdoc": "c/library/numeric/math/fmax" + }, + { + "cppref": "c/numeric/math/remquo", + "cppdoc": "c/library/numeric/math/remquo" + }, + { + "cppref": "c/numeric/math/acosh", + "cppdoc": "c/library/numeric/math/acosh" + }, + { + "cppref": "c/numeric/math/roundeven", + "cppdoc": "c/library/numeric/math/roundeven" + }, + { + "cppref": "c/numeric/math/islessequal", + "cppdoc": "c/library/numeric/math/islessequal" + }, + { + "cppref": "c/numeric/math/nexttoward", + "cppdoc": "c/library/numeric/math/nexttoward" + }, + { + "cppref": "c/numeric/math/abs", + "cppdoc": "c/library/numeric/math/abs" + }, + { + "cppref": "c/numeric/math/div", + "cppdoc": "c/library/numeric/math/div" + }, + { + "cppref": "c/numeric/math/log", + "cppdoc": "c/library/numeric/math/log" + }, + { + "cppref": "c/numeric/math/fpclassify", + "cppdoc": "c/library/numeric/math/fpclassify" + }, + { + "cppref": "c/numeric/math/fmod", + "cppdoc": "c/library/numeric/math/fmod" + }, + { + "cppref": "c/numeric/math/expm1", + "cppdoc": "c/library/numeric/math/expm1" + }, + { + "cppref": "c/numeric/math/atanh", + "cppdoc": "c/library/numeric/math/atanh" + }, + { + "cppref": "c/language/file_scope", + "cppdoc": "c/language/file_scope" + }, + { + "cppref": "c/language/declarations", + "cppdoc": "c/language/declarations" + }, + { + "cppref": "c/language/extern", + "cppdoc": "c/language/declarations/extern" + }, + { + "cppref": "c/language/expressions", + "cppdoc": "c/language/expressions" + }, + { + "cppref": "c/language/operator_alternative", + "cppdoc": "c/language/operator_alternative" + }, + { + "cppref": "c/language/floating_constant", + "cppdoc": "c/language/expressions/floating_constant" + }, + { + "cppref": "c/language/attributes", + "cppdoc": "c/language/declarations/attributes" + }, + { + "cppref": "c/language/compound_literal", + "cppdoc": "c/language/expressions/compound_literal" + }, + { + "cppref": "c/language/conformance", + "cppdoc": "c/language/conformance" + }, + { + "cppref": "c/language/static_storage_duration", + "cppdoc": "c/language/static_storage_duration" + }, + { + "cppref": "c/language/operator_logical", + "cppdoc": "c/language/expressions/operator_logical" + }, + { + "cppref": "c/language/operator_incdec", + "cppdoc": "c/language/expressions/operator_incdec" + }, + { + "cppref": "c/language/conversion", + "cppdoc": "c/language/expressions/conversion" + }, + { + "cppref": "c/language/ndr", + "cppdoc": "c/language/ndr" + }, + { + "cppref": "c/language/alignof", + "cppdoc": "c/language/expressions/alignof" + }, + { + "cppref": "c/language/volatile", + "cppdoc": "c/language/declarations/volatile" + }, + { + "cppref": "c/language/operator_other", + "cppdoc": "c/language/expressions/operator_other" + }, + { + "cppref": "c/language/_Static_assert", + "cppdoc": "c/language/declarations/_Static_assert" + }, + { + "cppref": "c/language/escape", + "cppdoc": "c/language/expressions/escape" + }, + { + "cppref": "c/language/statements", + "cppdoc": "c/language/statements" + }, + { + "cppref": "c/language/operator_precedence", + "cppdoc": "c/language/expressions/operator_precedence" + }, + { + "cppref": "c/language/analyzability", + "cppdoc": "c/language/analyzability" + }, + { + "cppref": "c/language/constant_expression", + "cppdoc": "c/language/expressions/constant_expression" + }, + { + "cppref": "c/language/switch", + "cppdoc": "c/language/statements/switch" + }, + { + "cppref": "c/language/sizeof", + "cppdoc": "c/language/expressions/sizeof" + }, + { + "cppref": "c/language/restrict", + "cppdoc": "c/language/declarations/restrict" + }, + { + "cppref": "c/language/for", + "cppdoc": "c/language/statements/for" + }, + { + "cppref": "c/language/eval_order", + "cppdoc": "c/language/expressions/eval_order" + }, + { + "cppref": "c/language/const", + "cppdoc": "c/language/declarations/const" + }, + { + "cppref": "c/language/continue", + "cppdoc": "c/language/statements/continue" + }, + { + "cppref": "c/language/if", + "cppdoc": "c/language/statements/if" + }, + { + "cppref": "c/language/array", + "cppdoc": "c/language/declarations/array" + }, + { + "cppref": "c/language/operator_arithmetic", + "cppdoc": "c/language/expressions/operator_arithmetic" + }, + { + "cppref": "c/language/value_category", + "cppdoc": "c/language/expressions/value_category" + }, + { + "cppref": "c/language/typedef", + "cppdoc": "c/language/declarations/typedef" + }, + { + "cppref": "c/language/nullptr", + "cppdoc": "c/language/expressions/nullptr" + }, + { + "cppref": "c/language/_Alignof", + "cppdoc": "c/language/expressions/_Alignof" + }, + { + "cppref": "c/language/static_assert", + "cppdoc": "c/language/declarations/static_assert" + }, + { + "cppref": "c/language/string_literal", + "cppdoc": "c/language/expressions/string_literal" + }, + { + "cppref": "c/language/character_constant", + "cppdoc": "c/language/expressions/character_constant" + }, + { + "cppref": "c/language/pointer", + "cppdoc": "c/language/declarations/pointer" + }, + { + "cppref": "c/language/operator_assignment", + "cppdoc": "c/language/expressions/operator_assignment" + }, + { + "cppref": "c/language/enum", + "cppdoc": "c/language/declarations/enum" + }, + { + "cppref": "c/language/storage_duration", + "cppdoc": "c/language/declarations/storage_duration" + }, + { + "cppref": "c/language/thread_storage_duration", + "cppdoc": "c/language/thread_storage_duration" + }, + { + "cppref": "c/language/asm", + "cppdoc": "c/language/asm" + }, + { + "cppref": "c/language/typeof", + "cppdoc": "c/language/expressions/typeof" + }, + { + "cppref": "c/language/while", + "cppdoc": "c/language/statements/while" + }, + { + "cppref": "c/language/union", + "cppdoc": "c/language/declarations/union" + }, + { + "cppref": "c/language/break", + "cppdoc": "c/language/statements/break" + }, + { + "cppref": "c/language/functions", + "cppdoc": "c/language/functions" + }, + { + "cppref": "c/language/cast", + "cppdoc": "c/language/expressions/cast" + }, + { + "cppref": "c/language/constexpr", + "cppdoc": "c/language/declarations/constexpr" + }, + { + "cppref": "c/language/_Alignas", + "cppdoc": "c/language/declarations/_Alignas" + }, + { + "cppref": "c/language/generic", + "cppdoc": "c/language/expressions/generic" + }, + { + "cppref": "c/language/typeof_unqual", + "cppdoc": "c/language/expressions/typeof_unqual" + }, + { + "cppref": "c/language/operator_member_access", + "cppdoc": "c/language/expressions/operator_member_access" + }, + { + "cppref": "c/language/struct", + "cppdoc": "c/language/declarations/struct" + }, + { + "cppref": "c/language/inline", + "cppdoc": "c/language/functions/inline" + }, + { + "cppref": "c/language/history", + "cppdoc": "c/language/history" + }, + { + "cppref": "c/language/initialization", + "cppdoc": "c/language/initialization" + }, + { + "cppref": "c/language/struct_initialization", + "cppdoc": "c/language/initialization/struct_initialization" + }, + { + "cppref": "c/language/bit_field", + "cppdoc": "c/language/declarations/bit_field" + }, + { + "cppref": "c/language/basic_concepts", + "cppdoc": "c/language/basic_concepts" + }, + { + "cppref": "c/language/function_definition", + "cppdoc": "c/language/functions/function_definition" + }, + { + "cppref": "c/language/goto", + "cppdoc": "c/language/statements/goto" + }, + { + "cppref": "c/language/operator_comparison", + "cppdoc": "c/language/expressions/operator_comparison" + }, + { + "cppref": "c/language/auto", + "cppdoc": "c/language/auto" + }, + { + "cppref": "c/language/attributes/fallthrough", + "cppdoc": "c/language/declarations/attributes/fallthrough" + }, + { + "cppref": "c/language/attributes/deprecated", + "cppdoc": "c/language/declarations/attributes/deprecated" + }, + { + "cppref": "c/language/attributes/maybe_unused", + "cppdoc": "c/language/declarations/attributes/maybe_unused" + }, + { + "cppref": "c/language/attributes/reproducible", + "cppdoc": "c/language/declarations/attributes/reproducible" + }, + { + "cppref": "c/language/attributes/noreturn", + "cppdoc": "c/language/declarations/attributes/noreturn" + }, + { + "cppref": "c/language/attributes/nodiscard", + "cppdoc": "c/language/declarations/attributes/nodiscard" + }, + { + "cppref": "c/links/libs", + "cppdoc": "c/library/links/libs" + }, + { + "cppref": "c/memory/free", + "cppdoc": "c/library/memory/free" + }, + { + "cppref": "c/memory/calloc", + "cppdoc": "c/library/memory/calloc" + }, + { + "cppref": "c/memory/free_sized", + "cppdoc": "c/library/memory/free_sized" + }, + { + "cppref": "c/memory/realloc", + "cppdoc": "c/library/memory/realloc" + }, + { + "cppref": "c/memory/free_aligned_sized", + "cppdoc": "c/library/memory/free_aligned_sized" + }, + { + "cppref": "c/memory/malloc", + "cppdoc": "c/library/memory/malloc" + }, + { + "cppref": "c/memory/aligned_alloc", + "cppdoc": "c/library/memory/aligned_alloc" + }, + { + "cppref": "c/atomic/atomic_is_lock_free", + "cppdoc": "c/library/thread/atomic_is_lock_free" + }, + { + "cppref": "c/atomic/atomic_flag", + "cppdoc": "c/library/thread/atomic_flag" + }, + { + "cppref": "c/atomic/ATOMIC_LOCK_FREE_consts", + "cppdoc": "c/library/thread/ATOMIC_LOCK_FREE_consts" + }, + { + "cppref": "c/atomic/atomic_load", + "cppdoc": "c/library/thread/atomic_load" + }, + { + "cppref": "c/atomic/atomic_signal_fence", + "cppdoc": "c/library/thread/atomic_signal_fence" + }, + { + "cppref": "c/atomic/atomic_store", + "cppdoc": "c/library/thread/atomic_store" + }, + { + "cppref": "c/atomic/atomic_fetch_sub", + "cppdoc": "c/library/thread/atomic_fetch_sub" + }, + { + "cppref": "c/atomic/atomic_fetch_and", + "cppdoc": "c/library/thread/atomic_fetch_and" + }, + { + "cppref": "c/atomic/ATOMIC_FLAG_INIT", + "cppdoc": "c/library/thread/ATOMIC_FLAG_INIT" + }, + { + "cppref": "c/atomic/kill_dependency", + "cppdoc": "c/library/thread/kill_dependency" + }, + { + "cppref": "c/atomic/atomic_flag_clear", + "cppdoc": "c/library/thread/atomic_flag_clear" + }, + { + "cppref": "c/atomic/atomic_fetch_or", + "cppdoc": "c/library/thread/atomic_fetch_or" + }, + { + "cppref": "c/atomic/memory_order", + "cppdoc": "c/library/thread/memory_order" + }, + { + "cppref": "c/atomic/atomic_init", + "cppdoc": "c/library/thread/atomic_init" + }, + { + "cppref": "c/atomic/atomic_fetch_xor", + "cppdoc": "c/library/thread/atomic_fetch_xor" + }, + { + "cppref": "c/atomic/atomic_exchange", + "cppdoc": "c/library/thread/atomic_exchange" + }, + { + "cppref": "c/atomic/ATOMIC_VAR_INIT", + "cppdoc": "c/library/thread/ATOMIC_VAR_INIT" + }, + { + "cppref": "c/atomic/atomic_flag_test_and_set", + "cppdoc": "c/library/thread/atomic_flag_test_and_set" + }, + { + "cppref": "c/atomic/atomic_compare_exchange", + "cppdoc": "c/library/thread/atomic_compare_exchange" + }, + { + "cppref": "c/atomic/atomic_thread_fence", + "cppdoc": "c/library/thread/atomic_thread_fence" + }, + { + "cppref": "c/atomic/atomic_fetch_add", + "cppdoc": "c/library/thread/atomic_fetch_add" + }, + { + "cppref": "c/thread/thrd_detach", + "cppdoc": "c/library/thread/thrd_detach" + }, + { + "cppref": "c/thread/thrd_current", + "cppdoc": "c/library/thread/thrd_current" + }, + { + "cppref": "c/thread/cnd_timedwait", + "cppdoc": "c/library/thread/cnd_timedwait" + }, + { + "cppref": "c/thread/tss_set", + "cppdoc": "c/library/thread/tss_set" + }, + { + "cppref": "c/thread/thrd_join", + "cppdoc": "c/library/thread/thrd_join" + }, + { + "cppref": "c/thread/thrd_errors", + "cppdoc": "c/library/thread/thrd_errors" + }, + { + "cppref": "c/thread/thrd_create", + "cppdoc": "c/library/thread/thrd_create" + }, + { + "cppref": "c/thread/mtx_destroy", + "cppdoc": "c/library/thread/mtx_destroy" + }, + { + "cppref": "c/thread/tss_create", + "cppdoc": "c/library/thread/tss_create" + }, + { + "cppref": "c/thread/cnd_destroy", + "cppdoc": "c/library/thread/cnd_destroy" + }, + { + "cppref": "c/thread/thread_local", + "cppdoc": "c/library/thread/thread_local" + }, + { + "cppref": "c/thread/thrd_equal", + "cppdoc": "c/library/thread/thrd_equal" + }, + { + "cppref": "c/thread/tss_delete", + "cppdoc": "c/library/thread/tss_delete" + }, + { + "cppref": "c/thread/cnd_wait", + "cppdoc": "c/library/thread/cnd_wait" + }, + { + "cppref": "c/thread/mtx_types", + "cppdoc": "c/library/thread/mtx_types" + }, + { + "cppref": "c/thread/call_once", + "cppdoc": "c/library/thread/call_once" + }, + { + "cppref": "c/thread/mtx_unlock", + "cppdoc": "c/library/thread/mtx_unlock" + }, + { + "cppref": "c/thread/thrd_sleep", + "cppdoc": "c/library/thread/thrd_sleep" + }, + { + "cppref": "c/thread/mtx_timedlock", + "cppdoc": "c/library/thread/mtx_timedlock" + }, + { + "cppref": "c/thread/mtx_lock", + "cppdoc": "c/library/thread/mtx_lock" + }, + { + "cppref": "c/thread/mtx_trylock", + "cppdoc": "c/library/thread/mtx_trylock" + }, + { + "cppref": "c/thread/TSS_DTOR_ITERATIONS", + "cppdoc": "c/library/thread/TSS_DTOR_ITERATIONS" + }, + { + "cppref": "c/thread/ONCE_FLAG_INIT", + "cppdoc": "c/library/thread/ONCE_FLAG_INIT" + }, + { + "cppref": "c/thread/thrd_exit", + "cppdoc": "c/library/thread/thrd_exit" + }, + { + "cppref": "c/thread/tss_get", + "cppdoc": "c/library/thread/tss_get" + }, + { + "cppref": "c/thread/mtx_init", + "cppdoc": "c/library/thread/mtx_init" + }, + { + "cppref": "c/thread/cnd_signal", + "cppdoc": "c/library/thread/cnd_signal" + }, + { + "cppref": "c/thread/cnd_init", + "cppdoc": "c/library/thread/cnd_init" + }, + { + "cppref": "c/thread/thrd_yield", + "cppdoc": "c/library/thread/thrd_yield" + }, + { + "cppref": "c/thread/cnd_broadcast", + "cppdoc": "c/library/thread/cnd_broadcast" + }, + { + "cppref": "c/symbol_index/macro", + "cppdoc": "c/library/symbol_index/macro" + }, + { + "cppref": "c/io/fputwc", + "cppdoc": "c/library/io/fputwc" + }, + { + "cppref": "c/io/fread", + "cppdoc": "c/library/io/fread" + }, + { + "cppref": "c/io/fflush", + "cppdoc": "c/library/io/fflush" + }, + { + "cppref": "c/io/remove", + "cppdoc": "c/library/io/remove" + }, + { + "cppref": "c/io/fsetpos", + "cppdoc": "c/library/io/fsetpos" + }, + { + "cppref": "c/io/fscanf", + "cppdoc": "c/library/io/fscanf" + }, + { + "cppref": "c/io/ungetc", + "cppdoc": "c/library/io/ungetc" + }, + { + "cppref": "c/io/fopen", + "cppdoc": "c/library/io/fopen" + }, + { + "cppref": "c/io/getwchar", + "cppdoc": "c/library/io/getwchar" + }, + { + "cppref": "c/io/fwscanf", + "cppdoc": "c/library/io/fwscanf" + }, + { + "cppref": "c/io/fputs", + "cppdoc": "c/library/io/fputs" + }, + { + "cppref": "c/io/gets", + "cppdoc": "c/library/io/gets" + }, + { + "cppref": "c/io/clearerr", + "cppdoc": "c/library/io/clearerr" + }, + { + "cppref": "c/io/fwide", + "cppdoc": "c/library/io/fwide" + }, + { + "cppref": "c/io/fputws", + "cppdoc": "c/library/io/fputws" + }, + { + "cppref": "c/io/ferror", + "cppdoc": "c/library/io/ferror" + }, + { + "cppref": "c/io/fgets", + "cppdoc": "c/library/io/fgets" + }, + { + "cppref": "c/io/fgetpos", + "cppdoc": "c/library/io/fgetpos" + }, + { + "cppref": "c/io/tmpnam", + "cppdoc": "c/library/io/tmpnam" + }, + { + "cppref": "c/io/perror", + "cppdoc": "c/library/io/perror" + }, + { + "cppref": "c/io/vfwscanf", + "cppdoc": "c/library/io/vfwscanf" + }, + { + "cppref": "c/io/fclose", + "cppdoc": "c/library/io/fclose" + }, + { + "cppref": "c/io/fprintf", + "cppdoc": "c/library/io/fprintf" + }, + { + "cppref": "c/io/tmpfile", + "cppdoc": "c/library/io/tmpfile" + }, + { + "cppref": "c/io/rename", + "cppdoc": "c/library/io/rename" + }, + { + "cppref": "c/io/fgetc", + "cppdoc": "c/library/io/fgetc" + }, + { + "cppref": "c/io/freopen", + "cppdoc": "c/library/io/freopen" + }, + { + "cppref": "c/io/std_streams", + "cppdoc": "c/library/io/std_streams" + }, + { + "cppref": "c/io/fgetws", + "cppdoc": "c/library/io/fgetws" + }, + { + "cppref": "c/io/fseek", + "cppdoc": "c/library/io/fseek" + }, + { + "cppref": "c/io/FILE", + "cppdoc": "c/library/io/FILE" + }, + { + "cppref": "c/io/getchar", + "cppdoc": "c/library/io/getchar" + }, + { + "cppref": "c/io/fgetwc", + "cppdoc": "c/library/io/fgetwc" + }, + { + "cppref": "c/io/ftell", + "cppdoc": "c/library/io/ftell" + }, + { + "cppref": "c/io/vfwprintf", + "cppdoc": "c/library/io/vfwprintf" + }, + { + "cppref": "c/io/putwchar", + "cppdoc": "c/library/io/putwchar" + }, + { + "cppref": "c/io/fputc", + "cppdoc": "c/library/io/fputc" + }, + { + "cppref": "c/io/setbuf", + "cppdoc": "c/library/io/setbuf" + }, + { + "cppref": "c/io/puts", + "cppdoc": "c/library/io/puts" + }, + { + "cppref": "c/io/fwprintf", + "cppdoc": "c/library/io/fwprintf" + }, + { + "cppref": "c/io/rewind", + "cppdoc": "c/library/io/rewind" + }, + { + "cppref": "c/io/vfprintf", + "cppdoc": "c/library/io/vfprintf" + }, + { + "cppref": "c/io/fpos_t", + "cppdoc": "c/library/io/fpos_t" + }, + { + "cppref": "c/io/putchar", + "cppdoc": "c/library/io/putchar" + }, + { + "cppref": "c/io/ungetwc", + "cppdoc": "c/library/io/ungetwc" + }, + { + "cppref": "c/io/putc", + "cppdoc": "c/library/io/putc" + }, + { + "cppref": "c/io/feof", + "cppdoc": "c/library/io/feof" + }, + { + "cppref": "c/io/fwrite", + "cppdoc": "c/library/io/fwrite" + }, + { + "cppref": "c/io/setvbuf", + "cppdoc": "c/library/io/setvbuf" + }, + { + "cppref": "c/io/vfscanf", + "cppdoc": "c/library/io/vfscanf" + }, + { + "cppref": "c/experimental/fpext1/nextup", + "cppdoc": "c/library/experimental/fpext1/nextup" + }, + { + "cppref": "c/error/ignore_handler_s", + "cppdoc": "c/library/error/ignore_handler_s" + }, + { + "cppref": "c/error/assert", + "cppdoc": "c/library/error/assert" + }, + { + "cppref": "c/error/errno_macros", + "cppdoc": "c/library/error/errno_macros" + }, + { + "cppref": "c/error/errno", + "cppdoc": "c/library/error/errno" + }, + { + "cppref": "c/error/static_assert", + "cppdoc": "c/library/error/static_assert" + }, + { + "cppref": "c/error/set_constraint_handler_s", + "cppdoc": "c/library/error/set_constraint_handler_s" + }, + { + "cppref": "c/error/abort_handler_s", + "cppdoc": "c/library/error/abort_handler_s" + }, + { + "cppref": "c/types/size_t", + "cppdoc": "c/library/types/size_t" + }, + { + "cppref": "c/types/limits", + "cppdoc": "c/library/types/limits" + }, + { + "cppref": "c/types/NULL", + "cppdoc": "c/library/types/NULL" + }, + { + "cppref": "c/types/max_align_t", + "cppdoc": "c/library/types/max_align_t" + }, + { + "cppref": "c/types/integer", + "cppdoc": "c/library/types/integer" + }, + { + "cppref": "c/types/nullptr_t", + "cppdoc": "c/library/types/nullptr_t" + }, + { + "cppref": "c/types/offsetof", + "cppdoc": "c/library/types/offsetof" + }, + { + "cppref": "c/types/ptrdiff_t", + "cppdoc": "c/library/types/ptrdiff_t" + }, + { + "cppref": "c/types/limits/FLT_ROUNDS", + "cppdoc": "c/library/types/limits/FLT_ROUNDS" + }, + { + "cppref": "c/types/limits/FLT_EVAL_METHOD", + "cppdoc": "c/library/types/limits/FLT_EVAL_METHOD" + }, + { + "cppref": "c/compiler_support/23", + "cppdoc": "c/library/compiler_support/23" + }, + { + "cppref": "c/compiler_support/99", + "cppdoc": "c/library/compiler_support/99" + }, + { + "cppref": "c/program/at_quick_exit", + "cppdoc": "c/library/program/at_quick_exit" + }, + { + "cppref": "c/program/raise", + "cppdoc": "c/library/program/raise" + }, + { + "cppref": "c/program/EXIT_status", + "cppdoc": "c/library/program/EXIT_status" + }, + { + "cppref": "c/program/longjmp", + "cppdoc": "c/library/program/longjmp" + }, + { + "cppref": "c/program/jmp_buf", + "cppdoc": "c/library/program/jmp_buf" + }, + { + "cppref": "c/program/quick_exit", + "cppdoc": "c/library/program/quick_exit" + }, + { + "cppref": "c/program/atexit", + "cppdoc": "c/library/program/atexit" + }, + { + "cppref": "c/program/signal", + "cppdoc": "c/library/program/signal" + }, + { + "cppref": "c/program/sig_atomic_t", + "cppdoc": "c/library/program/sig_atomic_t" + }, + { + "cppref": "c/program/SIG_types", + "cppdoc": "c/library/program/SIG_types" + }, + { + "cppref": "c/program/abort", + "cppdoc": "c/library/program/abort" + }, + { + "cppref": "c/program/system", + "cppdoc": "c/library/program/system" + }, + { + "cppref": "c/program/exit", + "cppdoc": "c/library/program/exit" + }, + { + "cppref": "c/program/unreachable", + "cppdoc": "c/library/program/unreachable" + }, + { + "cppref": "c/program/setjmp", + "cppdoc": "c/library/program/setjmp" + }, + { + "cppref": "c/program/memalignment", + "cppdoc": "c/library/program/memalignment" + }, + { + "cppref": "c/program/_Exit", + "cppdoc": "c/library/program/_Exit" + }, + { + "cppref": "c/program/getenv", + "cppdoc": "c/library/program/getenv" + }, + { + "cppref": "c/program/SIG_strategies", + "cppdoc": "c/library/program/SIG_strategies" + }, + { + "cppref": "c/program/SIG_ERR", + "cppdoc": "c/library/program/SIG_ERR" + }, + { + "cppref": "c/chrono/mktime", + "cppdoc": "c/library/chrono/mktime" + }, + { + "cppref": "c/chrono/clock", + "cppdoc": "c/library/chrono/clock" + }, + { + "cppref": "c/chrono/CLOCKS_PER_SEC", + "cppdoc": "c/library/chrono/CLOCKS_PER_SEC" + }, + { + "cppref": "c/chrono/time_t", + "cppdoc": "c/library/chrono/time_t" + }, + { + "cppref": "c/chrono/gmtime", + "cppdoc": "c/library/chrono/gmtime" + }, + { + "cppref": "c/chrono/clock_t", + "cppdoc": "c/library/chrono/clock_t" + }, + { + "cppref": "c/chrono/strftime", + "cppdoc": "c/library/chrono/strftime" + }, + { + "cppref": "c/chrono/difftime", + "cppdoc": "c/library/chrono/difftime" + }, + { + "cppref": "c/chrono/ctime", + "cppdoc": "c/library/chrono/ctime" + }, + { + "cppref": "c/chrono/asctime", + "cppdoc": "c/library/chrono/asctime" + }, + { + "cppref": "c/chrono/tm", + "cppdoc": "c/library/chrono/tm" + }, + { + "cppref": "c/chrono/time", + "cppdoc": "c/library/chrono/time" + }, + { + "cppref": "c/chrono/timespec_getres", + "cppdoc": "c/library/chrono/timespec_getres" + }, + { + "cppref": "c/chrono/timespec", + "cppdoc": "c/library/chrono/timespec" + }, + { + "cppref": "c/chrono/timespec_get", + "cppdoc": "c/library/chrono/timespec_get" + }, + { + "cppref": "c/chrono/wcsftime", + "cppdoc": "c/library/chrono/wcsftime" + }, + { + "cppref": "c/chrono/localtime", + "cppdoc": "c/library/chrono/localtime" + }, + { + "cppref": "cpp/keywords", + "cppdoc": "cpp/language/keywords" + }, + { + "cppref": "cpp/types", + "cppdoc": "cpp/library/utility/types" + }, + { + "cppref": "cpp/regex", + "cppdoc": "cpp/library/text/regex" + }, + { + "cppref": "cpp/keyword", + "cppdoc": "cpp/language/keyword" + }, + { + "cppref": "cpp/coroutine", + "cppdoc": "cpp/library/utility/coroutine" + }, + { + "cppref": "cpp/comment", + "cppdoc": "cpp/language/basic_concepts/comment" + }, + { + "cppref": "cpp/comments", + "cppdoc": "cpp/language/basic_concepts/comments" + }, + { + "cppref": "cpp/regex/regex_token_iterator", + "cppdoc": "cpp/library/text/regex/regex_token_iterator" + }, + { + "cppref": "cpp/regex/syntax_option_type", + "cppdoc": "cpp/library/text/regex/syntax_option_type" + }, + { + "cppref": "cpp/regex/regex_traits", + "cppdoc": "cpp/library/text/regex/regex_traits" + }, + { + "cppref": "cpp/regex/basic_regex", + "cppdoc": "cpp/library/text/regex/basic_regex" + }, + { + "cppref": "cpp/regex/match_results", + "cppdoc": "cpp/library/text/regex/match_results" + }, + { + "cppref": "cpp/regex/match_flag_type", + "cppdoc": "cpp/library/text/regex/match_flag_type" + }, + { + "cppref": "cpp/regex/regex_match", + "cppdoc": "cpp/library/text/regex/regex_match" + }, + { + "cppref": "cpp/regex/regex_replace", + "cppdoc": "cpp/library/text/regex/regex_replace" + }, + { + "cppref": "cpp/regex/regex_search", + "cppdoc": "cpp/library/text/regex/regex_search" + }, + { + "cppref": "cpp/regex/sub_match", + "cppdoc": "cpp/library/text/regex/sub_match" + }, + { + "cppref": "cpp/regex/ecmascript", + "cppdoc": "cpp/library/text/regex/ecmascript" + }, + { + "cppref": "cpp/regex/error_type", + "cppdoc": "cpp/library/text/regex/error_type" + }, + { + "cppref": "cpp/regex/regex_error", + "cppdoc": "cpp/library/text/regex/regex_error" + }, + { + "cppref": "cpp/regex/regex_iterator", + "cppdoc": "cpp/library/text/regex/regex_iterator" + }, + { + "cppref": "cpp/regex/regex_traits/getloc", + "cppdoc": "cpp/library/text/regex/regex_traits/getloc" + }, + { + "cppref": "cpp/regex/regex_traits/regex_traits", + "cppdoc": "cpp/library/text/regex/regex_traits/regex_traits" + }, + { + "cppref": "cpp/regex/regex_traits/lookup_collatename", + "cppdoc": "cpp/library/text/regex/regex_traits/lookup_collatename" + }, + { + "cppref": "cpp/regex/regex_traits/transform_primary", + "cppdoc": "cpp/library/text/regex/regex_traits/transform_primary" + }, + { + "cppref": "cpp/regex/regex_traits/isctype", + "cppdoc": "cpp/library/text/regex/regex_traits/isctype" + }, + { + "cppref": "cpp/regex/regex_traits/value", + "cppdoc": "cpp/library/text/regex/regex_traits/value" + }, + { + "cppref": "cpp/regex/regex_traits/translate_nocase", + "cppdoc": "cpp/library/text/regex/regex_traits/translate_nocase" + }, + { + "cppref": "cpp/regex/regex_traits/lookup_classname", + "cppdoc": "cpp/library/text/regex/regex_traits/lookup_classname" + }, + { + "cppref": "cpp/regex/regex_traits/length", + "cppdoc": "cpp/library/text/regex/regex_traits/length" + }, + { + "cppref": "cpp/regex/regex_traits/transform", + "cppdoc": "cpp/library/text/regex/regex_traits/transform" + }, + { + "cppref": "cpp/regex/regex_traits/imbue", + "cppdoc": "cpp/library/text/regex/regex_traits/imbue" + }, + { + "cppref": "cpp/regex/regex_traits/translate", + "cppdoc": "cpp/library/text/regex/regex_traits/translate" + }, + { + "cppref": "cpp/regex/match_results/ready", + "cppdoc": "cpp/library/text/regex/match_results/ready" + }, + { + "cppref": "cpp/regex/match_results/operator_at", + "cppdoc": "cpp/library/text/regex/match_results/operator_at" + }, + { + "cppref": "cpp/regex/match_results/~match_results", + "cppdoc": "cpp/library/text/regex/match_results/~match_results" + }, + { + "cppref": "cpp/regex/match_results/position", + "cppdoc": "cpp/library/text/regex/match_results/position" + }, + { + "cppref": "cpp/regex/match_results/prefix", + "cppdoc": "cpp/library/text/regex/match_results/prefix" + }, + { + "cppref": "cpp/regex/match_results/empty", + "cppdoc": "cpp/library/text/regex/match_results/empty" + }, + { + "cppref": "cpp/regex/match_results/max_size", + "cppdoc": "cpp/library/text/regex/match_results/max_size" + }, + { + "cppref": "cpp/regex/match_results/size", + "cppdoc": "cpp/library/text/regex/match_results/size" + }, + { + "cppref": "cpp/regex/match_results/match_results", + "cppdoc": "cpp/library/text/regex/match_results/match_results" + }, + { + "cppref": "cpp/regex/match_results/swap2", + "cppdoc": "cpp/library/text/regex/match_results/swap2" + }, + { + "cppref": "cpp/regex/match_results/end", + "cppdoc": "cpp/library/text/regex/match_results/end" + }, + { + "cppref": "cpp/regex/match_results/format", + "cppdoc": "cpp/library/text/regex/match_results/format" + }, + { + "cppref": "cpp/regex/match_results/suffix", + "cppdoc": "cpp/library/text/regex/match_results/suffix" + }, + { + "cppref": "cpp/regex/match_results/begin", + "cppdoc": "cpp/library/text/regex/match_results/begin" + }, + { + "cppref": "cpp/regex/match_results/swap", + "cppdoc": "cpp/library/text/regex/match_results/swap" + }, + { + "cppref": "cpp/regex/match_results/str", + "cppdoc": "cpp/library/text/regex/match_results/str" + }, + { + "cppref": "cpp/regex/match_results/operator_cmp", + "cppdoc": "cpp/library/text/regex/match_results/operator_cmp" + }, + { + "cppref": "cpp/regex/match_results/get_allocator", + "cppdoc": "cpp/library/text/regex/match_results/get_allocator" + }, + { + "cppref": "cpp/regex/match_results/length", + "cppdoc": "cpp/library/text/regex/match_results/length" + }, + { + "cppref": "cpp/regex/match_results/operator=", + "cppdoc": "cpp/library/text/regex/match_results/operator=" + }, + { + "cppref": "cpp/regex/regex_iterator/operator_arith", + "cppdoc": "cpp/library/text/regex/regex_iterator/operator_arith" + }, + { + "cppref": "cpp/regex/regex_iterator/operator_star_", + "cppdoc": "cpp/library/text/regex/regex_iterator/operator_star_" + }, + { + "cppref": "cpp/regex/regex_iterator/operator_cmp", + "cppdoc": "cpp/library/text/regex/regex_iterator/operator_cmp" + }, + { + "cppref": "cpp/regex/regex_iterator/operator=", + "cppdoc": "cpp/library/text/regex/regex_iterator/operator=" + }, + { + "cppref": "cpp/regex/regex_iterator/regex_iterator", + "cppdoc": "cpp/library/text/regex/regex_iterator/regex_iterator" + }, + { + "cppref": "cpp/regex/sub_match/swap", + "cppdoc": "cpp/library/text/regex/sub_match/swap" + }, + { + "cppref": "cpp/regex/sub_match/str", + "cppdoc": "cpp/library/text/regex/sub_match/str" + }, + { + "cppref": "cpp/regex/sub_match/sub_match", + "cppdoc": "cpp/library/text/regex/sub_match/sub_match" + }, + { + "cppref": "cpp/regex/sub_match/compare", + "cppdoc": "cpp/library/text/regex/sub_match/compare" + }, + { + "cppref": "cpp/regex/sub_match/operator_cmp", + "cppdoc": "cpp/library/text/regex/sub_match/operator_cmp" + }, + { + "cppref": "cpp/regex/sub_match/length", + "cppdoc": "cpp/library/text/regex/sub_match/length" + }, + { + "cppref": "cpp/regex/sub_match/operator_ltlt", + "cppdoc": "cpp/library/text/regex/sub_match/operator_ltlt" + }, + { + "cppref": "cpp/regex/regex_error/code", + "cppdoc": "cpp/library/text/regex/regex_error/code" + }, + { + "cppref": "cpp/regex/regex_error/regex_error", + "cppdoc": "cpp/library/text/regex/regex_error/regex_error" + }, + { + "cppref": "cpp/regex/regex_error/operator=", + "cppdoc": "cpp/library/text/regex/regex_error/operator=" + }, + { + "cppref": "cpp/regex/basic_regex/assign", + "cppdoc": "cpp/library/text/regex/basic_regex/assign" + }, + { + "cppref": "cpp/regex/basic_regex/mark_count", + "cppdoc": "cpp/library/text/regex/basic_regex/mark_count" + }, + { + "cppref": "cpp/regex/basic_regex/getloc", + "cppdoc": "cpp/library/text/regex/basic_regex/getloc" + }, + { + "cppref": "cpp/regex/basic_regex/basic_regex", + "cppdoc": "cpp/library/text/regex/basic_regex/basic_regex" + }, + { + "cppref": "cpp/regex/basic_regex/swap2", + "cppdoc": "cpp/library/text/regex/basic_regex/swap2" + }, + { + "cppref": "cpp/regex/basic_regex/constants", + "cppdoc": "cpp/library/text/regex/basic_regex/constants" + }, + { + "cppref": "cpp/regex/basic_regex/deduction_guides", + "cppdoc": "cpp/library/text/regex/basic_regex/deduction_guides" + }, + { + "cppref": "cpp/regex/basic_regex/flags", + "cppdoc": "cpp/library/text/regex/basic_regex/flags" + }, + { + "cppref": "cpp/regex/basic_regex/swap", + "cppdoc": "cpp/library/text/regex/basic_regex/swap" + }, + { + "cppref": "cpp/regex/basic_regex/~basic_regex", + "cppdoc": "cpp/library/text/regex/basic_regex/~basic_regex" + }, + { + "cppref": "cpp/regex/basic_regex/operator=", + "cppdoc": "cpp/library/text/regex/basic_regex/operator=" + }, + { + "cppref": "cpp/regex/basic_regex/imbue", + "cppdoc": "cpp/library/text/regex/basic_regex/imbue" + }, + { + "cppref": "cpp/regex/regex_token_iterator/regex_token_iterator", + "cppdoc": "cpp/library/text/regex/regex_token_iterator/regex_token_iterator" + }, + { + "cppref": "cpp/regex/regex_token_iterator/operator_arith", + "cppdoc": "cpp/library/text/regex/regex_token_iterator/operator_arith" + }, + { + "cppref": "cpp/regex/regex_token_iterator/operator_star_", + "cppdoc": "cpp/library/text/regex/regex_token_iterator/operator_star_" + }, + { + "cppref": "cpp/regex/regex_token_iterator/operator_cmp", + "cppdoc": "cpp/library/text/regex/regex_token_iterator/operator_cmp" + }, + { + "cppref": "cpp/regex/regex_token_iterator/operator=", + "cppdoc": "cpp/library/text/regex/regex_token_iterator/operator=" + }, + { + "cppref": "cpp/identifier_with_special_meaning/import", + "cppdoc": "cpp/language/keywords/import" + }, + { + "cppref": "cpp/identifier_with_special_meaning/final", + "cppdoc": "cpp/language/keywords/final" + }, + { + "cppref": "cpp/identifier_with_special_meaning/override", + "cppdoc": "cpp/language/keywords/override" + }, + { + "cppref": "cpp/identifier_with_special_meaning/pre", + "cppdoc": "cpp/language/keywords/pre" + }, + { + "cppref": "cpp/identifier_with_special_meaning/post", + "cppdoc": "cpp/language/keywords/post" + }, + { + "cppref": "cpp/identifier_with_special_meaning/trivially_relocatable_if_eligible", + "cppdoc": "cpp/language/keywords/trivially_relocatable_if_eligible" + }, + { + "cppref": "cpp/identifier_with_special_meaning/replaceable_if_eligible", + "cppdoc": "cpp/language/keywords/replaceable_if_eligible" + }, + { + "cppref": "cpp/identifier_with_special_meaning/module", + "cppdoc": "cpp/language/keywords/module" + }, + { + "cppref": "cpp/numeric/bit_floor", + "cppdoc": "cpp/library/utility/bit/bit_floor" + }, + { + "cppref": "cpp/numeric/countl_one", + "cppdoc": "cpp/library/utility/bit/countl_one" + }, + { + "cppref": "cpp/numeric/popcount", + "cppdoc": "cpp/library/utility/bit/popcount" + }, + { + "cppref": "cpp/numeric/has_single_bit", + "cppdoc": "cpp/library/utility/bit/has_single_bit" + }, + { + "cppref": "cpp/numeric/rotr", + "cppdoc": "cpp/library/utility/bit/rotr" + }, + { + "cppref": "cpp/numeric/bit_cast", + "cppdoc": "cpp/library/utility/bit/bit_cast" + }, + { + "cppref": "cpp/numeric/rotl", + "cppdoc": "cpp/library/utility/bit/rotl" + }, + { + "cppref": "cpp/numeric/countr_zero", + "cppdoc": "cpp/library/utility/bit/countr_zero" + }, + { + "cppref": "cpp/numeric/byteswap", + "cppdoc": "cpp/library/utility/bit/byteswap" + }, + { + "cppref": "cpp/numeric/countl_zero", + "cppdoc": "cpp/library/utility/bit/countl_zero" + }, + { + "cppref": "cpp/numeric/bit_ceil", + "cppdoc": "cpp/library/utility/bit/bit_ceil" + }, + { + "cppref": "cpp/numeric/bit_width", + "cppdoc": "cpp/library/utility/bit/bit_width" + }, + { + "cppref": "cpp/numeric/countr_one", + "cppdoc": "cpp/library/utility/bit/countr_one" + }, + { + "cppref": "cpp/language/alignas", + "cppdoc": "cpp/language/declarations/alignas" + }, + { + "cppref": "cpp/language/implicit_conversion", + "cppdoc": "cpp/language/expressions/implicit_conversion" + }, + { + "cppref": "cpp/language/overloaded_address", + "cppdoc": "cpp/language/functions/overloaded_address" + }, + { + "cppref": "cpp/language/sfinae", + "cppdoc": "cpp/language/templates/sfinae" + }, + { + "cppref": "cpp/language/qualified_lookup", + "cppdoc": "cpp/language/basic_concepts/qualified_lookup" + }, + { + "cppref": "cpp/language/member_template", + "cppdoc": "cpp/language/templates/member_template" + }, + { + "cppref": "cpp/language/list_initialization", + "cppdoc": "cpp/language/initialization/list_initialization" + }, + { + "cppref": "cpp/language/unqualified_lookup", + "cppdoc": "cpp/language/basic_concepts/unqualified_lookup" + }, + { + "cppref": "cpp/language/return", + "cppdoc": "cpp/language/statements/return" + }, + { + "cppref": "cpp/language/do", + "cppdoc": "cpp/language/statements/do" + }, + { + "cppref": "cpp/language/catch", + "cppdoc": "cpp/language/exceptions/catch" + }, + { + "cppref": "cpp/language/types", + "cppdoc": "cpp/language/basic_concepts/types" + }, + { + "cppref": "cpp/language/except_spec", + "cppdoc": "cpp/language/exceptions/except_spec" + }, + { + "cppref": "cpp/language/multithread", + "cppdoc": "cpp/language/basic_concepts/multithread" + }, + { + "cppref": "cpp/language/scope", + "cppdoc": "cpp/language/basic_concepts/scope" + }, + { + "cppref": "cpp/language/default_arguments", + "cppdoc": "cpp/language/functions/default_arguments" + }, + { + "cppref": "cpp/language/default_initialization", + "cppdoc": "cpp/language/initialization/default_initialization" + }, + { + "cppref": "cpp/language/adl", + "cppdoc": "cpp/language/functions/adl" + }, + { + "cppref": "cpp/language/objects", + "cppdoc": "cpp/language/basic_concepts/objects" + }, + { + "cppref": "cpp/language/try", + "cppdoc": "cpp/language/exceptions/try" + }, + { + "cppref": "cpp/language/noexcept_spec", + "cppdoc": "cpp/language/exceptions/noexcept_spec" + }, + { + "cppref": "cpp/language/aggregate_initialization", + "cppdoc": "cpp/language/initialization/aggregate_initialization" + }, + { + "cppref": "cpp/language/lambda", + "cppdoc": "cpp/language/functions/lambda" + }, + { + "cppref": "cpp/language/modules", + "cppdoc": "cpp/language/basic_concepts/modules" + }, + { + "cppref": "cpp/language/contracts", + "cppdoc": "cpp/language/basic_concepts/contracts" + }, + { + "cppref": "cpp/language/copy_initialization", + "cppdoc": "cpp/language/initialization/copy_initialization" + }, + { + "cppref": "cpp/language/memory_model", + "cppdoc": "cpp/language/basic_concepts/memory_model" + }, + { + "cppref": "cpp/language/constant_initialization", + "cppdoc": "cpp/language/initialization/constant_initialization" + }, + { + "cppref": "cpp/language/variadic_arguments", + "cppdoc": "cpp/language/functions/variadic_arguments" + }, + { + "cppref": "cpp/language/as_if", + "cppdoc": "cpp/language/basic_concepts/as_if" + }, + { + "cppref": "cpp/language/incomplete_type", + "cppdoc": "cpp/language/basic_concepts/incomplete_type" + }, + { + "cppref": "cpp/language/coroutines", + "cppdoc": "cpp/language/functions/coroutines" + }, + { + "cppref": "cpp/language/ub", + "cppdoc": "cpp/language/basic_concepts/ub" + }, + { + "cppref": "cpp/language/function", + "cppdoc": "cpp/language/functions/function" + }, + { + "cppref": "cpp/language/name", + "cppdoc": "cpp/language/basic_concepts/name" + }, + { + "cppref": "cpp/language/overload_resolution", + "cppdoc": "cpp/language/functions/overload_resolution" + }, + { + "cppref": "cpp/language/type-id", + "cppdoc": "cpp/language/basic_concepts/type-id" + }, + { + "cppref": "cpp/language/definition", + "cppdoc": "cpp/language/basic_concepts/definition" + }, + { + "cppref": "cpp/language/zero_initialization", + "cppdoc": "cpp/language/initialization/zero_initialization" + }, + { + "cppref": "cpp/language/charset", + "cppdoc": "cpp/language/basic_concepts/charset" + }, + { + "cppref": "cpp/language/translation_phases", + "cppdoc": "cpp/language/basic_concepts/translation_phases" + }, + { + "cppref": "cpp/language/lifetime", + "cppdoc": "cpp/language/basic_concepts/lifetime" + }, + { + "cppref": "cpp/language/type", + "cppdoc": "cpp/language/basic_concepts/type" + }, + { + "cppref": "cpp/language/copy_elision", + "cppdoc": "cpp/language/initialization/copy_elision" + }, + { + "cppref": "cpp/language/punctuators", + "cppdoc": "cpp/language/basic_concepts/punctuators" + }, + { + "cppref": "cpp/language/lookup", + "cppdoc": "cpp/language/basic_concepts/lookup" + }, + { + "cppref": "cpp/language/direct_initialization", + "cppdoc": "cpp/language/initialization/direct_initialization" + }, + { + "cppref": "cpp/language/object", + "cppdoc": "cpp/language/basic_concepts/object" + }, + { + "cppref": "cpp/language/main_function", + "cppdoc": "cpp/language/basic_concepts/main_function" + }, + { + "cppref": "cpp/language/value_initialization", + "cppdoc": "cpp/language/initialization/value_initialization" + }, + { + "cppref": "cpp/language/identifiers", + "cppdoc": "cpp/language/basic_concepts/identifiers" + }, + { + "cppref": "cpp/execution/into_variant", + "cppdoc": "cpp/library/experimental/execution/into_variant" + }, + { + "cppref": "cpp/execution/upon_error", + "cppdoc": "cpp/library/experimental/execution/upon_error" + }, + { + "cppref": "cpp/execution/just_stopped", + "cppdoc": "cpp/library/experimental/execution/just_stopped" + }, + { + "cppref": "cpp/execution/ensure_started", + "cppdoc": "cpp/library/experimental/execution/ensure_started" + }, + { + "cppref": "cpp/execution/stopped_as_error", + "cppdoc": "cpp/library/experimental/execution/stopped_as_error" + }, + { + "cppref": "cpp/execution/just", + "cppdoc": "cpp/library/experimental/execution/just" + }, + { + "cppref": "cpp/execution/scheduler", + "cppdoc": "cpp/library/experimental/execution/scheduler" + }, + { + "cppref": "cpp/execution/let_stopped", + "cppdoc": "cpp/library/experimental/execution/let_stopped" + }, + { + "cppref": "cpp/execution/upon_stopped", + "cppdoc": "cpp/library/experimental/execution/upon_stopped" + }, + { + "cppref": "cpp/execution/then", + "cppdoc": "cpp/library/experimental/execution/then" + }, + { + "cppref": "cpp/execution/on", + "cppdoc": "cpp/library/experimental/execution/on" + }, + { + "cppref": "cpp/execution/read_env", + "cppdoc": "cpp/library/experimental/execution/read_env" + }, + { + "cppref": "cpp/execution/stopped_as_optional", + "cppdoc": "cpp/library/experimental/execution/stopped_as_optional" + }, + { + "cppref": "cpp/execution/just_error", + "cppdoc": "cpp/library/experimental/execution/just_error" + }, + { + "cppref": "cpp/execution/let_value", + "cppdoc": "cpp/library/experimental/execution/let_value" + }, + { + "cppref": "cpp/execution/schedule", + "cppdoc": "cpp/library/experimental/execution/schedule" + }, + { + "cppref": "cpp/execution/let_error", + "cppdoc": "cpp/library/experimental/execution/let_error" + }, + { + "cppref": "cpp/execution/when_all", + "cppdoc": "cpp/library/experimental/execution/when_all" + }, + { + "cppref": "cpp/utility/piecewise_construct_t", + "cppdoc": "cpp/library/utility/pair/piecewise_construct_t" + }, + { + "cppref": "cpp/utility/unreachable", + "cppdoc": "cpp/library/utility/program/unreachable" + }, + { + "cppref": "cpp/utility/piecewise_construct", + "cppdoc": "cpp/library/utility/pair/piecewise_construct" + }, + { + "cppref": "cpp/utility/nontype", + "cppdoc": "cpp/library/utility/functional/nontype" + }, + { + "cppref": "cpp/thread/this_thread/sync_wait", + "cppdoc": "cpp/library/experimental/execution/sync_wait" + }, + { + "cppref": "cpp/symbol_index/string_view_literals", + "cppdoc": null + }, + { + "cppref": "cpp/keywords/static", + "cppdoc": "cpp/language/keywords/static" + }, + { + "cppref": "cpp/keywords/if", + "cppdoc": "cpp/language/keywords/if" + }, + { + "cppref": "cpp/keywords/typename", + "cppdoc": "cpp/language/keywords/typename" + }, + { + "cppref": "cpp/io/cerr", + "cppdoc": "cpp/library/io/basic_ostream/cerr" + }, + { + "cppref": "cpp/io/cout", + "cppdoc": "cpp/library/io/basic_ostream/cout" + }, + { + "cppref": "cpp/io/clog", + "cppdoc": "cpp/library/io/basic_ostream/clog" + }, + { + "cppref": "cpp/experimental/ostream_joiner", + "cppdoc": "cpp/library/experimental/lib_extensions_2/ostream_joiner" + }, + { + "cppref": "cpp/experimental/transform_reduce", + "cppdoc": "cpp/library/experimental/parallelism/transform_reduce" + }, + { + "cppref": "cpp/experimental/latch", + "cppdoc": "cpp/library/experimental/concurrency/latch" + }, + { + "cppref": "cpp/experimental/boyer_moore_searcher", + "cppdoc": "cpp/library/experimental/memory/boyer_moore_searcher" + }, + { + "cppref": "cpp/experimental/sample", + "cppdoc": "cpp/library/experimental/memory/sample" + }, + { + "cppref": "cpp/experimental/type_trait_variable_templates", + "cppdoc": "cpp/library/experimental/memory/type_trait_variable_templates" + }, + { + "cppref": "cpp/experimental/set_default_resource", + "cppdoc": "cpp/library/experimental/memory/set_default_resource" + }, + { + "cppref": "cpp/experimental/future", + "cppdoc": "cpp/library/experimental/concurrency/future" + }, + { + "cppref": "cpp/experimental/search", + "cppdoc": "cpp/library/experimental/memory/search" + }, + { + "cppref": "cpp/experimental/any", + "cppdoc": "cpp/library/experimental/memory/any" + }, + { + "cppref": "cpp/experimental/default_searcher", + "cppdoc": "cpp/library/experimental/memory/default_searcher" + }, + { + "cppref": "cpp/experimental/get_default_resource", + "cppdoc": "cpp/library/experimental/memory/get_default_resource" + }, + { + "cppref": "cpp/experimental/polymorphic_allocator", + "cppdoc": "cpp/library/experimental/memory/polymorphic_allocator" + }, + { + "cppref": "cpp/experimental/resource_adaptor", + "cppdoc": "cpp/library/experimental/memory/resource_adaptor" + }, + { + "cppref": "cpp/experimental/monotonic_buffer_resource", + "cppdoc": "cpp/library/experimental/memory/monotonic_buffer_resource" + }, + { + "cppref": "cpp/experimental/barrier", + "cppdoc": "cpp/library/experimental/concurrency/barrier" + }, + { + "cppref": "cpp/experimental/make_exceptional_future", + "cppdoc": "cpp/library/experimental/concurrency/make_exceptional_future" + }, + { + "cppref": "cpp/experimental/pool_options", + "cppdoc": "cpp/library/experimental/memory/pool_options" + }, + { + "cppref": "cpp/experimental/shared_future", + "cppdoc": "cpp/library/experimental/concurrency/shared_future" + }, + { + "cppref": "cpp/experimental/unsynchronized_pool_resource", + "cppdoc": "cpp/library/experimental/memory/unsynchronized_pool_resource" + }, + { + "cppref": "cpp/experimental/new_delete_resource", + "cppdoc": "cpp/library/experimental/memory/new_delete_resource" + }, + { + "cppref": "cpp/experimental/shared_ptr", + "cppdoc": "cpp/library/experimental/memory/shared_ptr" + }, + { + "cppref": "cpp/experimental/boyer_moore_horspool_searcher", + "cppdoc": "cpp/library/experimental/memory/boyer_moore_horspool_searcher" + }, + { + "cppref": "cpp/experimental/weak_ptr", + "cppdoc": "cpp/library/experimental/memory/weak_ptr" + }, + { + "cppref": "cpp/experimental/simd", + "cppdoc": "cpp/library/experimental/parallelism_2/simd" + }, + { + "cppref": "cpp/experimental/barrier/barrier", + "cppdoc": "cpp/library/experimental/concurrency/barrier/barrier" + }, + { + "cppref": "cpp/experimental/barrier/arrive_and_wait", + "cppdoc": "cpp/library/experimental/concurrency/barrier/arrive_and_wait" + }, + { + "cppref": "cpp/experimental/barrier/~barrier", + "cppdoc": "cpp/library/experimental/concurrency/barrier/~barrier" + }, + { + "cppref": "cpp/experimental/barrier/arrive_and_drop", + "cppdoc": "cpp/library/experimental/concurrency/barrier/arrive_and_drop" + }, + { + "cppref": "cpp/experimental/shared_future/then", + "cppdoc": "cpp/library/experimental/concurrency/shared_future/then" + }, + { + "cppref": "cpp/experimental/shared_future/shared_future", + "cppdoc": "cpp/library/experimental/concurrency/shared_future/shared_future" + }, + { + "cppref": "cpp/experimental/shared_future/is_ready", + "cppdoc": "cpp/library/experimental/concurrency/shared_future/is_ready" + }, + { + "cppref": "cpp/experimental/shared_future/operator=", + "cppdoc": "cpp/library/experimental/concurrency/shared_future/operator=" + }, + { + "cppref": "cpp/experimental/latch/~latch", + "cppdoc": "cpp/library/experimental/concurrency/latch/~latch" + }, + { + "cppref": "cpp/experimental/latch/latch", + "cppdoc": "cpp/library/experimental/concurrency/latch/latch" + }, + { + "cppref": "cpp/experimental/latch/count_down_and_wait", + "cppdoc": "cpp/library/experimental/concurrency/latch/count_down_and_wait" + }, + { + "cppref": "cpp/experimental/latch/is_ready", + "cppdoc": "cpp/library/experimental/concurrency/latch/is_ready" + }, + { + "cppref": "cpp/experimental/latch/wait", + "cppdoc": "cpp/library/experimental/concurrency/latch/wait" + }, + { + "cppref": "cpp/experimental/latch/count_down", + "cppdoc": "cpp/library/experimental/concurrency/latch/count_down" + }, + { + "cppref": "cpp/experimental/any/~any", + "cppdoc": "cpp/library/experimental/memory/any/~any" + }, + { + "cppref": "cpp/experimental/any/empty", + "cppdoc": "cpp/library/experimental/memory/any/empty" + }, + { + "cppref": "cpp/experimental/any/any", + "cppdoc": "cpp/library/experimental/memory/any/any" + }, + { + "cppref": "cpp/experimental/any/swap2", + "cppdoc": "cpp/library/experimental/memory/any/swap2" + }, + { + "cppref": "cpp/experimental/any/swap", + "cppdoc": "cpp/library/experimental/memory/any/swap" + }, + { + "cppref": "cpp/experimental/any/any_cast", + "cppdoc": "cpp/library/experimental/memory/any/any_cast" + }, + { + "cppref": "cpp/experimental/any/type", + "cppdoc": "cpp/library/experimental/memory/any/type" + }, + { + "cppref": "cpp/experimental/any/bad_any_cast", + "cppdoc": "cpp/library/experimental/memory/any/bad_any_cast" + }, + { + "cppref": "cpp/experimental/any/operator=", + "cppdoc": "cpp/library/experimental/memory/any/operator=" + }, + { + "cppref": "cpp/experimental/any/clear", + "cppdoc": "cpp/library/experimental/memory/any/clear" + }, + { + "cppref": "cpp/experimental/unsynchronized_pool_resource/do_is_equal", + "cppdoc": "cpp/library/experimental/memory/unsynchronized_pool_resource/do_is_equal" + }, + { + "cppref": "cpp/experimental/unsynchronized_pool_resource/do_deallocate", + "cppdoc": "cpp/library/experimental/memory/unsynchronized_pool_resource/do_deallocate" + }, + { + "cppref": "cpp/experimental/unsynchronized_pool_resource/unsynchronized_pool_resource", + "cppdoc": "cpp/library/experimental/memory/unsynchronized_pool_resource/unsynchronized_pool_resource" + }, + { + "cppref": "cpp/experimental/unsynchronized_pool_resource/do_allocate", + "cppdoc": "cpp/library/experimental/memory/unsynchronized_pool_resource/do_allocate" + }, + { + "cppref": "cpp/experimental/unsynchronized_pool_resource/options", + "cppdoc": "cpp/library/experimental/memory/unsynchronized_pool_resource/options" + }, + { + "cppref": "cpp/experimental/unsynchronized_pool_resource/release", + "cppdoc": "cpp/library/experimental/memory/unsynchronized_pool_resource/release" + }, + { + "cppref": "cpp/experimental/unsynchronized_pool_resource/~unsynchronized_pool_resource", + "cppdoc": "cpp/library/experimental/memory/unsynchronized_pool_resource/~unsynchronized_pool_resource" + }, + { + "cppref": "cpp/experimental/unsynchronized_pool_resource/upstream_resource", + "cppdoc": "cpp/library/experimental/memory/unsynchronized_pool_resource/upstream_resource" + }, + { + "cppref": "cpp/experimental/future/future", + "cppdoc": "cpp/library/experimental/concurrency/future/future" + }, + { + "cppref": "cpp/experimental/future/then", + "cppdoc": "cpp/library/experimental/concurrency/future/then" + }, + { + "cppref": "cpp/experimental/future/is_ready", + "cppdoc": "cpp/library/experimental/concurrency/future/is_ready" + }, + { + "cppref": "cpp/experimental/future/operator=", + "cppdoc": "cpp/library/experimental/concurrency/future/operator=" + }, + { + "cppref": "cpp/experimental/monotonic_buffer_resource/~monotonic_buffer_resource", + "cppdoc": "cpp/library/experimental/memory/monotonic_buffer_resource/~monotonic_buffer_resource" + }, + { + "cppref": "cpp/experimental/monotonic_buffer_resource/do_is_equal", + "cppdoc": "cpp/library/experimental/memory/monotonic_buffer_resource/do_is_equal" + }, + { + "cppref": "cpp/experimental/monotonic_buffer_resource/monotonic_buffer_resource", + "cppdoc": "cpp/library/experimental/memory/monotonic_buffer_resource/monotonic_buffer_resource" + }, + { + "cppref": "cpp/experimental/monotonic_buffer_resource/do_deallocate", + "cppdoc": "cpp/library/experimental/memory/monotonic_buffer_resource/do_deallocate" + }, + { + "cppref": "cpp/experimental/monotonic_buffer_resource/do_allocate", + "cppdoc": "cpp/library/experimental/memory/monotonic_buffer_resource/do_allocate" + }, + { + "cppref": "cpp/experimental/monotonic_buffer_resource/release", + "cppdoc": "cpp/library/experimental/memory/monotonic_buffer_resource/release" + }, + { + "cppref": "cpp/experimental/monotonic_buffer_resource/upstream_resource", + "cppdoc": "cpp/library/experimental/memory/monotonic_buffer_resource/upstream_resource" + }, + { + "cppref": "cpp/experimental/polymorphic_allocator/operator_eq", + "cppdoc": "cpp/library/experimental/memory/polymorphic_allocator/operator_eq" + }, + { + "cppref": "cpp/experimental/polymorphic_allocator/allocate", + "cppdoc": "cpp/library/experimental/memory/polymorphic_allocator/allocate" + }, + { + "cppref": "cpp/experimental/polymorphic_allocator/deallocate", + "cppdoc": "cpp/library/experimental/memory/polymorphic_allocator/deallocate" + }, + { + "cppref": "cpp/experimental/polymorphic_allocator/polymorphic_allocator", + "cppdoc": "cpp/library/experimental/memory/polymorphic_allocator/polymorphic_allocator" + }, + { + "cppref": "cpp/experimental/polymorphic_allocator/select_on_container_copy_construction", + "cppdoc": "cpp/library/experimental/memory/polymorphic_allocator/select_on_container_copy_construction" + }, + { + "cppref": "cpp/experimental/polymorphic_allocator/construct", + "cppdoc": "cpp/library/experimental/memory/polymorphic_allocator/construct" + }, + { + "cppref": "cpp/experimental/polymorphic_allocator/destroy", + "cppdoc": "cpp/library/experimental/memory/polymorphic_allocator/destroy" + }, + { + "cppref": "cpp/experimental/polymorphic_allocator/operator=", + "cppdoc": "cpp/library/experimental/memory/polymorphic_allocator/operator=" + }, + { + "cppref": "cpp/experimental/polymorphic_allocator/resource", + "cppdoc": "cpp/library/experimental/memory/polymorphic_allocator/resource" + }, + { + "cppref": "cpp/experimental/shared_ptr/operator_at", + "cppdoc": "cpp/library/experimental/memory/shared_ptr/operator_at" + }, + { + "cppref": "cpp/experimental/shared_ptr/hash", + "cppdoc": "cpp/library/experimental/memory/shared_ptr/hash" + }, + { + "cppref": "cpp/experimental/shared_ptr/shared_ptr", + "cppdoc": "cpp/library/experimental/memory/shared_ptr/shared_ptr" + }, + { + "cppref": "cpp/experimental/shared_ptr/operator_star_", + "cppdoc": "cpp/library/experimental/memory/shared_ptr/operator_star_" + }, + { + "cppref": "cpp/experimental/shared_ptr/get", + "cppdoc": "cpp/library/experimental/memory/shared_ptr/get" + }, + { + "cppref": "cpp/experimental/shared_ptr/pointer_cast", + "cppdoc": "cpp/library/experimental/memory/shared_ptr/pointer_cast" + }, + { + "cppref": "cpp/experimental/ostream_joiner/ostream_joiner", + "cppdoc": "cpp/library/experimental/lib_extensions_2/ostream_joiner/ostream_joiner" + }, + { + "cppref": "cpp/experimental/ostream_joiner/make_ostream_joiner", + "cppdoc": "cpp/library/experimental/lib_extensions_2/ostream_joiner/make_ostream_joiner" + }, + { + "cppref": "cpp/experimental/ostream_joiner/operator_arith", + "cppdoc": "cpp/library/experimental/lib_extensions_2/ostream_joiner/operator_arith" + }, + { + "cppref": "cpp/experimental/ostream_joiner/operator_star_", + "cppdoc": "cpp/library/experimental/lib_extensions_2/ostream_joiner/operator_star_" + }, + { + "cppref": "cpp/experimental/ostream_joiner/operator=", + "cppdoc": "cpp/library/experimental/lib_extensions_2/ostream_joiner/operator=" + }, + { + "cppref": "cpp/experimental/weak_ptr/weak_ptr", + "cppdoc": "cpp/library/experimental/memory/weak_ptr/weak_ptr" + }, + { + "cppref": "cpp/experimental/simd/is_simd", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/is_simd" + }, + { + "cppref": "cpp/experimental/simd/const_where_expression", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/const_where_expression" + }, + { + "cppref": "cpp/experimental/simd/popcount", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/popcount" + }, + { + "cppref": "cpp/experimental/simd/clamp", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/clamp" + }, + { + "cppref": "cpp/experimental/simd/scalar", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/scalar" + }, + { + "cppref": "cpp/experimental/simd/where_expression", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/where_expression" + }, + { + "cppref": "cpp/experimental/simd/deduce", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/deduce" + }, + { + "cppref": "cpp/experimental/simd/min", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/min" + }, + { + "cppref": "cpp/experimental/simd/minmax", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/minmax" + }, + { + "cppref": "cpp/experimental/simd/native", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/native" + }, + { + "cppref": "cpp/experimental/simd/max_fixed_size", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/max_fixed_size" + }, + { + "cppref": "cpp/experimental/simd/overaligned", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/overaligned" + }, + { + "cppref": "cpp/experimental/simd/simd_cast", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd_cast" + }, + { + "cppref": "cpp/experimental/simd/memory_alignment", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/memory_alignment" + }, + { + "cppref": "cpp/experimental/simd/element_aligned", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/element_aligned" + }, + { + "cppref": "cpp/experimental/simd/vector_aligned", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/vector_aligned" + }, + { + "cppref": "cpp/experimental/simd/max", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/max" + }, + { + "cppref": "cpp/experimental/simd/find_first_set", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/find_first_set" + }, + { + "cppref": "cpp/experimental/simd/split", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/split" + }, + { + "cppref": "cpp/experimental/simd/simd", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd" + }, + { + "cppref": "cpp/experimental/simd/reduce", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/reduce" + }, + { + "cppref": "cpp/experimental/simd/abi_cast", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/abi_cast" + }, + { + "cppref": "cpp/experimental/simd/fixed_size", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/fixed_size" + }, + { + "cppref": "cpp/experimental/simd/all_of", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/all_of" + }, + { + "cppref": "cpp/experimental/simd/simd_mask", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd_mask" + }, + { + "cppref": "cpp/experimental/simd/concat", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/concat" + }, + { + "cppref": "cpp/experimental/simd/compatible", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/compatible" + }, + { + "cppref": "cpp/experimental/simd/simd_size", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd_size" + }, + { + "cppref": "cpp/experimental/simd/is_abi_tag", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/is_abi_tag" + }, + { + "cppref": "cpp/experimental/simd/where", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/where" + }, + { + "cppref": "cpp/experimental/simd/is_simd_flag_type", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/is_simd_flag_type" + }, + { + "cppref": "cpp/experimental/simd/rebind_simd", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/rebind_simd" + }, + { + "cppref": "cpp/experimental/simd/simd_mask/operator_at", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd_mask/operator_at" + }, + { + "cppref": "cpp/experimental/simd/simd_mask/size", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd_mask/size" + }, + { + "cppref": "cpp/experimental/simd/simd_mask/copy_to", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd_mask/copy_to" + }, + { + "cppref": "cpp/experimental/simd/simd_mask/copy_from", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd_mask/copy_from" + }, + { + "cppref": "cpp/experimental/simd/simd_mask/simd_mask", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd_mask/simd_mask" + }, + { + "cppref": "cpp/experimental/simd/simd/operator_at", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd/operator_at" + }, + { + "cppref": "cpp/experimental/simd/simd/operator_mem_arith", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd/operator_mem_arith" + }, + { + "cppref": "cpp/experimental/simd/simd/size", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd/size" + }, + { + "cppref": "cpp/experimental/simd/simd/operator_arith", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd/operator_arith" + }, + { + "cppref": "cpp/experimental/simd/simd/simd", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd/simd" + }, + { + "cppref": "cpp/experimental/simd/simd/copy_to", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd/copy_to" + }, + { + "cppref": "cpp/experimental/simd/simd/operator_compound", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd/operator_compound" + }, + { + "cppref": "cpp/experimental/simd/simd/copy_from", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd/copy_from" + }, + { + "cppref": "cpp/experimental/simd/simd/operator_cmp", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd/operator_cmp" + }, + { + "cppref": "cpp/experimental/simd/simd/operator_mem_arith2", + "cppdoc": "cpp/library/experimental/parallelism_2/simd/simd/operator_mem_arith2" + }, + { + "cppref": "cpp/keyword/alignas", + "cppdoc": "cpp/language/keywords/alignas" + }, + { + "cppref": "cpp/keyword/and", + "cppdoc": "cpp/language/keywords/and" + }, + { + "cppref": "cpp/keyword/compl", + "cppdoc": "cpp/language/keywords/compl" + }, + { + "cppref": "cpp/keyword/false", + "cppdoc": "cpp/language/keywords/false" + }, + { + "cppref": "cpp/keyword/signed", + "cppdoc": "cpp/language/keywords/signed" + }, + { + "cppref": "cpp/keyword/static", + "cppdoc": "cpp/language/keywords/static" + }, + { + "cppref": "cpp/keyword/extern", + "cppdoc": "cpp/language/keywords/extern" + }, + { + "cppref": "cpp/keyword/consteval", + "cppdoc": "cpp/language/keywords/consteval" + }, + { + "cppref": "cpp/keyword/atomic_cancel", + "cppdoc": "cpp/language/keywords/atomic_cancel" + }, + { + "cppref": "cpp/keyword/export", + "cppdoc": "cpp/language/keywords/export" + }, + { + "cppref": "cpp/keyword/char", + "cppdoc": "cpp/language/keywords/char" + }, + { + "cppref": "cpp/keyword/protected", + "cppdoc": "cpp/language/keywords/protected" + }, + { + "cppref": "cpp/keyword/return", + "cppdoc": "cpp/language/keywords/return" + }, + { + "cppref": "cpp/keyword/do", + "cppdoc": "cpp/language/keywords/do" + }, + { + "cppref": "cpp/keyword/true", + "cppdoc": "cpp/language/keywords/true" + }, + { + "cppref": "cpp/keyword/catch", + "cppdoc": "cpp/language/keywords/catch" + }, + { + "cppref": "cpp/keyword/delete", + "cppdoc": "cpp/language/keywords/delete" + }, + { + "cppref": "cpp/keyword/wchar_t", + "cppdoc": "cpp/language/keywords/wchar_t" + }, + { + "cppref": "cpp/keyword/class", + "cppdoc": "cpp/language/keywords/class" + }, + { + "cppref": "cpp/keyword/reflexpr", + "cppdoc": "cpp/language/keywords/reflexpr" + }, + { + "cppref": "cpp/keyword/and_eq", + "cppdoc": "cpp/language/keywords/and_eq" + }, + { + "cppref": "cpp/keyword/requires", + "cppdoc": "cpp/language/keywords/requires" + }, + { + "cppref": "cpp/keyword/default", + "cppdoc": "cpp/language/keywords/default" + }, + { + "cppref": "cpp/keyword/alignof", + "cppdoc": "cpp/language/keywords/alignof" + }, + { + "cppref": "cpp/keyword/namespace", + "cppdoc": "cpp/language/keywords/namespace" + }, + { + "cppref": "cpp/keyword/double", + "cppdoc": "cpp/language/keywords/double" + }, + { + "cppref": "cpp/keyword/volatile", + "cppdoc": "cpp/language/keywords/volatile" + }, + { + "cppref": "cpp/keyword/transaction_safe_dynamic", + "cppdoc": "cpp/language/keywords/transaction_safe_dynamic" + }, + { + "cppref": "cpp/keyword/char8_t", + "cppdoc": "cpp/language/keywords/char8_t" + }, + { + "cppref": "cpp/keyword/try", + "cppdoc": "cpp/language/keywords/try" + }, + { + "cppref": "cpp/keyword/float", + "cppdoc": "cpp/language/keywords/float" + }, + { + "cppref": "cpp/keyword/private", + "cppdoc": "cpp/language/keywords/private" + }, + { + "cppref": "cpp/keyword/this", + "cppdoc": "cpp/language/keywords/this" + }, + { + "cppref": "cpp/keyword/explicit", + "cppdoc": "cpp/language/keywords/explicit" + }, + { + "cppref": "cpp/keyword/thread_local", + "cppdoc": "cpp/language/keywords/thread_local" + }, + { + "cppref": "cpp/keyword/unsigned", + "cppdoc": "cpp/language/keywords/unsigned" + }, + { + "cppref": "cpp/keyword/xor_eq", + "cppdoc": "cpp/language/keywords/xor_eq" + }, + { + "cppref": "cpp/keyword/operator", + "cppdoc": "cpp/language/keywords/operator" + }, + { + "cppref": "cpp/keyword/switch", + "cppdoc": "cpp/language/keywords/switch" + }, + { + "cppref": "cpp/keyword/using", + "cppdoc": "cpp/language/keywords/using" + }, + { + "cppref": "cpp/keyword/new", + "cppdoc": "cpp/language/keywords/new" + }, + { + "cppref": "cpp/keyword/sizeof", + "cppdoc": "cpp/language/keywords/sizeof" + }, + { + "cppref": "cpp/keyword/for", + "cppdoc": "cpp/language/keywords/for" + }, + { + "cppref": "cpp/keyword/atomic_commit", + "cppdoc": "cpp/language/keywords/atomic_commit" + }, + { + "cppref": "cpp/keyword/const", + "cppdoc": "cpp/language/keywords/const" + }, + { + "cppref": "cpp/keyword/continue", + "cppdoc": "cpp/language/keywords/continue" + }, + { + "cppref": "cpp/keyword/if", + "cppdoc": "cpp/language/keywords/if" + }, + { + "cppref": "cpp/keyword/not", + "cppdoc": "cpp/language/keywords/not" + }, + { + "cppref": "cpp/keyword/reinterpret_cast", + "cppdoc": "cpp/language/keywords/reinterpret_cast" + }, + { + "cppref": "cpp/keyword/long", + "cppdoc": "cpp/language/keywords/long" + }, + { + "cppref": "cpp/keyword/static_cast", + "cppdoc": "cpp/language/keywords/static_cast" + }, + { + "cppref": "cpp/keyword/public", + "cppdoc": "cpp/language/keywords/public" + }, + { + "cppref": "cpp/keyword/typedef", + "cppdoc": "cpp/language/keywords/typedef" + }, + { + "cppref": "cpp/keyword/mutable", + "cppdoc": "cpp/language/keywords/mutable" + }, + { + "cppref": "cpp/keyword/nullptr", + "cppdoc": "cpp/language/keywords/nullptr" + }, + { + "cppref": "cpp/keyword/throw", + "cppdoc": "cpp/language/keywords/throw" + }, + { + "cppref": "cpp/keyword/bitand", + "cppdoc": "cpp/language/keywords/bitand" + }, + { + "cppref": "cpp/keyword/friend", + "cppdoc": "cpp/language/keywords/friend" + }, + { + "cppref": "cpp/keyword/static_assert", + "cppdoc": "cpp/language/keywords/static_assert" + }, + { + "cppref": "cpp/keyword/co_return", + "cppdoc": "cpp/language/keywords/co_return" + }, + { + "cppref": "cpp/keyword/template", + "cppdoc": "cpp/language/keywords/template" + }, + { + "cppref": "cpp/keyword/char16_t", + "cppdoc": "cpp/language/keywords/char16_t" + }, + { + "cppref": "cpp/keyword/else", + "cppdoc": "cpp/language/keywords/else" + }, + { + "cppref": "cpp/keyword/enum", + "cppdoc": "cpp/language/keywords/enum" + }, + { + "cppref": "cpp/keyword/atomic_noexcept", + "cppdoc": "cpp/language/keywords/atomic_noexcept" + }, + { + "cppref": "cpp/keyword/void", + "cppdoc": "cpp/language/keywords/void" + }, + { + "cppref": "cpp/keyword/or", + "cppdoc": "cpp/language/keywords/or" + }, + { + "cppref": "cpp/keyword/noexcept", + "cppdoc": "cpp/language/keywords/noexcept" + }, + { + "cppref": "cpp/keyword/asm", + "cppdoc": "cpp/language/keywords/asm" + }, + { + "cppref": "cpp/keyword/bool", + "cppdoc": "cpp/language/keywords/bool" + }, + { + "cppref": "cpp/keyword/case", + "cppdoc": "cpp/language/keywords/case" + }, + { + "cppref": "cpp/keyword/while", + "cppdoc": "cpp/language/keywords/while" + }, + { + "cppref": "cpp/keyword/union", + "cppdoc": "cpp/language/keywords/union" + }, + { + "cppref": "cpp/keyword/dynamic_cast", + "cppdoc": "cpp/language/keywords/dynamic_cast" + }, + { + "cppref": "cpp/keyword/int", + "cppdoc": "cpp/language/keywords/int" + }, + { + "cppref": "cpp/keyword/break", + "cppdoc": "cpp/language/keywords/break" + }, + { + "cppref": "cpp/keyword/transaction_safe", + "cppdoc": "cpp/language/keywords/transaction_safe" + }, + { + "cppref": "cpp/keyword/constexpr", + "cppdoc": "cpp/language/keywords/constexpr" + }, + { + "cppref": "cpp/keyword/co_yield", + "cppdoc": "cpp/language/keywords/co_yield" + }, + { + "cppref": "cpp/keyword/short", + "cppdoc": "cpp/language/keywords/short" + }, + { + "cppref": "cpp/keyword/struct", + "cppdoc": "cpp/language/keywords/struct" + }, + { + "cppref": "cpp/keyword/inline", + "cppdoc": "cpp/language/keywords/inline" + }, + { + "cppref": "cpp/keyword/decltype", + "cppdoc": "cpp/language/keywords/decltype" + }, + { + "cppref": "cpp/keyword/synchronized", + "cppdoc": "cpp/language/keywords/synchronized" + }, + { + "cppref": "cpp/keyword/register", + "cppdoc": "cpp/language/keywords/register" + }, + { + "cppref": "cpp/keyword/or_eq", + "cppdoc": "cpp/language/keywords/or_eq" + }, + { + "cppref": "cpp/keyword/typeid", + "cppdoc": "cpp/language/keywords/typeid" + }, + { + "cppref": "cpp/keyword/co_await", + "cppdoc": "cpp/language/keywords/co_await" + }, + { + "cppref": "cpp/keyword/bitor", + "cppdoc": "cpp/language/keywords/bitor" + }, + { + "cppref": "cpp/keyword/char32_t", + "cppdoc": "cpp/language/keywords/char32_t" + }, + { + "cppref": "cpp/keyword/goto", + "cppdoc": "cpp/language/keywords/goto" + }, + { + "cppref": "cpp/keyword/const_cast", + "cppdoc": "cpp/language/keywords/const_cast" + }, + { + "cppref": "cpp/keyword/concept", + "cppdoc": "cpp/language/keywords/concept" + }, + { + "cppref": "cpp/keyword/not_eq", + "cppdoc": "cpp/language/keywords/not_eq" + }, + { + "cppref": "cpp/keyword/xor", + "cppdoc": "cpp/language/keywords/xor" + }, + { + "cppref": "cpp/keyword/virtual", + "cppdoc": "cpp/language/keywords/virtual" + }, + { + "cppref": "cpp/keyword/constinit", + "cppdoc": "cpp/language/keywords/constinit" + }, + { + "cppref": "cpp/keyword/auto", + "cppdoc": "cpp/language/keywords/auto" + }, + { + "cppref": "cpp/types/bad_typeid", + "cppdoc": "cpp/library/utility/types/bad_typeid" + }, + { + "cppref": "cpp/types/size_t", + "cppdoc": "cpp/library/utility/types/size_t" + }, + { + "cppref": "cpp/types/NULL", + "cppdoc": "cpp/library/utility/types/NULL" + }, + { + "cppref": "cpp/types/numeric_limits", + "cppdoc": "cpp/library/utility/types/numeric_limits" + }, + { + "cppref": "cpp/types/max_align_t", + "cppdoc": "cpp/library/utility/types/max_align_t" + }, + { + "cppref": "cpp/types/byte", + "cppdoc": "cpp/library/utility/types/byte" + }, + { + "cppref": "cpp/types/type_index", + "cppdoc": "cpp/library/utility/types/type_index" + }, + { + "cppref": "cpp/types/integer", + "cppdoc": "cpp/library/utility/types/integer" + }, + { + "cppref": "cpp/types/nullptr_t", + "cppdoc": "cpp/library/utility/types/nullptr_t" + }, + { + "cppref": "cpp/types/climits", + "cppdoc": "cpp/library/utility/types/climits" + }, + { + "cppref": "cpp/types/bad_cast", + "cppdoc": "cpp/library/utility/types/bad_cast" + }, + { + "cppref": "cpp/types/offsetof", + "cppdoc": "cpp/library/utility/types/offsetof" + }, + { + "cppref": "cpp/types/type_info", + "cppdoc": "cpp/library/utility/types/type_info" + }, + { + "cppref": "cpp/types/floating-point", + "cppdoc": "cpp/library/utility/types/floating-point" + }, + { + "cppref": "cpp/types/ptrdiff_t", + "cppdoc": "cpp/library/utility/types/ptrdiff_t" + }, + { + "cppref": "cpp/types/type_info/before", + "cppdoc": "cpp/library/utility/types/type_info/before" + }, + { + "cppref": "cpp/types/type_info/~type_info", + "cppdoc": "cpp/library/utility/types/type_info/~type_info" + }, + { + "cppref": "cpp/types/type_info/hash_code", + "cppdoc": "cpp/library/utility/types/type_info/hash_code" + }, + { + "cppref": "cpp/types/type_info/name", + "cppdoc": "cpp/library/utility/types/type_info/name" + }, + { + "cppref": "cpp/types/type_info/operator_cmp", + "cppdoc": "cpp/library/utility/types/type_info/operator_cmp" + }, + { + "cppref": "cpp/types/type_index/hash", + "cppdoc": "cpp/library/utility/types/type_index/hash" + }, + { + "cppref": "cpp/types/type_index/hash_code", + "cppdoc": "cpp/library/utility/types/type_index/hash_code" + }, + { + "cppref": "cpp/types/type_index/type_index", + "cppdoc": "cpp/library/utility/types/type_index/type_index" + }, + { + "cppref": "cpp/types/type_index/name", + "cppdoc": "cpp/library/utility/types/type_index/name" + }, + { + "cppref": "cpp/types/type_index/operator_cmp", + "cppdoc": "cpp/library/utility/types/type_index/operator_cmp" + }, + { + "cppref": "cpp/types/climits/FLT_ROUNDS", + "cppdoc": "cpp/library/utility/types/climits/FLT_ROUNDS" + }, + { + "cppref": "cpp/types/climits/FLT_EVAL_METHOD", + "cppdoc": "cpp/library/utility/types/climits/FLT_EVAL_METHOD" + }, + { + "cppref": "cpp/types/numeric_limits/signaling_NaN", + "cppdoc": "cpp/library/utility/types/numeric_limits/signaling_NaN" + }, + { + "cppref": "cpp/types/numeric_limits/radix", + "cppdoc": "cpp/library/utility/types/numeric_limits/radix" + }, + { + "cppref": "cpp/types/numeric_limits/min_exponent", + "cppdoc": "cpp/library/utility/types/numeric_limits/min_exponent" + }, + { + "cppref": "cpp/types/numeric_limits/has_denorm_loss", + "cppdoc": "cpp/library/utility/types/numeric_limits/has_denorm_loss" + }, + { + "cppref": "cpp/types/numeric_limits/is_iec559", + "cppdoc": "cpp/library/utility/types/numeric_limits/is_iec559" + }, + { + "cppref": "cpp/types/numeric_limits/digits10", + "cppdoc": "cpp/library/utility/types/numeric_limits/digits10" + }, + { + "cppref": "cpp/types/numeric_limits/min", + "cppdoc": "cpp/library/utility/types/numeric_limits/min" + }, + { + "cppref": "cpp/types/numeric_limits/has_denorm", + "cppdoc": "cpp/library/utility/types/numeric_limits/has_denorm" + }, + { + "cppref": "cpp/types/numeric_limits/traps", + "cppdoc": "cpp/library/utility/types/numeric_limits/traps" + }, + { + "cppref": "cpp/types/numeric_limits/digits", + "cppdoc": "cpp/library/utility/types/numeric_limits/digits" + }, + { + "cppref": "cpp/types/numeric_limits/tinyness_before", + "cppdoc": "cpp/library/utility/types/numeric_limits/tinyness_before" + }, + { + "cppref": "cpp/types/numeric_limits/is_signed", + "cppdoc": "cpp/library/utility/types/numeric_limits/is_signed" + }, + { + "cppref": "cpp/types/numeric_limits/round_error", + "cppdoc": "cpp/library/utility/types/numeric_limits/round_error" + }, + { + "cppref": "cpp/types/numeric_limits/has_infinity", + "cppdoc": "cpp/library/utility/types/numeric_limits/has_infinity" + }, + { + "cppref": "cpp/types/numeric_limits/lowest", + "cppdoc": "cpp/library/utility/types/numeric_limits/lowest" + }, + { + "cppref": "cpp/types/numeric_limits/float_denorm_style", + "cppdoc": "cpp/library/utility/types/numeric_limits/float_denorm_style" + }, + { + "cppref": "cpp/types/numeric_limits/min_exponent10", + "cppdoc": "cpp/library/utility/types/numeric_limits/min_exponent10" + }, + { + "cppref": "cpp/types/numeric_limits/is_modulo", + "cppdoc": "cpp/library/utility/types/numeric_limits/is_modulo" + }, + { + "cppref": "cpp/types/numeric_limits/infinity", + "cppdoc": "cpp/library/utility/types/numeric_limits/infinity" + }, + { + "cppref": "cpp/types/numeric_limits/max", + "cppdoc": "cpp/library/utility/types/numeric_limits/max" + }, + { + "cppref": "cpp/types/numeric_limits/max_exponent10", + "cppdoc": "cpp/library/utility/types/numeric_limits/max_exponent10" + }, + { + "cppref": "cpp/types/numeric_limits/round_style", + "cppdoc": "cpp/library/utility/types/numeric_limits/round_style" + }, + { + "cppref": "cpp/types/numeric_limits/has_signaling_NaN", + "cppdoc": "cpp/library/utility/types/numeric_limits/has_signaling_NaN" + }, + { + "cppref": "cpp/types/numeric_limits/float_round_style", + "cppdoc": "cpp/library/utility/types/numeric_limits/float_round_style" + }, + { + "cppref": "cpp/types/numeric_limits/is_integer", + "cppdoc": "cpp/library/utility/types/numeric_limits/is_integer" + }, + { + "cppref": "cpp/types/numeric_limits/quiet_NaN", + "cppdoc": "cpp/library/utility/types/numeric_limits/quiet_NaN" + }, + { + "cppref": "cpp/types/numeric_limits/max_digits10", + "cppdoc": "cpp/library/utility/types/numeric_limits/max_digits10" + }, + { + "cppref": "cpp/types/numeric_limits/has_quiet_NaN", + "cppdoc": "cpp/library/utility/types/numeric_limits/has_quiet_NaN" + }, + { + "cppref": "cpp/types/numeric_limits/denorm_min", + "cppdoc": "cpp/library/utility/types/numeric_limits/denorm_min" + }, + { + "cppref": "cpp/types/numeric_limits/is_exact", + "cppdoc": "cpp/library/utility/types/numeric_limits/is_exact" + }, + { + "cppref": "cpp/types/numeric_limits/is_bounded", + "cppdoc": "cpp/library/utility/types/numeric_limits/is_bounded" + }, + { + "cppref": "cpp/types/numeric_limits/max_exponent", + "cppdoc": "cpp/library/utility/types/numeric_limits/max_exponent" + }, + { + "cppref": "cpp/types/numeric_limits/is_specialized", + "cppdoc": "cpp/library/utility/types/numeric_limits/is_specialized" + }, + { + "cppref": "cpp/types/numeric_limits/epsilon", + "cppdoc": "cpp/library/utility/types/numeric_limits/epsilon" + }, + { + "cppref": "cpp/coroutine/noop_coroutine", + "cppdoc": "cpp/library/utility/coroutine/noop_coroutine" + }, + { + "cppref": "cpp/coroutine/suspend_never", + "cppdoc": "cpp/library/utility/coroutine/suspend_never" + }, + { + "cppref": "cpp/coroutine/coroutine_handle", + "cppdoc": "cpp/library/utility/coroutine/coroutine_handle" + }, + { + "cppref": "cpp/coroutine/suspend_always", + "cppdoc": "cpp/library/utility/coroutine/suspend_always" + }, + { + "cppref": "cpp/coroutine/noop_coroutine_promise", + "cppdoc": "cpp/library/utility/coroutine/noop_coroutine_promise" + }, + { + "cppref": "cpp/coroutine/coroutine_traits", + "cppdoc": "cpp/library/utility/coroutine/coroutine_traits" + }, + { + "cppref": "cpp/coroutine/coroutine_handle/promise", + "cppdoc": "cpp/library/utility/coroutine/coroutine_handle/promise" + }, + { + "cppref": "cpp/coroutine/coroutine_handle/resume", + "cppdoc": "cpp/library/utility/coroutine/coroutine_handle/resume" + }, + { + "cppref": "cpp/coroutine/coroutine_handle/hash", + "cppdoc": "cpp/library/utility/coroutine/coroutine_handle/hash" + }, + { + "cppref": "cpp/coroutine/coroutine_handle/operator_coroutine_handle_void", + "cppdoc": "cpp/library/utility/coroutine/coroutine_handle/operator_coroutine_handle_void" + }, + { + "cppref": "cpp/coroutine/coroutine_handle/address", + "cppdoc": "cpp/library/utility/coroutine/coroutine_handle/address" + }, + { + "cppref": "cpp/coroutine/coroutine_handle/from_promise", + "cppdoc": "cpp/library/utility/coroutine/coroutine_handle/from_promise" + }, + { + "cppref": "cpp/coroutine/coroutine_handle/from_address", + "cppdoc": "cpp/library/utility/coroutine/coroutine_handle/from_address" + }, + { + "cppref": "cpp/coroutine/coroutine_handle/coroutine_handle", + "cppdoc": "cpp/library/utility/coroutine/coroutine_handle/coroutine_handle" + }, + { + "cppref": "cpp/coroutine/coroutine_handle/operator_cmp", + "cppdoc": "cpp/library/utility/coroutine/coroutine_handle/operator_cmp" + }, + { + "cppref": "cpp/coroutine/coroutine_handle/destroy", + "cppdoc": "cpp/library/utility/coroutine/coroutine_handle/destroy" + }, + { + "cppref": "cpp/coroutine/coroutine_handle/operator_bool", + "cppdoc": "cpp/library/utility/coroutine/coroutine_handle/operator_bool" + }, + { + "cppref": "cpp/coroutine/coroutine_handle/operator=", + "cppdoc": "cpp/library/utility/coroutine/coroutine_handle/operator=" + }, + { + "cppref": "cpp/coroutine/coroutine_handle/done", + "cppdoc": "cpp/library/utility/coroutine/coroutine_handle/done" + }, + { + "cppref": "cpp/chrono/operator_q__q_s", + "cppdoc": "cpp/library/chrono/duration/operator_q__q_s" + }, + { + "cppref": "cpp/chrono/operator_q__q_y", + "cppdoc": "cpp/library/chrono/year/operator_q__q_y" + }, + { + "cppref": "cpp/chrono/operator_q__q_min", + "cppdoc": "cpp/library/chrono/duration/operator_q__q_min" + }, + { + "cppref": "cpp/chrono/operator_q__q_d", + "cppdoc": "cpp/library/chrono/day/operator_q__q_d" + }, + { + "cppref": "c/11", + "cppdoc": "c/language/history/11" + }, + { + "cppref": "c/17", + "cppdoc": "c/language/history/17" + }, + { + "cppref": "c/keyword", + "cppdoc": "c/language/keyword" + }, + { + "cppref": "c/current_status", + "cppdoc": "c/language/history/current_status" + }, + { + "cppref": "c/23", + "cppdoc": "c/language/history/23" + }, + { + "cppref": "c/experimental", + "cppdoc": "c/language/experimental" + }, + { + "cppref": "c/99", + "cppdoc": "c/language/history/99" + }, + { + "cppref": "c/95", + "cppdoc": "c/language/history/95" + }, + { + "cppref": "c/comment", + "cppdoc": "c/language/basic_concepts/comment" + }, + { + "cppref": "c/language/alignas", + "cppdoc": "c/language/declarations/alignas" + }, + { + "cppref": "c/language/atomic", + "cppdoc": "c/language/declarations/atomic" + }, + { + "cppref": "c/language/integer_constant", + "cppdoc": "c/language/expressions/integer_constant" + }, + { + "cppref": "c/language/bool_constant", + "cppdoc": "c/language/expressions/bool_constant" + }, + { + "cppref": "c/language/return", + "cppdoc": "c/language/statements/return" + }, + { + "cppref": "c/language/do", + "cppdoc": "c/language/statements/do" + }, + { + "cppref": "c/language/types", + "cppdoc": "c/language/basic_concepts/types" + }, + { + "cppref": "c/language/_Noreturn", + "cppdoc": "c/language/functions/_Noreturn" + }, + { + "cppref": "c/language/identifier", + "cppdoc": "c/language/basic_concepts/identifier" + }, + { + "cppref": "c/language/scope", + "cppdoc": "c/language/basic_concepts/scope" + }, + { + "cppref": "c/language/ascii", + "cppdoc": "c/language/basic_concepts/ascii" + }, + { + "cppref": "c/language/variadic", + "cppdoc": "c/language/functions/variadic" + }, + { + "cppref": "c/language/function_declaration", + "cppdoc": "c/language/functions/function_declaration" + }, + { + "cppref": "c/language/memory_model", + "cppdoc": "c/language/basic_concepts/memory_model" + }, + { + "cppref": "c/language/as_if", + "cppdoc": "c/language/basic_concepts/as_if" + }, + { + "cppref": "c/language/compatible_type", + "cppdoc": "c/language/basic_concepts/compatible_type" + }, + { + "cppref": "c/language/scalar_initialization", + "cppdoc": "c/language/initialization/scalar_initialization" + }, + { + "cppref": "c/language/behavior", + "cppdoc": "c/language/basic_concepts/behavior" + }, + { + "cppref": "c/language/arithmetic_types", + "cppdoc": "c/language/basic_concepts/arithmetic_types" + }, + { + "cppref": "c/language/charset", + "cppdoc": "c/language/basic_concepts/charset" + }, + { + "cppref": "c/language/translation_phases", + "cppdoc": "c/language/basic_concepts/translation_phases" + }, + { + "cppref": "c/language/lifetime", + "cppdoc": "c/language/basic_concepts/lifetime" + }, + { + "cppref": "c/language/type", + "cppdoc": "c/language/basic_concepts/type" + }, + { + "cppref": "c/language/array_initialization", + "cppdoc": "c/language/initialization/array_initialization" + }, + { + "cppref": "c/language/punctuators", + "cppdoc": "c/language/basic_concepts/punctuators" + }, + { + "cppref": "c/language/object", + "cppdoc": "c/language/basic_concepts/object" + }, + { + "cppref": "c/language/main_function", + "cppdoc": "c/language/basic_concepts/main_function" + }, + { + "cppref": "c/language/name_space", + "cppdoc": "c/language/basic_concepts/name_space" + }, + { + "cppref": "c/experimental/fpext1", + "cppdoc": "c/language/experimental/fpext1" + }, + { + "cppref": "c/experimental/fpext4", + "cppdoc": "c/language/experimental/fpext4" + }, + { + "cppref": "c/experimental/dynamic", + "cppdoc": "c/language/experimental/dynamic" + }, + { + "cppref": "c/experimental/dynamic/getline", + "cppdoc": "c/language/experimental/dynamic/getline" + }, + { + "cppref": "c/experimental/dynamic/strdup", + "cppdoc": "c/language/experimental/dynamic/strdup" + }, + { + "cppref": "c/experimental/dynamic/strndup", + "cppdoc": "c/language/experimental/dynamic/strndup" + }, + { + "cppref": "c/experimental/dynamic/asprintf", + "cppdoc": "c/language/experimental/dynamic/asprintf" + }, + { + "cppref": "c/keyword/alignas", + "cppdoc": "c/language/keyword/alignas" + }, + { + "cppref": "c/keyword/false", + "cppdoc": "c/language/keyword/false" + }, + { + "cppref": "c/keyword/signed", + "cppdoc": "c/language/keyword/signed" + }, + { + "cppref": "c/keyword/static", + "cppdoc": "c/language/keyword/static" + }, + { + "cppref": "c/keyword/extern", + "cppdoc": "c/language/keyword/extern" + }, + { + "cppref": "c/keyword/char", + "cppdoc": "c/language/keyword/char" + }, + { + "cppref": "c/keyword/_Generic", + "cppdoc": "c/language/keyword/_Generic" + }, + { + "cppref": "c/keyword/return", + "cppdoc": "c/language/keyword/return" + }, + { + "cppref": "c/keyword/do", + "cppdoc": "c/language/keyword/do" + }, + { + "cppref": "c/keyword/true", + "cppdoc": "c/language/keyword/true" + }, + { + "cppref": "c/keyword/_Noreturn", + "cppdoc": "c/language/keyword/_Noreturn" + }, + { + "cppref": "c/keyword/_Atomic", + "cppdoc": "c/language/keyword/_Atomic" + }, + { + "cppref": "c/keyword/default", + "cppdoc": "c/language/keyword/default" + }, + { + "cppref": "c/keyword/alignof", + "cppdoc": "c/language/keyword/alignof" + }, + { + "cppref": "c/keyword/double", + "cppdoc": "c/language/keyword/double" + }, + { + "cppref": "c/keyword/volatile", + "cppdoc": "c/language/keyword/volatile" + }, + { + "cppref": "c/keyword/fortran", + "cppdoc": "c/language/keyword/fortran" + }, + { + "cppref": "c/keyword/_Decimal128", + "cppdoc": "c/language/keyword/_Decimal128" + }, + { + "cppref": "c/keyword/_Static_assert", + "cppdoc": "c/language/keyword/_Static_assert" + }, + { + "cppref": "c/keyword/_Bool", + "cppdoc": "c/language/keyword/_Bool" + }, + { + "cppref": "c/keyword/float", + "cppdoc": "c/language/keyword/float" + }, + { + "cppref": "c/keyword/thread_local", + "cppdoc": "c/language/keyword/thread_local" + }, + { + "cppref": "c/keyword/unsigned", + "cppdoc": "c/language/keyword/unsigned" + }, + { + "cppref": "c/keyword/switch", + "cppdoc": "c/language/keyword/switch" + }, + { + "cppref": "c/keyword/sizeof", + "cppdoc": "c/language/keyword/sizeof" + }, + { + "cppref": "c/keyword/restrict", + "cppdoc": "c/language/keyword/restrict" + }, + { + "cppref": "c/keyword/for", + "cppdoc": "c/language/keyword/for" + }, + { + "cppref": "c/keyword/_Complex", + "cppdoc": "c/language/keyword/_Complex" + }, + { + "cppref": "c/keyword/const", + "cppdoc": "c/language/keyword/const" + }, + { + "cppref": "c/keyword/continue", + "cppdoc": "c/language/keyword/continue" + }, + { + "cppref": "c/keyword/if", + "cppdoc": "c/language/keyword/if" + }, + { + "cppref": "c/keyword/long", + "cppdoc": "c/language/keyword/long" + }, + { + "cppref": "c/keyword/typedef", + "cppdoc": "c/language/keyword/typedef" + }, + { + "cppref": "c/keyword/nullptr", + "cppdoc": "c/language/keyword/nullptr" + }, + { + "cppref": "c/keyword/_Alignof", + "cppdoc": "c/language/keyword/_Alignof" + }, + { + "cppref": "c/keyword/static_assert", + "cppdoc": "c/language/keyword/static_assert" + }, + { + "cppref": "c/keyword/else", + "cppdoc": "c/language/keyword/else" + }, + { + "cppref": "c/keyword/_Imaginary", + "cppdoc": "c/language/keyword/_Imaginary" + }, + { + "cppref": "c/keyword/enum", + "cppdoc": "c/language/keyword/enum" + }, + { + "cppref": "c/keyword/void", + "cppdoc": "c/language/keyword/void" + }, + { + "cppref": "c/keyword/bool", + "cppdoc": "c/language/keyword/bool" + }, + { + "cppref": "c/keyword/case", + "cppdoc": "c/language/keyword/case" + }, + { + "cppref": "c/keyword/typeof", + "cppdoc": "c/language/keyword/typeof" + }, + { + "cppref": "c/keyword/while", + "cppdoc": "c/language/keyword/while" + }, + { + "cppref": "c/keyword/union", + "cppdoc": "c/language/keyword/union" + }, + { + "cppref": "c/keyword/_Decimal32", + "cppdoc": "c/language/keyword/_Decimal32" + }, + { + "cppref": "c/keyword/int", + "cppdoc": "c/language/keyword/int" + }, + { + "cppref": "c/keyword/break", + "cppdoc": "c/language/keyword/break" + }, + { + "cppref": "c/keyword/_Thread_local", + "cppdoc": "c/language/keyword/_Thread_local" + }, + { + "cppref": "c/keyword/constexpr", + "cppdoc": "c/language/keyword/constexpr" + }, + { + "cppref": "c/keyword/_Alignas", + "cppdoc": "c/language/keyword/_Alignas" + }, + { + "cppref": "c/keyword/short", + "cppdoc": "c/language/keyword/short" + }, + { + "cppref": "c/keyword/typeof_unqual", + "cppdoc": "c/language/keyword/typeof_unqual" + }, + { + "cppref": "c/keyword/struct", + "cppdoc": "c/language/keyword/struct" + }, + { + "cppref": "c/keyword/inline", + "cppdoc": "c/language/keyword/inline" + }, + { + "cppref": "c/keyword/register", + "cppdoc": "c/language/keyword/register" + }, + { + "cppref": "c/keyword/_Decimal64", + "cppdoc": "c/language/keyword/_Decimal64" + }, + { + "cppref": "c/keyword/goto", + "cppdoc": "c/language/keyword/goto" + }, + { + "cppref": "c/keyword/auto", + "cppdoc": "c/language/keyword/auto" + } +] diff --git a/migrate/text-diff-visualizer.ts b/migrate/text-diff-visualizer.ts new file mode 100644 index 00000000..930886ec --- /dev/null +++ b/migrate/text-diff-visualizer.ts @@ -0,0 +1,343 @@ +import { createCanvas } from "@napi-rs/canvas"; + +interface WordToken { + display: string; + key: string; +} + +interface LineData { + tokens: WordToken[]; +} + +interface RenderConfig { + width: number; + padding: number; + lineHeight: number; + fontSize: number; + fontFamily: string; + colGap: number; +} + +const COLORS = { + bg: "#121212", + textDim: "#555555", + lineNum: "#444444", + divider: "#333333", + + redBase: { r: 255, g: 180, b: 171 }, + + greenBase: { r: 183, g: 240, b: 217 }, + + bgRed: "rgba(65, 14, 11, 0.5)", + bgGreen: "rgba(0, 55, 30, 0.5)", +}; + +function parseText(text: string): LineData[] { + return text.split("\n").map((line) => { + const parts = line + .trimEnd() + .replace(/[,,。""''"".]/gu, " ") + .split(/\s+/) + .filter((p) => p.length > 0); + const tokens = parts + .map((part) => { + if (!part) return null; + const cleanKey = part.toLowerCase(); + return { + display: part, + key: cleanKey, + }; + }) + .filter((t): t is WordToken => t !== null); + + return { tokens }; + }); +} + +function getIntensity(diff: number): number { + return 0.4 + 0.6 * (1 - 1 / (1 + 0.2 * Math.abs(diff))); +} + +export function visualizeTextDiff(textA: string, textB: string) { + const linesA = parseText(textA); + const linesB = parseText(textB); + + for (const lineRowA of linesA) { + for (const lineRowB of linesB) { + if (lineRowA.tokens.length === 0 || lineRowB.tokens.length === 0) + continue; + if (lineRowA.tokens.length !== lineRowB.tokens.length) continue; + let allMatch = true; + for (let i = 0; i < lineRowA.tokens.length; i++) { + if (lineRowA.tokens[i].key !== lineRowB.tokens[i].key) { + allMatch = false; + break; + } + } + if (allMatch) { + lineRowA.tokens = []; + lineRowB.tokens = []; + } + } + } + + const freqA = new Map(); + const freqB = new Map(); + const allKeys = new Set(); + + [linesA, linesB].forEach((lines, idx) => { + const map = idx === 0 ? freqA : freqB; + lines.forEach((line) => { + line.tokens.forEach((token) => { + if (!token.key) return; + map.set(token.key, (map.get(token.key) || 0) + 1); + allKeys.add(token.key); + }); + }); + }); + + const maxLines = Math.max(linesA.length, linesB.length); + const linesToRender: number[] = []; + + for (let i = 0; i < maxLines; i++) { + const lineRowA = linesA[i]; + const lineRowB = linesB[i]; + + let hasDifference = false; + + const checkTokens = (tokens: WordToken[] | undefined, isRowA: boolean) => { + if (!tokens) return false; + for (const t of tokens) { + if (!t.key) continue; + const countA = freqA.get(t.key) || 0; + const countB = freqB.get(t.key) || 0; + if (isRowA ? countA > countB : countB > countA) { + return true; + } + } + return false; + }; + + const diffA = checkTokens(lineRowA?.tokens, true); + const diffB = checkTokens(lineRowB?.tokens, false); + + const emptyA = !lineRowA || lineRowA.tokens.length === 0; + const emptyB = !lineRowB || lineRowB.tokens.length === 0; + + if (diffA || diffB) { + hasDifference = true; + } else if (emptyA !== emptyB) { + hasDifference = true; + } + + if (hasDifference) { + linesToRender.push(i); + } + } + + if (linesToRender.length === 0) { + console.log("文本完全一致(或无有效词汇),无输出。"); + return; + } + + const config: RenderConfig = { + width: 1200, + padding: 40, + fontSize: 14, + lineHeight: 24, + fontFamily: 'Consolas, "Courier New", monospace', + colGap: 20, + }; + + const colWidth = (config.width - config.padding * 2 - config.colGap) / 2; + + const dummyCanvas = createCanvas(100, 100); + const ctxTest = dummyCanvas.getContext("2d"); + ctxTest.font = `${config.fontSize}px ${config.fontFamily}`; + + let totalY = config.padding; + const lineRenderMap = new Map< + number, + { + yValues: { start: number; height: number }; + wrapA: string[][]; + wrapB: string[][]; + } + >(); + + const wrapText = (tokens: WordToken[]) => { + const lines: string[][] = []; + if (!tokens || tokens.length === 0) return lines; + + let currentLine: string[] = []; + let currentWidth = 0; + + tokens.forEach((token) => { + const width = ctxTest.measureText(token.display + " ").width; + if (currentWidth + width > colWidth - 40) { + lines.push(currentLine); + currentLine = [token.display]; + currentWidth = width; + } else { + currentLine.push(token.display); + currentWidth += width; + } + }); + if (currentLine.length > 0) lines.push(currentLine); + return lines; + }; + + let prevLineIdx = -1; + + linesToRender.forEach((lineIdx) => { + if (lineIdx > prevLineIdx + 1) { + totalY += config.lineHeight; + } + + const rowA = linesA[lineIdx]?.tokens || []; + const rowB = linesB[lineIdx]?.tokens || []; + + const wrapA = wrapText(rowA); + const wrapB = wrapText(rowB); + + const lineCount = Math.max(wrapA.length, wrapB.length, 1); + const height = lineCount * config.lineHeight; + + lineRenderMap.set(lineIdx, { + yValues: { start: totalY, height }, + wrapA, + wrapB, + }); + + totalY += height + 10; + prevLineIdx = lineIdx; + }); + + totalY += config.padding; + + const canvas = createCanvas(config.width, totalY); + const ctx = canvas.getContext("2d"); + + ctx.fillStyle = COLORS.bg; + ctx.fillRect(0, 0, config.width, totalY); + + ctx.font = `${config.fontSize}px ${config.fontFamily}`; + ctx.textBaseline = "top"; + + ctx.beginPath(); + ctx.strokeStyle = COLORS.divider; + ctx.lineWidth = 2; + ctx.moveTo(config.width / 2, 0); + ctx.lineTo(config.width / 2, totalY); + ctx.stroke(); + + prevLineIdx = -1; + + linesToRender.forEach((lineIdx) => { + const renderInfo = lineRenderMap.get(lineIdx)!; + const { yValues, wrapA, wrapB } = renderInfo; + const currentY = yValues.start; + + if (lineIdx > prevLineIdx + 1) { + ctx.fillStyle = COLORS.textDim; + ctx.textAlign = "center"; + ctx.fillText("...", config.width / 2, currentY - config.lineHeight); + } + + let redWeight = 0; + let greenWeight = 0; + + const analyzeLineColors = (tokens: WordToken[], isLeft: boolean) => { + let weight = 0; + if (!tokens) return 0; + tokens.forEach((t) => { + if (!t.key) return; + const cA = freqA.get(t.key) || 0; + const cB = freqB.get(t.key) || 0; + if (isLeft && cA > cB) weight += cA - cB; + if (!isLeft && cB > cA) weight += cB - cA; + }); + return weight; + }; + + redWeight = analyzeLineColors(linesA[lineIdx]?.tokens, true); + greenWeight = analyzeLineColors(linesB[lineIdx]?.tokens, false); + + if (redWeight > 0) { + ctx.fillStyle = COLORS.bgRed; + + ctx.fillRect(0, currentY, config.width / 2, yValues.height); + } + if (greenWeight > 0) { + ctx.fillStyle = COLORS.bgGreen; + + ctx.fillRect( + config.width / 2, + currentY, + config.width / 2, + yValues.height + ); + } + + const drawColumn = ( + tokens: WordToken[], + wrappedLines: string[][], + offsetX: number, + isLeft: boolean + ) => { + ctx.fillStyle = COLORS.lineNum; + ctx.textAlign = "right"; + ctx.fillText((lineIdx + 1).toString(), offsetX + 30, currentY + 5); + + let lineOffsetY = 5; + let tokenIndex = 0; + + wrappedLines.forEach((lineStrArr) => { + let currX = offsetX + 40; + + lineStrArr.forEach((wordStr) => { + const token = tokens[tokenIndex]; + tokenIndex++; + + if (!token) return; + + const key = token.key; + const countA = freqA.get(key) || 0; + const countB = freqB.get(key) || 0; + + let fillStyle = COLORS.textDim; + + if (isLeft) { + if (countA > countB) { + const diff = countA - countB; + const alpha = getIntensity(diff); + fillStyle = `rgba(${COLORS.redBase.r}, ${COLORS.redBase.g}, ${COLORS.redBase.b}, ${alpha})`; + } + } else { + if (countB > countA) { + const diff = countB - countA; + const alpha = getIntensity(diff); + fillStyle = `rgba(${COLORS.greenBase.r}, ${COLORS.greenBase.g}, ${COLORS.greenBase.b}, ${alpha})`; + } + } + + ctx.fillStyle = fillStyle; + ctx.textAlign = "left"; + ctx.fillText(wordStr, currX, currentY + lineOffsetY); + + currX += ctx.measureText(wordStr + " ").width; + }); + lineOffsetY += config.lineHeight; + }); + }; + + if (linesA[lineIdx]) drawColumn(linesA[lineIdx].tokens, wrapA, 0, true); + if (linesB[lineIdx]) + drawColumn(linesB[lineIdx].tokens, wrapB, config.width / 2, false); + + prevLineIdx = lineIdx; + }); + + const buffer = canvas.toBuffer("image/webp"); + return buffer; +} diff --git a/migrate/update-migrate-progress.ts b/migrate/update-migrate-progress.ts new file mode 100644 index 00000000..57e416a6 --- /dev/null +++ b/migrate/update-migrate-progress.ts @@ -0,0 +1,103 @@ +import fs from "fs/promises"; +import path from "path"; +import { fileURLToPath } from "url"; + +const __dirname = path.dirname(fileURLToPath(import.meta.url)); +const REPO_ROOT = path.join(__dirname, ".."); + +interface EntryStatus { + entry: SlugMapItem; + migrated: boolean; + cpprefUrl: string; + cppdocUrl: string; + issueUrl: string; +} + +async function fileExists(filePath: string): Promise { + try { + await fs.access(filePath); + return true; + } catch { + return false; + } +} + +async function isMigrated(entry: string): Promise { + // Possible paths + const mdxPath = path.join(REPO_ROOT, "src/content/docs", `${entry}.mdx`); + const indexPath = path.join( + REPO_ROOT, + "src/content/docs", + entry, + "index.mdx" + ); + + return (await fileExists(mdxPath)) || (await fileExists(indexPath)); +} + +function generateUrls( + entry: SlugMapItem +): Omit { + const cpprefUrl = `http://en.cppreference.com/w/${entry.cppref}.html`; + const cppdocUrl = `http://cppdoc.cc/${entry.cppdoc}`; + const issueUrl = `https://github.com/cppdoc-cc/cppdoc/issues/new?title=${encodeURIComponent(cpprefUrl)}&labels=migrate-cppref-page`; + return { cpprefUrl, cppdocUrl, issueUrl }; +} + +function generateMarkdown(status: EntryStatus): string { + const { entry, migrated, cpprefUrl, cppdocUrl, issueUrl } = status; + if (migrated) { + return `| ✅ | [cppref](${cpprefUrl}) | [cppdoc](${cppdocUrl}) | \`${entry.cppdoc ?? entry.cppref + "(cppref)"}\` | `; + } else { + return `| ❌ | [cppref](${cpprefUrl}) | ${ + entry.cppdoc ? `[create](${issueUrl})` : "N/A" + } | \`${entry.cppdoc ?? entry.cppref + "(cppref)"}\` |`; + } +} + +interface SlugMapItem { + cppref: string; + cppdoc: string | null; +} + +async function loadEntries(): Promise { + const indexPath = path.join(__dirname, "slug_map.json"); + const content = await fs.readFile(indexPath, "utf-8"); + const entries = JSON.parse(content) as SlugMapItem[]; + return entries; +} + +async function main() { + console.log("Loading entries from cppref_index.json..."); + const entries = await loadEntries(); + console.log(`Total entries: ${entries.length}`); + + const statuses: EntryStatus[] = []; + for (const entry of entries) { + const migrated = entry.cppdoc ? await isMigrated(entry.cppdoc) : false; + const urls = generateUrls(entry); + statuses.push({ entry, migrated, ...urls }); + if (statuses.length % 100 === 0) { + console.log(`Processed ${statuses.length} entries...`); + } + } + + const migratedCount = statuses.filter((s) => s.migrated).length; + const markdownLines = statuses.map(generateMarkdown); + const output = `### cppreference.com Migration Progress +#### Overall Progress: ${migratedCount} / ${statuses.length} migrated (${((migratedCount / statuses.length) * 100).toFixed(2)}%) +Updated at ${new Date().toISOString()} + +| Status | Cppref Link | Cppdoc Link | Entry | +|--------|-------------|-------------|-------| +${markdownLines.join("\n")}`; + + const outputPath = path.join(REPO_ROOT, "CPPREF_MIGRATE_PROGRESS.md"); + await fs.writeFile(outputPath, output, "utf-8"); + console.log(`Written to ${outputPath}`); +} + +main().catch((err) => { + console.error(err); + process.exit(1); +}); diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 00000000..3350cf26 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,8047 @@ +{ + "name": "cppdoc", + "version": "0.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "cppdoc", + "version": "0.0.1", + "dependencies": { + "@astrojs/starlight": "^0.36.2", + "@lorenzo_lewis/starlight-utils": "0.3.2", + "@napi-rs/canvas": "^0.1.83", + "astro": "^5.6.1", + "linkedom": "^0.18.12", + "nanostores": "^1.1.0", + "sharp": "^0.34.2", + "starlight-auto-sidebar": "0.1.3", + "starlight-heading-badges": "0.6.1", + "tsx": "^4.21.0" + }, + "devDependencies": { + "@octokit/rest": "^21.0.2", + "prettier": "3.6.2" + } + }, + "node_modules/@astrojs/compiler": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/@astrojs/compiler/-/compiler-2.13.0.tgz", + "integrity": "sha512-mqVORhUJViA28fwHYaWmsXSzLO9osbdZ5ImUfxBarqsYdMlPbqAqGJCxsNzvppp1BEzc1mJNjOVvQqeDN8Vspw==", + "license": "MIT" + }, + "node_modules/@astrojs/internal-helpers": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.7.5.tgz", + "integrity": "sha512-vreGnYSSKhAjFJCWAwe/CNhONvoc5lokxtRoZims+0wa3KbHBdPHSSthJsKxPd8d/aic6lWKpRTYGY/hsgK6EA==", + "license": "MIT" + }, + "node_modules/@astrojs/markdown-remark": { + "version": "6.3.9", + "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-6.3.9.tgz", + "integrity": "sha512-hX2cLC/KW74Io1zIbn92kI482j9J7LleBLGCVU9EP3BeH5MVrnFawOnqD0t/q6D1Z+ZNeQG2gNKMslCcO36wng==", + "license": "MIT", + "dependencies": { + "@astrojs/internal-helpers": "0.7.5", + "@astrojs/prism": "3.3.0", + "github-slugger": "^2.0.0", + "hast-util-from-html": "^2.0.3", + "hast-util-to-text": "^4.0.2", + "import-meta-resolve": "^4.2.0", + "js-yaml": "^4.1.0", + "mdast-util-definitions": "^6.0.0", + "rehype-raw": "^7.0.0", + "rehype-stringify": "^10.0.1", + "remark-gfm": "^4.0.1", + "remark-parse": "^11.0.0", + "remark-rehype": "^11.1.2", + "remark-smartypants": "^3.0.2", + "shiki": "^3.13.0", + "smol-toml": "^1.4.2", + "unified": "^11.0.5", + "unist-util-remove-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "unist-util-visit-parents": "^6.0.2", + "vfile": "^6.0.3" + } + }, + "node_modules/@astrojs/mdx": { + "version": "4.3.12", + "resolved": "https://registry.npmjs.org/@astrojs/mdx/-/mdx-4.3.12.tgz", + "integrity": "sha512-pL3CVPtuQrPnDhWjy7zqbOibNyPaxP4VpQS8T8spwKqKzauJ4yoKyNkVTD8jrP7EAJHmBhZ7PTmUGZqOpKKp8g==", + "license": "MIT", + "dependencies": { + "@astrojs/markdown-remark": "6.3.9", + "@mdx-js/mdx": "^3.1.1", + "acorn": "^8.15.0", + "es-module-lexer": "^1.7.0", + "estree-util-visit": "^2.0.0", + "hast-util-to-html": "^9.0.5", + "piccolore": "^0.1.3", + "rehype-raw": "^7.0.0", + "remark-gfm": "^4.0.1", + "remark-smartypants": "^3.0.2", + "source-map": "^0.7.6", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.3" + }, + "engines": { + "node": "18.20.8 || ^20.3.0 || >=22.0.0" + }, + "peerDependencies": { + "astro": "^5.0.0" + } + }, + "node_modules/@astrojs/prism": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.3.0.tgz", + "integrity": "sha512-q8VwfU/fDZNoDOf+r7jUnMC2//H2l0TuQ6FkGJL8vD8nw/q5KiL3DS1KKBI3QhI9UQhpJ5dc7AtqfbXWuOgLCQ==", + "license": "MIT", + "dependencies": { + "prismjs": "^1.30.0" + }, + "engines": { + "node": "18.20.8 || ^20.3.0 || >=22.0.0" + } + }, + "node_modules/@astrojs/sitemap": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@astrojs/sitemap/-/sitemap-3.6.0.tgz", + "integrity": "sha512-4aHkvcOZBWJigRmMIAJwRQXBS+ayoP5z40OklTXYXhUDhwusz+DyDl+nSshY6y9DvkVEavwNcFO8FD81iGhXjg==", + "license": "MIT", + "dependencies": { + "sitemap": "^8.0.0", + "stream-replace-string": "^2.0.0", + "zod": "^3.25.76" + } + }, + "node_modules/@astrojs/starlight": { + "version": "0.36.2", + "resolved": "https://registry.npmjs.org/@astrojs/starlight/-/starlight-0.36.2.tgz", + "integrity": "sha512-QR8NfO7+7DR13kBikhQwAj3IAoptLLNs9DkyKko2M2l3PrqpcpVUnw1JBJ0msGDIwE6tBbua2UeBND48mkh03w==", + "license": "MIT", + "dependencies": { + "@astrojs/markdown-remark": "^6.3.1", + "@astrojs/mdx": "^4.2.3", + "@astrojs/sitemap": "^3.3.0", + "@pagefind/default-ui": "^1.3.0", + "@types/hast": "^3.0.4", + "@types/js-yaml": "^4.0.9", + "@types/mdast": "^4.0.4", + "astro-expressive-code": "^0.41.1", + "bcp-47": "^2.1.0", + "hast-util-from-html": "^2.0.1", + "hast-util-select": "^6.0.2", + "hast-util-to-string": "^3.0.0", + "hastscript": "^9.0.0", + "i18next": "^23.11.5", + "js-yaml": "^4.1.0", + "klona": "^2.0.6", + "mdast-util-directive": "^3.0.0", + "mdast-util-to-markdown": "^2.1.0", + "mdast-util-to-string": "^4.0.0", + "pagefind": "^1.3.0", + "rehype": "^13.0.1", + "rehype-format": "^5.0.0", + "remark-directive": "^3.0.0", + "ultrahtml": "^1.6.0", + "unified": "^11.0.5", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.2" + }, + "peerDependencies": { + "astro": "^5.5.0" + } + }, + "node_modules/@astrojs/telemetry": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.3.0.tgz", + "integrity": "sha512-UFBgfeldP06qu6khs/yY+q1cDAaArM2/7AEIqQ9Cuvf7B1hNLq0xDrZkct+QoIGyjq56y8IaE2I3CTvG99mlhQ==", + "license": "MIT", + "dependencies": { + "ci-info": "^4.2.0", + "debug": "^4.4.0", + "dlv": "^1.1.3", + "dset": "^3.1.4", + "is-docker": "^3.0.0", + "is-wsl": "^3.1.0", + "which-pm-runs": "^1.1.0" + }, + "engines": { + "node": "18.20.8 || ^20.3.0 || >=22.0.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.5" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@capsizecss/unpack": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@capsizecss/unpack/-/unpack-3.0.1.tgz", + "integrity": "sha512-8XqW8xGn++Eqqbz3e9wKuK7mxryeRjs4LOHLxbh2lwKeSbuNR4NFifDZT4KzvjU6HMOPbiNTsWpniK5EJfTWkg==", + "license": "MIT", + "dependencies": { + "fontkit": "^2.0.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@ctrl/tinycolor": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-4.2.0.tgz", + "integrity": "sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A==", + "license": "MIT", + "engines": { + "node": ">=14" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.7.1.tgz", + "integrity": "sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==", + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz", + "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz", + "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz", + "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz", + "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz", + "integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz", + "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz", + "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz", + "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz", + "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz", + "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz", + "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz", + "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==", + "cpu": [ + "loong64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz", + "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==", + "cpu": [ + "mips64el" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz", + "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz", + "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz", + "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==", + "cpu": [ + "s390x" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz", + "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz", + "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz", + "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz", + "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz", + "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz", + "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz", + "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz", + "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz", + "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz", + "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@expressive-code/core": { + "version": "0.41.3", + "resolved": "https://registry.npmjs.org/@expressive-code/core/-/core-0.41.3.tgz", + "integrity": "sha512-9qzohqU7O0+JwMEEgQhnBPOw5DtsQRBXhW++5fvEywsuX44vCGGof1SL5OvPElvNgaWZ4pFZAFSlkNOkGyLwSQ==", + "license": "MIT", + "dependencies": { + "@ctrl/tinycolor": "^4.0.4", + "hast-util-select": "^6.0.2", + "hast-util-to-html": "^9.0.1", + "hast-util-to-text": "^4.0.1", + "hastscript": "^9.0.0", + "postcss": "^8.4.38", + "postcss-nested": "^6.0.1", + "unist-util-visit": "^5.0.0", + "unist-util-visit-parents": "^6.0.1" + } + }, + "node_modules/@expressive-code/plugin-frames": { + "version": "0.41.3", + "resolved": "https://registry.npmjs.org/@expressive-code/plugin-frames/-/plugin-frames-0.41.3.tgz", + "integrity": "sha512-rFQtmf/3N2CK3Cq/uERweMTYZnBu+CwxBdHuOftEmfA9iBE7gTVvwpbh82P9ZxkPLvc40UMhYt7uNuAZexycRQ==", + "license": "MIT", + "dependencies": { + "@expressive-code/core": "^0.41.3" + } + }, + "node_modules/@expressive-code/plugin-shiki": { + "version": "0.41.3", + "resolved": "https://registry.npmjs.org/@expressive-code/plugin-shiki/-/plugin-shiki-0.41.3.tgz", + "integrity": "sha512-RlTARoopzhFJIOVHLGvuXJ8DCEme/hjV+ZnRJBIxzxsKVpGPW4Oshqg9xGhWTYdHstTsxO663s0cdBLzZj9TQA==", + "license": "MIT", + "dependencies": { + "@expressive-code/core": "^0.41.3", + "shiki": "^3.2.2" + } + }, + "node_modules/@expressive-code/plugin-text-markers": { + "version": "0.41.3", + "resolved": "https://registry.npmjs.org/@expressive-code/plugin-text-markers/-/plugin-text-markers-0.41.3.tgz", + "integrity": "sha512-SN8tkIzDpA0HLAscEYD2IVrfLiid6qEdE9QLlGVSxO1KEw7qYvjpbNBQjUjMr5/jvTJ7ys6zysU2vLPHE0sb2g==", + "license": "MIT", + "dependencies": { + "@expressive-code/core": "^0.41.3" + } + }, + "node_modules/@img/colour": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.0.0.tgz", + "integrity": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", + "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-darwin-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", + "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", + "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", + "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", + "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", + "cpu": [ + "arm" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", + "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-ppc64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", + "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", + "cpu": [ + "ppc64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-riscv64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", + "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", + "cpu": [ + "riscv64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", + "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", + "cpu": [ + "s390x" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", + "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", + "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", + "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-linux-arm": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", + "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", + "cpu": [ + "arm" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", + "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-ppc64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", + "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", + "cpu": [ + "ppc64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-ppc64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-riscv64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", + "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", + "cpu": [ + "riscv64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-riscv64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-s390x": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", + "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", + "cpu": [ + "s390x" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", + "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", + "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", + "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-wasm32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", + "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", + "cpu": [ + "wasm32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, + "dependencies": { + "@emnapi/runtime": "^1.7.0" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", + "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-ia32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", + "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", + "cpu": [ + "ia32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", + "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "license": "MIT" + }, + "node_modules/@lorenzo_lewis/starlight-utils": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@lorenzo_lewis/starlight-utils/-/starlight-utils-0.3.2.tgz", + "integrity": "sha512-9GCZLyfIUTkXuE39jHjcCSwnOzm6hSGnC8DrHlo2imegiZmZSdG0eBMA/sTb/shLkvCzE2SGCaKM+EwIeO6oDw==", + "license": "MIT", + "dependencies": { + "astro-integration-kit": "^0.18.0" + }, + "peerDependencies": { + "@astrojs/starlight": ">=0.32.0", + "astro": ">=5" + } + }, + "node_modules/@mdx-js/mdx": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.1.1.tgz", + "integrity": "sha512-f6ZO2ifpwAQIpzGWaBQT2TXxPv6z3RBzQKpVftEWN78Vl/YweF1uwussDx8ECAXVtr3Rs89fKyG9YlzUs9DyGQ==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdx": "^2.0.0", + "acorn": "^8.0.0", + "collapse-white-space": "^2.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "estree-util-scope": "^1.0.0", + "estree-walker": "^3.0.0", + "hast-util-to-jsx-runtime": "^2.0.0", + "markdown-extensions": "^2.0.0", + "recma-build-jsx": "^1.0.0", + "recma-jsx": "^1.0.0", + "recma-stringify": "^1.0.0", + "rehype-recma": "^1.0.0", + "remark-mdx": "^3.0.0", + "remark-parse": "^11.0.0", + "remark-rehype": "^11.0.0", + "source-map": "^0.7.0", + "unified": "^11.0.0", + "unist-util-position-from-estree": "^2.0.0", + "unist-util-stringify-position": "^4.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/@napi-rs/canvas": { + "version": "0.1.83", + "resolved": "https://registry.npmjs.org/@napi-rs/canvas/-/canvas-0.1.83.tgz", + "integrity": "sha512-f9GVB9VNc9vn/nroc9epXRNkVpvNPZh69+qzLJIm9DfruxFqX0/jsXG46OGWAJgkO4mN0HvFHjRROMXKVmPszg==", + "license": "MIT", + "workspaces": [ + "e2e/*" + ], + "engines": { + "node": ">= 10" + }, + "optionalDependencies": { + "@napi-rs/canvas-android-arm64": "0.1.83", + "@napi-rs/canvas-darwin-arm64": "0.1.83", + "@napi-rs/canvas-darwin-x64": "0.1.83", + "@napi-rs/canvas-linux-arm-gnueabihf": "0.1.83", + "@napi-rs/canvas-linux-arm64-gnu": "0.1.83", + "@napi-rs/canvas-linux-arm64-musl": "0.1.83", + "@napi-rs/canvas-linux-riscv64-gnu": "0.1.83", + "@napi-rs/canvas-linux-x64-gnu": "0.1.83", + "@napi-rs/canvas-linux-x64-musl": "0.1.83", + "@napi-rs/canvas-win32-x64-msvc": "0.1.83" + } + }, + "node_modules/@napi-rs/canvas-android-arm64": { + "version": "0.1.83", + "resolved": "https://registry.npmjs.org/@napi-rs/canvas-android-arm64/-/canvas-android-arm64-0.1.83.tgz", + "integrity": "sha512-TbKM2fh9zXjqFIU8bgMfzG7rkrIYdLKMafgPhFoPwKrpWk1glGbWP7LEu8Y/WrMDqTGFdRqUmuX89yQEzZbkiw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/canvas-darwin-arm64": { + "version": "0.1.83", + "resolved": "https://registry.npmjs.org/@napi-rs/canvas-darwin-arm64/-/canvas-darwin-arm64-0.1.83.tgz", + "integrity": "sha512-gp8IDVUloPUmkepHly4xRUOfUJSFNvA4jR7ZRF5nk3YcGzegSFGeICiT4PnYyPgSKEhYAFe1Y2XNy0Mp6Tu8mQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/canvas-darwin-x64": { + "version": "0.1.83", + "resolved": "https://registry.npmjs.org/@napi-rs/canvas-darwin-x64/-/canvas-darwin-x64-0.1.83.tgz", + "integrity": "sha512-r4ZJxiP9OgUbdGZhPDEXD3hQ0aIPcVaywtcTXvamYxTU/SWKAbKVhFNTtpRe1J30oQ25gWyxTkUKSBgUkNzdnw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/canvas-linux-arm-gnueabihf": { + "version": "0.1.83", + "resolved": "https://registry.npmjs.org/@napi-rs/canvas-linux-arm-gnueabihf/-/canvas-linux-arm-gnueabihf-0.1.83.tgz", + "integrity": "sha512-Uc6aSB05qH1r+9GUDxIE6F5ZF7L0nTFyyzq8ublWUZhw8fEGK8iy931ff1ByGFT04+xHJad1kBcL4R1ZEV8z7Q==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/canvas-linux-arm64-gnu": { + "version": "0.1.83", + "resolved": "https://registry.npmjs.org/@napi-rs/canvas-linux-arm64-gnu/-/canvas-linux-arm64-gnu-0.1.83.tgz", + "integrity": "sha512-eEeaJA7V5KOFq7W0GtoRVbd3ak8UZpK+XLkCgUiFGtlunNw+ZZW9Cr/92MXflGe7o3SqqMUg+f975LPxO/vsOQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/canvas-linux-arm64-musl": { + "version": "0.1.83", + "resolved": "https://registry.npmjs.org/@napi-rs/canvas-linux-arm64-musl/-/canvas-linux-arm64-musl-0.1.83.tgz", + "integrity": "sha512-cAvonp5XpbatVGegF9lMQNchs3z5RH6EtamRVnQvtoRtwbzOMcdzwuLBqDBQxQF79MFbuZNkWj3YRJjZCjHVzw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/canvas-linux-riscv64-gnu": { + "version": "0.1.83", + "resolved": "https://registry.npmjs.org/@napi-rs/canvas-linux-riscv64-gnu/-/canvas-linux-riscv64-gnu-0.1.83.tgz", + "integrity": "sha512-WFUPQ9qZy31vmLxIJ3MfmHw+R2g/mLCgk8zmh7maJW8snV3vLPA7pZfIS65Dc61EVDp1vaBskwQ2RqPPzwkaew==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/canvas-linux-x64-gnu": { + "version": "0.1.83", + "resolved": "https://registry.npmjs.org/@napi-rs/canvas-linux-x64-gnu/-/canvas-linux-x64-gnu-0.1.83.tgz", + "integrity": "sha512-X9YwIjsuy50WwOyYeNhEHjKHO8rrfH9M4U8vNqLuGmqsZdKua/GrUhdQGdjq7lTgdY3g4+Ta5jF8MzAa7UAs/g==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/canvas-linux-x64-musl": { + "version": "0.1.83", + "resolved": "https://registry.npmjs.org/@napi-rs/canvas-linux-x64-musl/-/canvas-linux-x64-musl-0.1.83.tgz", + "integrity": "sha512-Vv2pLWQS8EnlSM1bstJ7vVhKA+mL4+my4sKUIn/bgIxB5O90dqiDhQjUDLP+5xn9ZMestRWDt3tdQEkGAmzq/A==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/canvas-win32-x64-msvc": { + "version": "0.1.83", + "resolved": "https://registry.npmjs.org/@napi-rs/canvas-win32-x64-msvc/-/canvas-win32-x64-msvc-0.1.83.tgz", + "integrity": "sha512-K1TtjbScfRNYhq8dengLLufXGbtEtWdUXPV505uLFPovyGHzDUGXLFP/zUJzj6xWXwgUjHNLgEPIt7mye0zr6Q==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@octokit/auth-token": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-5.1.2.tgz", + "integrity": "sha512-JcQDsBdg49Yky2w2ld20IHAlwr8d/d8N6NiOXbtuoPCqzbsiJgF633mVUw3x4mo0H5ypataQIX7SFu3yy44Mpw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/core": { + "version": "6.1.6", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-6.1.6.tgz", + "integrity": "sha512-kIU8SLQkYWGp3pVKiYzA5OSaNF5EE03P/R8zEmmrG6XwOg5oBjXyQVVIauQ0dgau4zYhpZEhJrvIYt6oM+zZZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/auth-token": "^5.0.0", + "@octokit/graphql": "^8.2.2", + "@octokit/request": "^9.2.3", + "@octokit/request-error": "^6.1.8", + "@octokit/types": "^14.0.0", + "before-after-hook": "^3.0.2", + "universal-user-agent": "^7.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/endpoint": { + "version": "10.1.4", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-10.1.4.tgz", + "integrity": "sha512-OlYOlZIsfEVZm5HCSR8aSg02T2lbUWOsCQoPKfTXJwDzcHQBrVBGdGXb89dv2Kw2ToZaRtudp8O3ZIYoaOjKlA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/types": "^14.0.0", + "universal-user-agent": "^7.0.2" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/graphql": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-8.2.2.tgz", + "integrity": "sha512-Yi8hcoqsrXGdt0yObxbebHXFOiUA+2v3n53epuOg1QUgOB6c4XzvisBNVXJSl8RYA5KrDuSL2yq9Qmqe5N0ryA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/request": "^9.2.3", + "@octokit/types": "^14.0.0", + "universal-user-agent": "^7.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/openapi-types": { + "version": "25.1.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-25.1.0.tgz", + "integrity": "sha512-idsIggNXUKkk0+BExUn1dQ92sfysJrje03Q0bv0e+KPLrvyqZF8MnBpFz8UNfYDwB3Ie7Z0TByjWfzxt7vseaA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@octokit/plugin-paginate-rest": { + "version": "11.6.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-11.6.0.tgz", + "integrity": "sha512-n5KPteiF7pWKgBIBJSk8qzoZWcUkza2O6A0za97pMGVrGfPdltxrfmfF5GucHYvHGZD8BdaZmmHGz5cX/3gdpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/types": "^13.10.0" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": ">=6" + } + }, + "node_modules/@octokit/plugin-paginate-rest/node_modules/@octokit/openapi-types": { + "version": "24.2.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-24.2.0.tgz", + "integrity": "sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@octokit/plugin-paginate-rest/node_modules/@octokit/types": { + "version": "13.10.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-13.10.0.tgz", + "integrity": "sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/openapi-types": "^24.2.0" + } + }, + "node_modules/@octokit/plugin-request-log": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-5.3.1.tgz", + "integrity": "sha512-n/lNeCtq+9ofhC15xzmJCNKP2BWTv8Ih2TTy+jatNCCq/gQP/V7rK3fjIfuz0pDWDALO/o/4QY4hyOF6TQQFUw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": ">=6" + } + }, + "node_modules/@octokit/plugin-rest-endpoint-methods": { + "version": "13.5.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-13.5.0.tgz", + "integrity": "sha512-9Pas60Iv9ejO3WlAX3maE1+38c5nqbJXV5GrncEfkndIpZrJ/WPMRd2xYDcPPEt5yzpxcjw9fWNoPhsSGzqKqw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/types": "^13.10.0" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": ">=6" + } + }, + "node_modules/@octokit/plugin-rest-endpoint-methods/node_modules/@octokit/openapi-types": { + "version": "24.2.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-24.2.0.tgz", + "integrity": "sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@octokit/plugin-rest-endpoint-methods/node_modules/@octokit/types": { + "version": "13.10.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-13.10.0.tgz", + "integrity": "sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/openapi-types": "^24.2.0" + } + }, + "node_modules/@octokit/request": { + "version": "9.2.4", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-9.2.4.tgz", + "integrity": "sha512-q8ybdytBmxa6KogWlNa818r0k1wlqzNC+yNkcQDECHvQo8Vmstrg18JwqJHdJdUiHD2sjlwBgSm9kHkOKe2iyA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/endpoint": "^10.1.4", + "@octokit/request-error": "^6.1.8", + "@octokit/types": "^14.0.0", + "fast-content-type-parse": "^2.0.0", + "universal-user-agent": "^7.0.2" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/request-error": { + "version": "6.1.8", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-6.1.8.tgz", + "integrity": "sha512-WEi/R0Jmq+IJKydWlKDmryPcmdYSVjL3ekaiEL1L9eo1sUnqMJ+grqmC9cjk7CA7+b2/T397tO5d8YLOH3qYpQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/types": "^14.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/rest": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-21.1.1.tgz", + "integrity": "sha512-sTQV7va0IUVZcntzy1q3QqPm/r8rWtDCqpRAmb8eXXnKkjoQEtFe3Nt5GTVsHft+R6jJoHeSiVLcgcvhtue/rg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/core": "^6.1.4", + "@octokit/plugin-paginate-rest": "^11.4.2", + "@octokit/plugin-request-log": "^5.3.1", + "@octokit/plugin-rest-endpoint-methods": "^13.3.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/types": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-14.1.0.tgz", + "integrity": "sha512-1y6DgTy8Jomcpu33N+p5w58l6xyt55Ar2I91RPiIA0xCJBXyUAhXCcmZaDWSANiha7R9a6qJJ2CRomGPZ6f46g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/openapi-types": "^25.1.0" + } + }, + "node_modules/@oslojs/encoding": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@oslojs/encoding/-/encoding-1.1.0.tgz", + "integrity": "sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==", + "license": "MIT" + }, + "node_modules/@pagefind/darwin-arm64": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@pagefind/darwin-arm64/-/darwin-arm64-1.4.0.tgz", + "integrity": "sha512-2vMqkbv3lbx1Awea90gTaBsvpzgRs7MuSgKDxW0m9oV1GPZCZbZBJg/qL83GIUEN2BFlY46dtUZi54pwH+/pTQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@pagefind/darwin-x64": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@pagefind/darwin-x64/-/darwin-x64-1.4.0.tgz", + "integrity": "sha512-e7JPIS6L9/cJfow+/IAqknsGqEPjJnVXGjpGm25bnq+NPdoD3c/7fAwr1OXkG4Ocjx6ZGSCijXEV4ryMcH2E3A==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@pagefind/default-ui": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@pagefind/default-ui/-/default-ui-1.4.0.tgz", + "integrity": "sha512-wie82VWn3cnGEdIjh4YwNESyS1G6vRHwL6cNjy9CFgNnWW/PGRjsLq300xjVH5sfPFK3iK36UxvIBymtQIEiSQ==", + "license": "MIT" + }, + "node_modules/@pagefind/freebsd-x64": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@pagefind/freebsd-x64/-/freebsd-x64-1.4.0.tgz", + "integrity": "sha512-WcJVypXSZ+9HpiqZjFXMUobfFfZZ6NzIYtkhQ9eOhZrQpeY5uQFqNWLCk7w9RkMUwBv1HAMDW3YJQl/8OqsV0Q==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@pagefind/linux-arm64": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@pagefind/linux-arm64/-/linux-arm64-1.4.0.tgz", + "integrity": "sha512-PIt8dkqt4W06KGmQjONw7EZbhDF+uXI7i0XtRLN1vjCUxM9vGPdtJc2mUyVPevjomrGz5M86M8bqTr6cgDp1Uw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@pagefind/linux-x64": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@pagefind/linux-x64/-/linux-x64-1.4.0.tgz", + "integrity": "sha512-z4oddcWwQ0UHrTHR8psLnVlz6USGJ/eOlDPTDYZ4cI8TK8PgwRUPQZp9D2iJPNIPcS6Qx/E4TebjuGJOyK8Mmg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@pagefind/windows-x64": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@pagefind/windows-x64/-/windows-x64-1.4.0.tgz", + "integrity": "sha512-NkT+YAdgS2FPCn8mIA9bQhiBs+xmniMGq1LFPDhcFn0+2yIUEiIG06t7bsZlhdjknEQRTSdT7YitP6fC5qwP0g==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/pluginutils": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.3.0.tgz", + "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/pluginutils/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.3.tgz", + "integrity": "sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.3.tgz", + "integrity": "sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.3.tgz", + "integrity": "sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.3.tgz", + "integrity": "sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.3.tgz", + "integrity": "sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.3.tgz", + "integrity": "sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.3.tgz", + "integrity": "sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.3.tgz", + "integrity": "sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.3.tgz", + "integrity": "sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.3.tgz", + "integrity": "sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.3.tgz", + "integrity": "sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==", + "cpu": [ + "loong64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.3.tgz", + "integrity": "sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.3.tgz", + "integrity": "sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.3.tgz", + "integrity": "sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.3.tgz", + "integrity": "sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==", + "cpu": [ + "s390x" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.3.tgz", + "integrity": "sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.3.tgz", + "integrity": "sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.3.tgz", + "integrity": "sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.3.tgz", + "integrity": "sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.3.tgz", + "integrity": "sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.3.tgz", + "integrity": "sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.3.tgz", + "integrity": "sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@shikijs/core": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-3.15.0.tgz", + "integrity": "sha512-8TOG6yG557q+fMsSVa8nkEDOZNTSxjbbR8l6lF2gyr6Np+jrPlslqDxQkN6rMXCECQ3isNPZAGszAfYoJOPGlg==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "3.15.0", + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4", + "hast-util-to-html": "^9.0.5" + } + }, + "node_modules/@shikijs/engine-javascript": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-3.15.0.tgz", + "integrity": "sha512-ZedbOFpopibdLmvTz2sJPJgns8Xvyabe2QbmqMTz07kt1pTzfEvKZc5IqPVO/XFiEbbNyaOpjPBkkr1vlwS+qg==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "3.15.0", + "@shikijs/vscode-textmate": "^10.0.2", + "oniguruma-to-es": "^4.3.3" + } + }, + "node_modules/@shikijs/engine-oniguruma": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-3.15.0.tgz", + "integrity": "sha512-HnqFsV11skAHvOArMZdLBZZApRSYS4LSztk2K3016Y9VCyZISnlYUYsL2hzlS7tPqKHvNqmI5JSUJZprXloMvA==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "3.15.0", + "@shikijs/vscode-textmate": "^10.0.2" + } + }, + "node_modules/@shikijs/langs": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-3.15.0.tgz", + "integrity": "sha512-WpRvEFvkVvO65uKYW4Rzxs+IG0gToyM8SARQMtGGsH4GDMNZrr60qdggXrFOsdfOVssG/QQGEl3FnJ3EZ+8w8A==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "3.15.0" + } + }, + "node_modules/@shikijs/themes": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-3.15.0.tgz", + "integrity": "sha512-8ow2zWb1IDvCKjYb0KiLNrK4offFdkfNVPXb1OZykpLCzRU6j+efkY+Y7VQjNlNFXonSw+4AOdGYtmqykDbRiQ==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "3.15.0" + } + }, + "node_modules/@shikijs/types": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-3.15.0.tgz", + "integrity": "sha512-BnP+y/EQnhihgHy4oIAN+6FFtmfTekwOLsQbRw9hOKwqgNy8Bdsjq8B05oAt/ZgvIWWFrshV71ytOrlPfYjIJw==", + "license": "MIT", + "dependencies": { + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4" + } + }, + "node_modules/@shikijs/vscode-textmate": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz", + "integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==", + "license": "MIT" + }, + "node_modules/@swc/helpers": { + "version": "0.5.17", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.17.tgz", + "integrity": "sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.8.0" + } + }, + "node_modules/@types/debug": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "license": "MIT", + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "license": "MIT" + }, + "node_modules/@types/estree-jsx": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", + "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==", + "license": "MIT", + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/@types/fontkit": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/@types/fontkit/-/fontkit-2.0.8.tgz", + "integrity": "sha512-wN+8bYxIpJf+5oZdrdtaX04qUuWHcKxcDEgRS9Qm9ZClSHjzEn13SxUC+5eRM+4yXIeTYk8mTzLAWGF64847ew==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/js-yaml": { + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.9.tgz", + "integrity": "sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==", + "license": "MIT" + }, + "node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/mdx": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.13.tgz", + "integrity": "sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==", + "license": "MIT" + }, + "node_modules/@types/ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", + "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", + "license": "MIT" + }, + "node_modules/@types/nlcst": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/nlcst/-/nlcst-2.0.3.tgz", + "integrity": "sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/node": { + "version": "24.10.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.1.tgz", + "integrity": "sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/sax": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/sax/-/sax-1.2.7.tgz", + "integrity": "sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "license": "MIT" + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "license": "ISC" + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "license": "ISC", + "dependencies": { + "string-width": "^4.1.0" + } + }, + "node_modules/ansi-align/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-align/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/ansi-align/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-align/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/anymatch/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "license": "MIT" + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/aria-query": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/array-iterate": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/array-iterate/-/array-iterate-2.0.1.tgz", + "integrity": "sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/ast-types": { + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz", + "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/astring": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/astring/-/astring-1.9.0.tgz", + "integrity": "sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==", + "license": "MIT", + "bin": { + "astring": "bin/astring" + } + }, + "node_modules/astro": { + "version": "5.16.0", + "resolved": "https://registry.npmjs.org/astro/-/astro-5.16.0.tgz", + "integrity": "sha512-GaDRs2Mngpw3dr2vc085GnORh98NiXxwIjg/EoQQQl/icZt3Z7s0BRsYHDZ8swkZbOA6wZsqWJdrNirl+iKcDg==", + "license": "MIT", + "dependencies": { + "@astrojs/compiler": "^2.13.0", + "@astrojs/internal-helpers": "0.7.5", + "@astrojs/markdown-remark": "6.3.9", + "@astrojs/telemetry": "3.3.0", + "@capsizecss/unpack": "^3.0.1", + "@oslojs/encoding": "^1.1.0", + "@rollup/pluginutils": "^5.3.0", + "acorn": "^8.15.0", + "aria-query": "^5.3.2", + "axobject-query": "^4.1.0", + "boxen": "8.0.1", + "ci-info": "^4.3.1", + "clsx": "^2.1.1", + "common-ancestor-path": "^1.0.1", + "cookie": "^1.0.2", + "cssesc": "^3.0.0", + "debug": "^4.4.3", + "deterministic-object-hash": "^2.0.2", + "devalue": "^5.5.0", + "diff": "^5.2.0", + "dlv": "^1.1.3", + "dset": "^3.1.4", + "es-module-lexer": "^1.7.0", + "esbuild": "^0.25.0", + "estree-walker": "^3.0.3", + "flattie": "^1.1.1", + "fontace": "~0.3.1", + "github-slugger": "^2.0.0", + "html-escaper": "3.0.3", + "http-cache-semantics": "^4.2.0", + "import-meta-resolve": "^4.2.0", + "js-yaml": "^4.1.1", + "magic-string": "^0.30.21", + "magicast": "^0.5.1", + "mrmime": "^2.0.1", + "neotraverse": "^0.6.18", + "p-limit": "^6.2.0", + "p-queue": "^8.1.1", + "package-manager-detector": "^1.5.0", + "piccolore": "^0.1.3", + "picomatch": "^4.0.3", + "prompts": "^2.4.2", + "rehype": "^13.0.2", + "semver": "^7.7.3", + "shiki": "^3.15.0", + "smol-toml": "^1.5.0", + "svgo": "^4.0.0", + "tinyexec": "^1.0.2", + "tinyglobby": "^0.2.15", + "tsconfck": "^3.1.6", + "ultrahtml": "^1.6.0", + "unifont": "~0.6.0", + "unist-util-visit": "^5.0.0", + "unstorage": "^1.17.2", + "vfile": "^6.0.3", + "vite": "^6.4.1", + "vitefu": "^1.1.1", + "xxhash-wasm": "^1.1.0", + "yargs-parser": "^21.1.1", + "yocto-spinner": "^0.2.3", + "zod": "^3.25.76", + "zod-to-json-schema": "^3.24.6", + "zod-to-ts": "^1.2.0" + }, + "bin": { + "astro": "astro.js" + }, + "engines": { + "node": "18.20.8 || ^20.3.0 || >=22.0.0", + "npm": ">=9.6.5", + "pnpm": ">=7.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/astrodotbuild" + }, + "optionalDependencies": { + "sharp": "^0.34.0" + } + }, + "node_modules/astro-expressive-code": { + "version": "0.41.3", + "resolved": "https://registry.npmjs.org/astro-expressive-code/-/astro-expressive-code-0.41.3.tgz", + "integrity": "sha512-u+zHMqo/QNLE2eqYRCrK3+XMlKakv33Bzuz+56V1gs8H0y6TZ0hIi3VNbIxeTn51NLn+mJfUV/A0kMNfE4rANw==", + "license": "MIT", + "dependencies": { + "rehype-expressive-code": "^0.41.3" + }, + "peerDependencies": { + "astro": "^4.0.0-beta || ^5.0.0-beta || ^3.3.0" + } + }, + "node_modules/astro-integration-kit": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/astro-integration-kit/-/astro-integration-kit-0.18.0.tgz", + "integrity": "sha512-Z0QW5IQjosuKQDEGYYkvUX6EhEtrmE4/oViqWz23QveV8U7AuyFsTdg00WRNPevWZl/5a4lLUeDpv4bCRynRRg==", + "license": "MIT", + "dependencies": { + "pathe": "^1.1.2", + "recast": "^0.23.7" + }, + "peerDependencies": { + "astro": "^4.12.0 || ^5.0.0" + } + }, + "node_modules/axobject-query": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/base-64": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/base-64/-/base-64-1.0.0.tgz", + "integrity": "sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==", + "license": "MIT" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/bcp-47": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/bcp-47/-/bcp-47-2.1.0.tgz", + "integrity": "sha512-9IIS3UPrvIa1Ej+lVDdDwO7zLehjqsaByECw0bu2RRGP73jALm6FYbzI5gWbgHLvNdkvfXB5YrSbocZdOS0c0w==", + "license": "MIT", + "dependencies": { + "is-alphabetical": "^2.0.0", + "is-alphanumerical": "^2.0.0", + "is-decimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/bcp-47-match": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/bcp-47-match/-/bcp-47-match-2.0.3.tgz", + "integrity": "sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/before-after-hook": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-3.0.2.tgz", + "integrity": "sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "license": "ISC" + }, + "node_modules/boxen": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-8.0.1.tgz", + "integrity": "sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==", + "license": "MIT", + "dependencies": { + "ansi-align": "^3.0.1", + "camelcase": "^8.0.0", + "chalk": "^5.3.0", + "cli-boxes": "^3.0.0", + "string-width": "^7.2.0", + "type-fest": "^4.21.0", + "widest-line": "^5.0.0", + "wrap-ansi": "^9.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brotli": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/brotli/-/brotli-1.3.3.tgz", + "integrity": "sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==", + "license": "MIT", + "dependencies": { + "base64-js": "^1.1.2" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/camelcase": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-8.0.0.tgz", + "integrity": "sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==", + "license": "MIT", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/canvas": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/canvas/-/canvas-3.2.0.tgz", + "integrity": "sha512-jk0GxrLtUEmW/TmFsk2WghvgHe8B0pxGilqCL21y8lHkPUGa6FTsnCNtHPOzT8O3y+N+m3espawV80bbBlgfTA==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "node-addon-api": "^7.0.0", + "prebuild-install": "^7.1.3" + }, + "engines": { + "node": "^18.12.0 || >= 20.9.0" + } + }, + "node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chalk": { + "version": "5.6.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz", + "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==", + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/character-entities": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-reference-invalid": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", + "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chokidar": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "license": "MIT", + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "license": "ISC", + "optional": true, + "peer": true + }, + "node_modules/ci-info": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.3.1.tgz", + "integrity": "sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-boxes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz", + "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/collapse-white-space": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-2.1.0.tgz", + "integrity": "sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/commander": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", + "license": "MIT", + "engines": { + "node": ">=16" + } + }, + "node_modules/common-ancestor-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz", + "integrity": "sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==", + "license": "ISC" + }, + "node_modules/cookie": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.0.2.tgz", + "integrity": "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/cookie-es": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-1.2.2.tgz", + "integrity": "sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==", + "license": "MIT" + }, + "node_modules/crossws": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/crossws/-/crossws-0.3.5.tgz", + "integrity": "sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==", + "license": "MIT", + "dependencies": { + "uncrypto": "^0.1.3" + } + }, + "node_modules/css-select": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.2.2.tgz", + "integrity": "sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-selector-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/css-selector-parser/-/css-selector-parser-3.2.0.tgz", + "integrity": "sha512-L1bdkNKUP5WYxiW5dW6vA2hd3sL8BdRNLy2FCX0rLVise4eNw9nBdeBuJHxlELieSE2H1f6bYQFfwVUwWCV9rQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ], + "license": "MIT" + }, + "node_modules/css-tree": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz", + "integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.12.2", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + } + }, + "node_modules/css-what": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz", + "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "license": "MIT", + "dependencies": { + "css-tree": "~2.2.0" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "license": "CC0-1.0" + }, + "node_modules/cssom": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", + "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decode-named-character-reference": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz", + "integrity": "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==", + "license": "MIT", + "dependencies": { + "character-entities": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "license": "MIT", + "optional": true, + "peer": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/defu": { + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", + "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==", + "license": "MIT" + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/destr": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.5.tgz", + "integrity": "sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==", + "license": "MIT" + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/deterministic-object-hash": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/deterministic-object-hash/-/deterministic-object-hash-2.0.2.tgz", + "integrity": "sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==", + "license": "MIT", + "dependencies": { + "base-64": "^1.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/devalue": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.5.0.tgz", + "integrity": "sha512-69sM5yrHfFLJt0AZ9QqZXGCPfJ7fQjvpln3Rq5+PS03LD32Ost1Q9N+eEnaQwGRIriKkMImXD56ocjQmfjbV3w==", + "license": "MIT" + }, + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "license": "MIT", + "dependencies": { + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/dfa": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/dfa/-/dfa-1.2.0.tgz", + "integrity": "sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==", + "license": "MIT" + }, + "node_modules/diff": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/direction": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/direction/-/direction-2.0.1.tgz", + "integrity": "sha512-9S6m9Sukh1cZNknO1CWAr2QAWsbKLafQiyM5gZ7VgXHeuaoUwffKN4q6NC4A/Mf9iiPlOXQEKW/Mv/mh9/3YFA==", + "license": "MIT", + "bin": { + "direction": "cli.js" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "license": "MIT" + }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/dom-serializer/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", + "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dset": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/dset/-/dset-3.1.4.tgz", + "integrity": "sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/emoji-regex": { + "version": "10.6.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz", + "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==", + "license": "MIT" + }, + "node_modules/end-of-stream": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz", + "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==", + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/entities": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", + "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/es-module-lexer": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", + "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", + "license": "MIT" + }, + "node_modules/esast-util-from-estree": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/esast-util-from-estree/-/esast-util-from-estree-2.0.0.tgz", + "integrity": "sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "devlop": "^1.0.0", + "estree-util-visit": "^2.0.0", + "unist-util-position-from-estree": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/esast-util-from-js": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/esast-util-from-js/-/esast-util-from-js-2.0.1.tgz", + "integrity": "sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "acorn": "^8.0.0", + "esast-util-from-estree": "^2.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/esbuild": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz", + "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.12", + "@esbuild/android-arm": "0.25.12", + "@esbuild/android-arm64": "0.25.12", + "@esbuild/android-x64": "0.25.12", + "@esbuild/darwin-arm64": "0.25.12", + "@esbuild/darwin-x64": "0.25.12", + "@esbuild/freebsd-arm64": "0.25.12", + "@esbuild/freebsd-x64": "0.25.12", + "@esbuild/linux-arm": "0.25.12", + "@esbuild/linux-arm64": "0.25.12", + "@esbuild/linux-ia32": "0.25.12", + "@esbuild/linux-loong64": "0.25.12", + "@esbuild/linux-mips64el": "0.25.12", + "@esbuild/linux-ppc64": "0.25.12", + "@esbuild/linux-riscv64": "0.25.12", + "@esbuild/linux-s390x": "0.25.12", + "@esbuild/linux-x64": "0.25.12", + "@esbuild/netbsd-arm64": "0.25.12", + "@esbuild/netbsd-x64": "0.25.12", + "@esbuild/openbsd-arm64": "0.25.12", + "@esbuild/openbsd-x64": "0.25.12", + "@esbuild/openharmony-arm64": "0.25.12", + "@esbuild/sunos-x64": "0.25.12", + "@esbuild/win32-arm64": "0.25.12", + "@esbuild/win32-ia32": "0.25.12", + "@esbuild/win32-x64": "0.25.12" + } + }, + "node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/estree-util-attach-comments": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-3.0.0.tgz", + "integrity": "sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/estree-util-build-jsx": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-3.0.1.tgz", + "integrity": "sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "estree-walker": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/estree-util-is-identifier-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz", + "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/estree-util-scope": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/estree-util-scope/-/estree-util-scope-1.0.0.tgz", + "integrity": "sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "devlop": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/estree-util-to-js": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-2.0.0.tgz", + "integrity": "sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "astring": "^1.8.0", + "source-map": "^0.7.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/estree-util-visit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-2.0.0.tgz", + "integrity": "sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "license": "MIT" + }, + "node_modules/expand-template": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", + "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", + "license": "(MIT OR WTFPL)", + "optional": true, + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/expressive-code": { + "version": "0.41.3", + "resolved": "https://registry.npmjs.org/expressive-code/-/expressive-code-0.41.3.tgz", + "integrity": "sha512-YLnD62jfgBZYrXIPQcJ0a51Afv9h8VlWqEGK9uU2T5nL/5rb8SnA86+7+mgCZe5D34Tff5RNEA5hjNVJYHzrFg==", + "license": "MIT", + "dependencies": { + "@expressive-code/core": "^0.41.3", + "@expressive-code/plugin-frames": "^0.41.3", + "@expressive-code/plugin-shiki": "^0.41.3", + "@expressive-code/plugin-text-markers": "^0.41.3" + } + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "license": "MIT" + }, + "node_modules/fast-content-type-parse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fast-content-type-parse/-/fast-content-type-parse-2.0.1.tgz", + "integrity": "sha512-nGqtvLrj5w0naR6tDPfB4cUmYCqouzyQiz6C5y/LtcDllJdrcc6WaWW6iXyIIOErTa/XRybj28aasdn4LkVk6Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" + }, + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/flattie": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flattie/-/flattie-1.1.1.tgz", + "integrity": "sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/fontace": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/fontace/-/fontace-0.3.1.tgz", + "integrity": "sha512-9f5g4feWT1jWT8+SbL85aLIRLIXUaDygaM2xPXRmzPYxrOMNok79Lr3FGJoKVNKibE0WCunNiEVG2mwuE+2qEg==", + "license": "MIT", + "dependencies": { + "@types/fontkit": "^2.0.8", + "fontkit": "^2.0.4" + } + }, + "node_modules/fontkit": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/fontkit/-/fontkit-2.0.4.tgz", + "integrity": "sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==", + "license": "MIT", + "dependencies": { + "@swc/helpers": "^0.5.12", + "brotli": "^1.3.2", + "clone": "^2.1.2", + "dfa": "^1.2.0", + "fast-deep-equal": "^3.1.3", + "restructure": "^3.0.0", + "tiny-inflate": "^1.0.3", + "unicode-properties": "^1.4.0", + "unicode-trie": "^2.0.0" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/get-east-asian-width": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz", + "integrity": "sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-tsconfig": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.13.0.tgz", + "integrity": "sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==", + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/github-from-package": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", + "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==", + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/github-slugger": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz", + "integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==", + "license": "ISC" + }, + "node_modules/h3": { + "version": "1.15.4", + "resolved": "https://registry.npmjs.org/h3/-/h3-1.15.4.tgz", + "integrity": "sha512-z5cFQWDffyOe4vQ9xIqNfCZdV4p//vy6fBnr8Q1AWnVZ0teurKMG66rLj++TKwKPUP3u7iMUvrvKaEUiQw2QWQ==", + "license": "MIT", + "dependencies": { + "cookie-es": "^1.2.2", + "crossws": "^0.3.5", + "defu": "^6.1.4", + "destr": "^2.0.5", + "iron-webcrypto": "^1.2.1", + "node-mock-http": "^1.0.2", + "radix3": "^1.1.2", + "ufo": "^1.6.1", + "uncrypto": "^0.1.3" + } + }, + "node_modules/hast-util-embedded": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-embedded/-/hast-util-embedded-3.0.0.tgz", + "integrity": "sha512-naH8sld4Pe2ep03qqULEtvYr7EjrLK2QHY8KJR6RJkTUjPGObe1vnx585uzem2hGra+s1q08DZZpfgDVYRbaXA==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-is-element": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-format": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hast-util-format/-/hast-util-format-1.1.0.tgz", + "integrity": "sha512-yY1UDz6bC9rDvCWHpx12aIBGRG7krurX0p0Fm6pT547LwDIZZiNr8a+IHDogorAdreULSEzP82Nlv5SZkHZcjA==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-embedded": "^3.0.0", + "hast-util-minify-whitespace": "^1.0.0", + "hast-util-phrasing": "^3.0.0", + "hast-util-whitespace": "^3.0.0", + "html-whitespace-sensitive-tag-names": "^3.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-from-html": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/hast-util-from-html/-/hast-util-from-html-2.0.3.tgz", + "integrity": "sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "devlop": "^1.1.0", + "hast-util-from-parse5": "^8.0.0", + "parse5": "^7.0.0", + "vfile": "^6.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-from-parse5": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz", + "integrity": "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "devlop": "^1.0.0", + "hastscript": "^9.0.0", + "property-information": "^7.0.0", + "vfile": "^6.0.0", + "vfile-location": "^5.0.0", + "web-namespaces": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-has-property": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-has-property/-/hast-util-has-property-3.0.0.tgz", + "integrity": "sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-is-body-ok-link": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/hast-util-is-body-ok-link/-/hast-util-is-body-ok-link-3.0.1.tgz", + "integrity": "sha512-0qpnzOBLztXHbHQenVB8uNuxTnm/QBFUOmdOSsEn7GnBtyY07+ENTWVFBAnXd/zEgd9/SUG3lRY7hSIBWRgGpQ==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-is-element": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz", + "integrity": "sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-minify-whitespace": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hast-util-minify-whitespace/-/hast-util-minify-whitespace-1.0.1.tgz", + "integrity": "sha512-L96fPOVpnclQE0xzdWb/D12VT5FabA7SnZOUMtL1DbXmYiHJMXZvFkIZfiMmTCNJHUeO2K9UYNXoVyfz+QHuOw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-embedded": "^3.0.0", + "hast-util-is-element": "^3.0.0", + "hast-util-whitespace": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-parse-selector": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz", + "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-phrasing": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/hast-util-phrasing/-/hast-util-phrasing-3.0.1.tgz", + "integrity": "sha512-6h60VfI3uBQUxHqTyMymMZnEbNl1XmEGtOxxKYL7stY2o601COo62AWAYBQR9lZbYXYSBoxag8UpPRXK+9fqSQ==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-embedded": "^3.0.0", + "hast-util-has-property": "^3.0.0", + "hast-util-is-body-ok-link": "^3.0.0", + "hast-util-is-element": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-raw": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.1.0.tgz", + "integrity": "sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "@ungap/structured-clone": "^1.0.0", + "hast-util-from-parse5": "^8.0.0", + "hast-util-to-parse5": "^8.0.0", + "html-void-elements": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "parse5": "^7.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-select": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/hast-util-select/-/hast-util-select-6.0.4.tgz", + "integrity": "sha512-RqGS1ZgI0MwxLaKLDxjprynNzINEkRHY2i8ln4DDjgv9ZhcYVIHN9rlpiYsqtFwrgpYU361SyWDQcGNIBVu3lw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "bcp-47-match": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "css-selector-parser": "^3.0.0", + "devlop": "^1.0.0", + "direction": "^2.0.0", + "hast-util-has-property": "^3.0.0", + "hast-util-to-string": "^3.0.0", + "hast-util-whitespace": "^3.0.0", + "nth-check": "^2.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "unist-util-visit": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-estree": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-3.1.3.tgz", + "integrity": "sha512-48+B/rJWAp0jamNbAAf9M7Uf//UVqAoMmgXhBdxTDJLGKY+LRnZ99qcG+Qjl5HfMpYNzS5v4EAwVEF34LeAj7w==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "estree-util-attach-comments": "^3.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "hast-util-whitespace": "^3.0.0", + "mdast-util-mdx-expression": "^2.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-mdxjs-esm": "^2.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-js": "^1.0.0", + "unist-util-position": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-html": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz", + "integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-whitespace": "^3.0.0", + "html-void-elements": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "stringify-entities": "^4.0.0", + "zwitch": "^2.0.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-jsx-runtime": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz", + "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "hast-util-whitespace": "^3.0.0", + "mdast-util-mdx-expression": "^2.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-mdxjs-esm": "^2.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-js": "^1.0.0", + "unist-util-position": "^5.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-parse5": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz", + "integrity": "sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-parse5/node_modules/property-information": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz", + "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/hast-util-to-string": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/hast-util-to-string/-/hast-util-to-string-3.0.1.tgz", + "integrity": "sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-text": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz", + "integrity": "sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "hast-util-is-element": "^3.0.0", + "unist-util-find-after": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-whitespace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hastscript": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz", + "integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-parse-selector": "^4.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/html-escaper": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-3.0.3.tgz", + "integrity": "sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==", + "license": "MIT" + }, + "node_modules/html-void-elements": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", + "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/html-whitespace-sensitive-tag-names": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/html-whitespace-sensitive-tag-names/-/html-whitespace-sensitive-tag-names-3.0.1.tgz", + "integrity": "sha512-q+310vW8zmymYHALr1da4HyXUQ0zgiIwIicEfotYPWGN0OJVEN/58IJ3A4GBYcEq3LGAZqKb+ugvP0GNB9CEAA==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/htmlparser2": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.0.0.tgz", + "integrity": "sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.2.1", + "entities": "^6.0.0" + } + }, + "node_modules/http-cache-semantics": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz", + "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==", + "license": "BSD-2-Clause" + }, + "node_modules/i18next": { + "version": "23.16.8", + "resolved": "https://registry.npmjs.org/i18next/-/i18next-23.16.8.tgz", + "integrity": "sha512-06r/TitrM88Mg5FdUXAKL96dJMzgqLE5dv3ryBAra4KCwD9mJ4ndOTS95ZuymIGoE+2hzfdaMak2X11/es7ZWg==", + "funding": [ + { + "type": "individual", + "url": "https://locize.com" + }, + { + "type": "individual", + "url": "https://locize.com/i18next.html" + }, + { + "type": "individual", + "url": "https://www.i18next.com/how-to/faq#i18next-is-awesome.-how-can-i-support-the-project" + } + ], + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.23.2" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause", + "optional": true, + "peer": true + }, + "node_modules/import-meta-resolve": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.2.0.tgz", + "integrity": "sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC", + "optional": true, + "peer": true + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "license": "ISC", + "optional": true, + "peer": true + }, + "node_modules/inline-style-parser": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz", + "integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==", + "license": "MIT" + }, + "node_modules/iron-webcrypto": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz", + "integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/brc-dd" + } + }, + "node_modules/is-alphabetical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", + "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-alphanumerical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", + "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", + "license": "MIT", + "dependencies": { + "is-alphabetical": "^2.0.0", + "is-decimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-decimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", + "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-hexadecimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", + "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "license": "MIT", + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-wsl": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", + "license": "MIT", + "dependencies": { + "is-inside-container": "^1.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/linkedom": { + "version": "0.18.12", + "resolved": "https://registry.npmjs.org/linkedom/-/linkedom-0.18.12.tgz", + "integrity": "sha512-jalJsOwIKuQJSeTvsgzPe9iJzyfVaEJiEXl+25EkKevsULHvMJzpNqwvj1jOESWdmgKDiXObyjOYwlUqG7wo1Q==", + "license": "ISC", + "dependencies": { + "css-select": "^5.1.0", + "cssom": "^0.5.0", + "html-escaper": "^3.0.3", + "htmlparser2": "^10.0.0", + "uhyphen": "^0.2.0" + }, + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "canvas": ">= 2" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/longest-streak": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/magicast": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.5.1.tgz", + "integrity": "sha512-xrHS24IxaLrvuo613F719wvOIv9xPHFWQHuvGUBmPnCA/3MQxKI3b+r7n1jAoDHmsbC5bRhTZYR77invLAxVnw==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "source-map-js": "^1.2.1" + } + }, + "node_modules/markdown-extensions": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-2.0.0.tgz", + "integrity": "sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==", + "license": "MIT", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/markdown-table": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz", + "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-definitions": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-6.0.0.tgz", + "integrity": "sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "unist-util-visit": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-directive": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-directive/-/mdast-util-directive-3.1.0.tgz", + "integrity": "sha512-I3fNFt+DHmpWCYAT7quoM6lHf9wuqtI+oCOfvILnoicNIqjh5E3dEJWiXuYME2gNe8vl1iMQwyUHa7bgFmak6Q==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "parse-entities": "^4.0.0", + "stringify-entities": "^4.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-find-and-replace": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz", + "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "escape-string-regexp": "^5.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-from-markdown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz", + "integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark": "^4.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz", + "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==", + "license": "MIT", + "dependencies": { + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-gfm-autolink-literal": "^2.0.0", + "mdast-util-gfm-footnote": "^2.0.0", + "mdast-util-gfm-strikethrough": "^2.0.0", + "mdast-util-gfm-table": "^2.0.0", + "mdast-util-gfm-task-list-item": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-autolink-literal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz", + "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "ccount": "^2.0.0", + "devlop": "^1.0.0", + "mdast-util-find-and-replace": "^3.0.0", + "micromark-util-character": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-footnote": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz", + "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-strikethrough": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz", + "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-table": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz", + "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "markdown-table": "^3.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-task-list-item": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz", + "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz", + "integrity": "sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==", + "license": "MIT", + "dependencies": { + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-mdx-expression": "^2.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-mdxjs-esm": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-expression": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz", + "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-jsx": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz", + "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "parse-entities": "^4.0.0", + "stringify-entities": "^4.0.0", + "unist-util-stringify-position": "^4.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdxjs-esm": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz", + "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-phrasing": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", + "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast": { + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", + "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@ungap/structured-clone": "^1.0.0", + "devlop": "^1.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "trim-lines": "^3.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz", + "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^4.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "unist-util-visit": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdn-data": { + "version": "2.12.2", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz", + "integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==", + "license": "CC0-1.0" + }, + "node_modules/micromark": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", + "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-core-commonmark": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", + "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-destination": "^2.0.0", + "micromark-factory-label": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-title": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-html-tag-name": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-directive": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/micromark-extension-directive/-/micromark-extension-directive-3.0.2.tgz", + "integrity": "sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "parse-entities": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz", + "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==", + "license": "MIT", + "dependencies": { + "micromark-extension-gfm-autolink-literal": "^2.0.0", + "micromark-extension-gfm-footnote": "^2.0.0", + "micromark-extension-gfm-strikethrough": "^2.0.0", + "micromark-extension-gfm-table": "^2.0.0", + "micromark-extension-gfm-tagfilter": "^2.0.0", + "micromark-extension-gfm-task-list-item": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz", + "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==", + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-footnote": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz", + "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-strikethrough": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz", + "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-table": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz", + "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-tagfilter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz", + "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==", + "license": "MIT", + "dependencies": { + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-task-list-item": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz", + "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdx-expression": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.1.tgz", + "integrity": "sha512-dD/ADLJ1AeMvSAKBwO22zG22N4ybhe7kFIZ3LsDI0GlsNr2A3KYxb0LdC1u5rj4Nw+CHKY0RVdnHX8vj8ejm4Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-mdx-expression": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-events-to-acorn": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdx-jsx": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.2.tgz", + "integrity": "sha512-e5+q1DjMh62LZAJOnDraSSbDMvGJ8x3cbjygy2qFEi7HCeUT4BDKCvMozPozcD6WmOt6sVvYDNBKhFSz3kjOVQ==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "micromark-factory-mdx-expression": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-events-to-acorn": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdx-md": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-2.0.0.tgz", + "integrity": "sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==", + "license": "MIT", + "dependencies": { + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdxjs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-3.0.0.tgz", + "integrity": "sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==", + "license": "MIT", + "dependencies": { + "acorn": "^8.0.0", + "acorn-jsx": "^5.0.0", + "micromark-extension-mdx-expression": "^3.0.0", + "micromark-extension-mdx-jsx": "^3.0.0", + "micromark-extension-mdx-md": "^2.0.0", + "micromark-extension-mdxjs-esm": "^3.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdxjs-esm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-3.0.0.tgz", + "integrity": "sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-events-to-acorn": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-position-from-estree": "^2.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-factory-destination": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", + "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-label": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", + "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-mdx-expression": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.3.tgz", + "integrity": "sha512-kQnEtA3vzucU2BkrIa8/VaSAsP+EJ3CKOvhMuJgOEGg9KDC6OAY6nSnNDVRiVNRqj7Y4SlSzcStaH/5jge8JdQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-events-to-acorn": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-position-from-estree": "^2.0.0", + "vfile-message": "^4.0.0" + } + }, + "node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-title": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", + "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-whitespace": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", + "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-chunked": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", + "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-classify-character": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", + "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-combine-extensions": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", + "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-chunked": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-numeric-character-reference": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", + "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-string": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", + "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-encode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", + "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-events-to-acorn": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.3.tgz", + "integrity": "sha512-jmsiEIiZ1n7X1Rr5k8wVExBQCg5jy4UXVADItHmNk1zkwEVhBuIUKRu3fqv+hs4nxLISi2DQGlqIOGiFxgbfHg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "@types/unist": "^3.0.0", + "devlop": "^1.0.0", + "estree-util-visit": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "vfile-message": "^4.0.0" + } + }, + "node_modules/micromark-util-html-tag-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", + "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-normalize-identifier": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", + "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-resolve-all": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", + "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", + "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-subtokenize": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", + "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-types": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", + "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "license": "MIT", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", + "optional": true, + "peer": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/mrmime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz", + "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/nanostores": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/nanostores/-/nanostores-1.1.0.tgz", + "integrity": "sha512-yJBmDJr18xy47dbNVlHcgdPrulSn1nhSE6Ns9vTG+Nx9VPT6iV1MD6aQFp/t52zpf82FhLLTXAXr30NuCnxvwA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "engines": { + "node": "^20.0.0 || >=22.0.0" + } + }, + "node_modules/napi-build-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-2.0.0.tgz", + "integrity": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==", + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/neotraverse": { + "version": "0.6.18", + "resolved": "https://registry.npmjs.org/neotraverse/-/neotraverse-0.6.18.tgz", + "integrity": "sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/nlcst-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/nlcst-to-string/-/nlcst-to-string-4.0.0.tgz", + "integrity": "sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==", + "license": "MIT", + "dependencies": { + "@types/nlcst": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/node-abi": { + "version": "3.85.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.85.0.tgz", + "integrity": "sha512-zsFhmbkAzwhTft6nd3VxcG0cvJsT70rL+BIGHWVq5fi6MwGrHwzqKaxXE+Hl2GmnGItnDKPPkO5/LQqjVkIdFg==", + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/node-fetch-native": { + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.7.tgz", + "integrity": "sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==", + "license": "MIT" + }, + "node_modules/node-mock-http": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/node-mock-http/-/node-mock-http-1.0.3.tgz", + "integrity": "sha512-jN8dK25fsfnMrVsEhluUTPkBFY+6ybu7jSB1n+ri/vOGjJxU8J9CZhpSGkHXSkFjtUhbmoncG/YG9ta5Ludqog==", + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/ofetch": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.5.1.tgz", + "integrity": "sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==", + "license": "MIT", + "dependencies": { + "destr": "^2.0.5", + "node-fetch-native": "^1.6.7", + "ufo": "^1.6.1" + } + }, + "node_modules/ohash": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/ohash/-/ohash-2.0.11.tgz", + "integrity": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==", + "license": "MIT" + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "optional": true, + "peer": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/oniguruma-parser": { + "version": "0.12.1", + "resolved": "https://registry.npmjs.org/oniguruma-parser/-/oniguruma-parser-0.12.1.tgz", + "integrity": "sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==", + "license": "MIT" + }, + "node_modules/oniguruma-to-es": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-4.3.4.tgz", + "integrity": "sha512-3VhUGN3w2eYxnTzHn+ikMI+fp/96KoRSVK9/kMTcFqj1NRDh2IhQCKvYxDnWePKRXY/AqH+Fuiyb7VHSzBjHfA==", + "license": "MIT", + "dependencies": { + "oniguruma-parser": "^0.12.1", + "regex": "^6.0.1", + "regex-recursion": "^6.0.2" + } + }, + "node_modules/p-limit": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-6.2.0.tgz", + "integrity": "sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^1.1.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-queue": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-8.1.1.tgz", + "integrity": "sha512-aNZ+VfjobsWryoiPnEApGGmf5WmNsCo9xu8dfaYamG5qaLP7ClhLN6NgsFe6SwJ2UbLEBK5dv9x8Mn5+RVhMWQ==", + "license": "MIT", + "dependencies": { + "eventemitter3": "^5.0.1", + "p-timeout": "^6.1.2" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-timeout": { + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-6.1.4.tgz", + "integrity": "sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==", + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-manager-detector": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.5.0.tgz", + "integrity": "sha512-uBj69dVlYe/+wxj8JOpr97XfsxH/eumMt6HqjNTmJDf/6NO9s+0uxeOneIz3AsPt2m6y9PqzDzd3ATcU17MNfw==", + "license": "MIT" + }, + "node_modules/pagefind": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/pagefind/-/pagefind-1.4.0.tgz", + "integrity": "sha512-z2kY1mQlL4J8q5EIsQkLzQjilovKzfNVhX8De6oyE6uHpfFtyBaqUpcl/XzJC/4fjD8vBDyh1zolimIcVrCn9g==", + "license": "MIT", + "bin": { + "pagefind": "lib/runner/bin.cjs" + }, + "optionalDependencies": { + "@pagefind/darwin-arm64": "1.4.0", + "@pagefind/darwin-x64": "1.4.0", + "@pagefind/freebsd-x64": "1.4.0", + "@pagefind/linux-arm64": "1.4.0", + "@pagefind/linux-x64": "1.4.0", + "@pagefind/windows-x64": "1.4.0" + } + }, + "node_modules/pako": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", + "license": "MIT" + }, + "node_modules/parse-entities": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz", + "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "character-entities-legacy": "^3.0.0", + "character-reference-invalid": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "is-alphanumerical": "^2.0.0", + "is-decimal": "^2.0.0", + "is-hexadecimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/parse-entities/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", + "license": "MIT" + }, + "node_modules/parse-latin": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse-latin/-/parse-latin-7.0.0.tgz", + "integrity": "sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==", + "license": "MIT", + "dependencies": { + "@types/nlcst": "^2.0.0", + "@types/unist": "^3.0.0", + "nlcst-to-string": "^4.0.0", + "unist-util-modify-children": "^4.0.0", + "unist-util-visit-children": "^3.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/parse5": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", + "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", + "license": "MIT", + "dependencies": { + "entities": "^6.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/pathe": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", + "license": "MIT" + }, + "node_modules/piccolore": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/piccolore/-/piccolore-0.1.3.tgz", + "integrity": "sha512-o8bTeDWjE086iwKrROaDf31K0qC/BENdm15/uH9usSC/uZjJOKb2YGiVHfLY4GhwsERiPI1jmwI2XrA7ACOxVw==", + "license": "ISC" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-nested": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.1.1" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/prebuild-install": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.3.tgz", + "integrity": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==", + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "detect-libc": "^2.0.0", + "expand-template": "^2.0.3", + "github-from-package": "0.0.0", + "minimist": "^1.2.3", + "mkdirp-classic": "^0.5.3", + "napi-build-utils": "^2.0.0", + "node-abi": "^3.3.0", + "pump": "^3.0.0", + "rc": "^1.2.7", + "simple-get": "^4.0.0", + "tar-fs": "^2.0.0", + "tunnel-agent": "^0.6.0" + }, + "bin": { + "prebuild-install": "bin.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/prettier": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz", + "integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prismjs": { + "version": "1.30.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz", + "integrity": "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "license": "MIT", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/property-information": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz", + "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/pump": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz", + "integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==", + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/radix3": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz", + "integrity": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==", + "license": "MIT" + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "optional": true, + "peer": true, + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", + "license": "MIT", + "engines": { + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/recast": { + "version": "0.23.11", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.11.tgz", + "integrity": "sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==", + "license": "MIT", + "dependencies": { + "ast-types": "^0.16.1", + "esprima": "~4.0.0", + "source-map": "~0.6.1", + "tiny-invariant": "^1.3.3", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/recast/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/recma-build-jsx": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/recma-build-jsx/-/recma-build-jsx-1.0.0.tgz", + "integrity": "sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "estree-util-build-jsx": "^3.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/recma-jsx": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/recma-jsx/-/recma-jsx-1.0.1.tgz", + "integrity": "sha512-huSIy7VU2Z5OLv6oFLosQGGDqPqdO1iq6bWNAdhzMxSJP7RAso4fCZ1cKu8j9YHCZf3TPrq4dw3okhrylgcd7w==", + "license": "MIT", + "dependencies": { + "acorn-jsx": "^5.0.0", + "estree-util-to-js": "^2.0.0", + "recma-parse": "^1.0.0", + "recma-stringify": "^1.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/recma-parse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/recma-parse/-/recma-parse-1.0.0.tgz", + "integrity": "sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "esast-util-from-js": "^2.0.0", + "unified": "^11.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/recma-stringify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/recma-stringify/-/recma-stringify-1.0.0.tgz", + "integrity": "sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "estree-util-to-js": "^2.0.0", + "unified": "^11.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/regex/-/regex-6.0.1.tgz", + "integrity": "sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==", + "license": "MIT", + "dependencies": { + "regex-utilities": "^2.3.0" + } + }, + "node_modules/regex-recursion": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-6.0.2.tgz", + "integrity": "sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==", + "license": "MIT", + "dependencies": { + "regex-utilities": "^2.3.0" + } + }, + "node_modules/regex-utilities": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/regex-utilities/-/regex-utilities-2.3.0.tgz", + "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==", + "license": "MIT" + }, + "node_modules/rehype": { + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/rehype/-/rehype-13.0.2.tgz", + "integrity": "sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "rehype-parse": "^9.0.0", + "rehype-stringify": "^10.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-expressive-code": { + "version": "0.41.3", + "resolved": "https://registry.npmjs.org/rehype-expressive-code/-/rehype-expressive-code-0.41.3.tgz", + "integrity": "sha512-8d9Py4c/V6I/Od2VIXFAdpiO2kc0SV2qTJsRAaqSIcM9aruW4ASLNe2kOEo1inXAAkIhpFzAHTc358HKbvpNUg==", + "license": "MIT", + "dependencies": { + "expressive-code": "^0.41.3" + } + }, + "node_modules/rehype-format": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/rehype-format/-/rehype-format-5.0.1.tgz", + "integrity": "sha512-zvmVru9uB0josBVpr946OR8ui7nJEdzZobwLOOqHb/OOD88W0Vk2SqLwoVOj0fM6IPCCO6TaV9CvQvJMWwukFQ==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-format": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-parse": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/rehype-parse/-/rehype-parse-9.0.1.tgz", + "integrity": "sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-from-html": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-raw": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-7.0.0.tgz", + "integrity": "sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-raw": "^9.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-recma": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rehype-recma/-/rehype-recma-1.0.0.tgz", + "integrity": "sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "@types/hast": "^3.0.0", + "hast-util-to-estree": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-stringify": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-10.0.1.tgz", + "integrity": "sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-to-html": "^9.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-directive": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/remark-directive/-/remark-directive-3.0.1.tgz", + "integrity": "sha512-gwglrEQEZcZYgVyG1tQuA+h58EZfq5CSULw7J90AFuCTyib1thgHPoqQ+h9iFvU6R+vnZ5oNFQR5QKgGpk741A==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-directive": "^3.0.0", + "micromark-extension-directive": "^3.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-gfm": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz", + "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-gfm": "^3.0.0", + "micromark-extension-gfm": "^3.0.0", + "remark-parse": "^11.0.0", + "remark-stringify": "^11.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-3.1.1.tgz", + "integrity": "sha512-Pjj2IYlUY3+D8x00UJsIOg5BEvfMyeI+2uLPn9VO9Wg4MEtN/VTIq2NEJQfde9PnX15KgtHyl9S0BcTnWrIuWg==", + "license": "MIT", + "dependencies": { + "mdast-util-mdx": "^3.0.0", + "micromark-extension-mdxjs": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-parse": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", + "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-rehype": { + "version": "11.1.2", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz", + "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "mdast-util-to-hast": "^13.0.0", + "unified": "^11.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-smartypants": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/remark-smartypants/-/remark-smartypants-3.0.2.tgz", + "integrity": "sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==", + "license": "MIT", + "dependencies": { + "retext": "^9.0.0", + "retext-smartypants": "^6.0.0", + "unified": "^11.0.4", + "unist-util-visit": "^5.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/remark-stringify": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz", + "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-to-markdown": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/restructure": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/restructure/-/restructure-3.0.2.tgz", + "integrity": "sha512-gSfoiOEA0VPE6Tukkrr7I0RBdE0s7H1eFCDBk05l1KIQT1UIKNc5JZy6jdyW6eYH3aR3g5b3PuL77rq0hvwtAw==", + "license": "MIT" + }, + "node_modules/retext": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/retext/-/retext-9.0.0.tgz", + "integrity": "sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==", + "license": "MIT", + "dependencies": { + "@types/nlcst": "^2.0.0", + "retext-latin": "^4.0.0", + "retext-stringify": "^4.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/retext-latin": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/retext-latin/-/retext-latin-4.0.0.tgz", + "integrity": "sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==", + "license": "MIT", + "dependencies": { + "@types/nlcst": "^2.0.0", + "parse-latin": "^7.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/retext-smartypants": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/retext-smartypants/-/retext-smartypants-6.2.0.tgz", + "integrity": "sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==", + "license": "MIT", + "dependencies": { + "@types/nlcst": "^2.0.0", + "nlcst-to-string": "^4.0.0", + "unist-util-visit": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/retext-stringify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/retext-stringify/-/retext-stringify-4.0.0.tgz", + "integrity": "sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==", + "license": "MIT", + "dependencies": { + "@types/nlcst": "^2.0.0", + "nlcst-to-string": "^4.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rollup": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.53.3.tgz", + "integrity": "sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==", + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.53.3", + "@rollup/rollup-android-arm64": "4.53.3", + "@rollup/rollup-darwin-arm64": "4.53.3", + "@rollup/rollup-darwin-x64": "4.53.3", + "@rollup/rollup-freebsd-arm64": "4.53.3", + "@rollup/rollup-freebsd-x64": "4.53.3", + "@rollup/rollup-linux-arm-gnueabihf": "4.53.3", + "@rollup/rollup-linux-arm-musleabihf": "4.53.3", + "@rollup/rollup-linux-arm64-gnu": "4.53.3", + "@rollup/rollup-linux-arm64-musl": "4.53.3", + "@rollup/rollup-linux-loong64-gnu": "4.53.3", + "@rollup/rollup-linux-ppc64-gnu": "4.53.3", + "@rollup/rollup-linux-riscv64-gnu": "4.53.3", + "@rollup/rollup-linux-riscv64-musl": "4.53.3", + "@rollup/rollup-linux-s390x-gnu": "4.53.3", + "@rollup/rollup-linux-x64-gnu": "4.53.3", + "@rollup/rollup-linux-x64-musl": "4.53.3", + "@rollup/rollup-openharmony-arm64": "4.53.3", + "@rollup/rollup-win32-arm64-msvc": "4.53.3", + "@rollup/rollup-win32-ia32-msvc": "4.53.3", + "@rollup/rollup-win32-x64-gnu": "4.53.3", + "@rollup/rollup-win32-x64-msvc": "4.53.3", + "fsevents": "~2.3.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/sax": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.3.tgz", + "integrity": "sha512-yqYn1JhPczigF94DMS+shiDMjDowYO6y9+wB/4WgO0Y19jWYk0lQ4tuG5KI7kj4FTp1wxPj5IFfcrz/s1c3jjQ==", + "license": "BlueOak-1.0.0" + }, + "node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/sharp": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz", + "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==", + "hasInstallScript": true, + "license": "Apache-2.0", + "dependencies": { + "@img/colour": "^1.0.0", + "detect-libc": "^2.1.2", + "semver": "^7.7.3" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-darwin-arm64": "0.34.5", + "@img/sharp-darwin-x64": "0.34.5", + "@img/sharp-libvips-darwin-arm64": "1.2.4", + "@img/sharp-libvips-darwin-x64": "1.2.4", + "@img/sharp-libvips-linux-arm": "1.2.4", + "@img/sharp-libvips-linux-arm64": "1.2.4", + "@img/sharp-libvips-linux-ppc64": "1.2.4", + "@img/sharp-libvips-linux-riscv64": "1.2.4", + "@img/sharp-libvips-linux-s390x": "1.2.4", + "@img/sharp-libvips-linux-x64": "1.2.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", + "@img/sharp-libvips-linuxmusl-x64": "1.2.4", + "@img/sharp-linux-arm": "0.34.5", + "@img/sharp-linux-arm64": "0.34.5", + "@img/sharp-linux-ppc64": "0.34.5", + "@img/sharp-linux-riscv64": "0.34.5", + "@img/sharp-linux-s390x": "0.34.5", + "@img/sharp-linux-x64": "0.34.5", + "@img/sharp-linuxmusl-arm64": "0.34.5", + "@img/sharp-linuxmusl-x64": "0.34.5", + "@img/sharp-wasm32": "0.34.5", + "@img/sharp-win32-arm64": "0.34.5", + "@img/sharp-win32-ia32": "0.34.5", + "@img/sharp-win32-x64": "0.34.5" + } + }, + "node_modules/shiki": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/shiki/-/shiki-3.15.0.tgz", + "integrity": "sha512-kLdkY6iV3dYbtPwS9KXU7mjfmDm25f5m0IPNFnaXO7TBPcvbUOY72PYXSuSqDzwp+vlH/d7MXpHlKO/x+QoLXw==", + "license": "MIT", + "dependencies": { + "@shikijs/core": "3.15.0", + "@shikijs/engine-javascript": "3.15.0", + "@shikijs/engine-oniguruma": "3.15.0", + "@shikijs/langs": "3.15.0", + "@shikijs/themes": "3.15.0", + "@shikijs/types": "3.15.0", + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4" + } + }, + "node_modules/simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/simple-get": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", + "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "license": "MIT" + }, + "node_modules/sitemap": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-8.0.2.tgz", + "integrity": "sha512-LwktpJcyZDoa0IL6KT++lQ53pbSrx2c9ge41/SeLTyqy2XUNA6uR4+P9u5IVo5lPeL2arAcOKn1aZAxoYbCKlQ==", + "license": "MIT", + "dependencies": { + "@types/node": "^17.0.5", + "@types/sax": "^1.2.1", + "arg": "^5.0.0", + "sax": "^1.4.1" + }, + "bin": { + "sitemap": "dist/cli.js" + }, + "engines": { + "node": ">=14.0.0", + "npm": ">=6.0.0" + } + }, + "node_modules/sitemap/node_modules/@types/node": { + "version": "17.0.45", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz", + "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==", + "license": "MIT" + }, + "node_modules/smol-toml": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.5.2.tgz", + "integrity": "sha512-QlaZEqcAH3/RtNyet1IPIYPsEWAaYyXXv1Krsi+1L/QHppjX4Ifm8MQsBISz9vE8cHicIq3clogsheili5vhaQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 18" + }, + "funding": { + "url": "https://github.com/sponsors/cyyynthia" + } + }, + "node_modules/source-map": { + "version": "0.7.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz", + "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 12" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/starlight-auto-sidebar": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/starlight-auto-sidebar/-/starlight-auto-sidebar-0.1.3.tgz", + "integrity": "sha512-3+5EUPZwXdqhoH8NSg6oS1jevDPgJNOTXNMl1xYIjhxA80Ighn9wj6h2DfLr4F3A30d0zIJrCfh02e0w7o+lbw==", + "license": "MIT", + "dependencies": { + "github-slugger": "^2.0.0" + }, + "engines": { + "node": ">=18.17.1" + }, + "peerDependencies": { + "@astrojs/starlight": ">=0.32.0" + } + }, + "node_modules/starlight-heading-badges": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/starlight-heading-badges/-/starlight-heading-badges-0.6.1.tgz", + "integrity": "sha512-k89LlfxWSI136QOaedf70cZ29oDfv5xb6C2TIipt0RTk6TltVvUwFKk2H7gd+bVAjpH18CmzlGhCa5moEtyeZA==", + "license": "MIT", + "dependencies": { + "@astrojs/markdown-remark": "^6.0.1", + "github-slugger": "^2.0.0", + "mdast-util-directive": "^3.0.0", + "unist-util-visit": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@astrojs/starlight": ">=0.32.0" + } + }, + "node_modules/stream-replace-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/stream-replace-string/-/stream-replace-string-2.0.0.tgz", + "integrity": "sha512-TlnjJ1C0QrmxRNrON00JvaFFlNh5TTG00APw23j74ET7gkQpTASi6/L2fuiav8pzK715HXtUeClpBTw2NPSn6w==", + "license": "MIT" + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-width": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/stringify-entities": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "license": "MIT", + "dependencies": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "license": "MIT", + "optional": true, + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/style-to-js": { + "version": "1.1.21", + "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz", + "integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==", + "license": "MIT", + "dependencies": { + "style-to-object": "1.0.14" + } + }, + "node_modules/style-to-object": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz", + "integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==", + "license": "MIT", + "dependencies": { + "inline-style-parser": "0.2.7" + } + }, + "node_modules/svgo": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-4.0.0.tgz", + "integrity": "sha512-VvrHQ+9uniE+Mvx3+C9IEe/lWasXCU0nXMY2kZeLrHNICuRiC8uMPyM14UEaMOFA5mhyQqEkB02VoQ16n3DLaw==", + "license": "MIT", + "dependencies": { + "commander": "^11.1.0", + "css-select": "^5.1.0", + "css-tree": "^3.0.1", + "css-what": "^6.1.0", + "csso": "^5.0.5", + "picocolors": "^1.1.1", + "sax": "^1.4.1" + }, + "bin": { + "svgo": "bin/svgo.js" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/svgo" + } + }, + "node_modules/tar-fs": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.4.tgz", + "integrity": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==", + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tiny-inflate": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz", + "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==", + "license": "MIT" + }, + "node_modules/tiny-invariant": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", + "license": "MIT" + }, + "node_modules/tinyexec": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.0.2.tgz", + "integrity": "sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/trim-lines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/trough": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/tsconfck": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.6.tgz", + "integrity": "sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==", + "license": "MIT", + "bin": { + "tsconfck": "bin/tsconfck.js" + }, + "engines": { + "node": "^18 || >=20" + }, + "peerDependencies": { + "typescript": "^5.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/tsx": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.21.0.tgz", + "integrity": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==", + "license": "MIT", + "dependencies": { + "esbuild": "~0.27.0", + "get-tsconfig": "^4.7.5" + }, + "bin": { + "tsx": "dist/cli.mjs" + }, + "engines": { + "node": ">=18.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + } + }, + "node_modules/tsx/node_modules/@esbuild/aix-ppc64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.0.tgz", + "integrity": "sha512-KuZrd2hRjz01y5JK9mEBSD3Vj3mbCvemhT466rSuJYeE/hjuBrHfjjcjMdTm/sz7au+++sdbJZJmuBwQLuw68A==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/android-arm": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.0.tgz", + "integrity": "sha512-j67aezrPNYWJEOHUNLPj9maeJte7uSMM6gMoxfPC9hOg8N02JuQi/T7ewumf4tNvJadFkvLZMlAq73b9uwdMyQ==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/android-arm64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.0.tgz", + "integrity": "sha512-CC3vt4+1xZrs97/PKDkl0yN7w8edvU2vZvAFGD16n9F0Cvniy5qvzRXjfO1l94efczkkQE6g1x0i73Qf5uthOQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/android-x64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.0.tgz", + "integrity": "sha512-wurMkF1nmQajBO1+0CJmcN17U4BP6GqNSROP8t0X/Jiw2ltYGLHpEksp9MpoBqkrFR3kv2/te6Sha26k3+yZ9Q==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/darwin-arm64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.0.tgz", + "integrity": "sha512-uJOQKYCcHhg07DL7i8MzjvS2LaP7W7Pn/7uA0B5S1EnqAirJtbyw4yC5jQ5qcFjHK9l6o/MX9QisBg12kNkdHg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/darwin-x64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.0.tgz", + "integrity": "sha512-8mG6arH3yB/4ZXiEnXof5MK72dE6zM9cDvUcPtxhUZsDjESl9JipZYW60C3JGreKCEP+p8P/72r69m4AZGJd5g==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/freebsd-arm64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.0.tgz", + "integrity": "sha512-9FHtyO988CwNMMOE3YIeci+UV+x5Zy8fI2qHNpsEtSF83YPBmE8UWmfYAQg6Ux7Gsmd4FejZqnEUZCMGaNQHQw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/freebsd-x64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.0.tgz", + "integrity": "sha512-zCMeMXI4HS/tXvJz8vWGexpZj2YVtRAihHLk1imZj4efx1BQzN76YFeKqlDr3bUWI26wHwLWPd3rwh6pe4EV7g==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/linux-arm": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.0.tgz", + "integrity": "sha512-t76XLQDpxgmq2cNXKTVEB7O7YMb42atj2Re2Haf45HkaUpjM2J0UuJZDuaGbPbamzZ7bawyGFUkodL+zcE+jvQ==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/linux-arm64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.0.tgz", + "integrity": "sha512-AS18v0V+vZiLJyi/4LphvBE+OIX682Pu7ZYNsdUHyUKSoRwdnOsMf6FDekwoAFKej14WAkOef3zAORJgAtXnlQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/linux-ia32": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.0.tgz", + "integrity": "sha512-Mz1jxqm/kfgKkc/KLHC5qIujMvnnarD9ra1cEcrs7qshTUSksPihGrWHVG5+osAIQ68577Zpww7SGapmzSt4Nw==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/linux-loong64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.0.tgz", + "integrity": "sha512-QbEREjdJeIreIAbdG2hLU1yXm1uu+LTdzoq1KCo4G4pFOLlvIspBm36QrQOar9LFduavoWX2msNFAAAY9j4BDg==", + "cpu": [ + "loong64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/linux-mips64el": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.0.tgz", + "integrity": "sha512-sJz3zRNe4tO2wxvDpH/HYJilb6+2YJxo/ZNbVdtFiKDufzWq4JmKAiHy9iGoLjAV7r/W32VgaHGkk35cUXlNOg==", + "cpu": [ + "mips64el" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/linux-ppc64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.0.tgz", + "integrity": "sha512-z9N10FBD0DCS2dmSABDBb5TLAyF1/ydVb+N4pi88T45efQ/w4ohr/F/QYCkxDPnkhkp6AIpIcQKQ8F0ANoA2JA==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/linux-riscv64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.0.tgz", + "integrity": "sha512-pQdyAIZ0BWIC5GyvVFn5awDiO14TkT/19FTmFcPdDec94KJ1uZcmFs21Fo8auMXzD4Tt+diXu1LW1gHus9fhFQ==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/linux-s390x": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.0.tgz", + "integrity": "sha512-hPlRWR4eIDDEci953RI1BLZitgi5uqcsjKMxwYfmi4LcwyWo2IcRP+lThVnKjNtk90pLS8nKdroXYOqW+QQH+w==", + "cpu": [ + "s390x" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/linux-x64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.0.tgz", + "integrity": "sha512-1hBWx4OUJE2cab++aVZ7pObD6s+DK4mPGpemtnAORBvb5l/g5xFGk0vc0PjSkrDs0XaXj9yyob3d14XqvnQ4gw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/netbsd-arm64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.0.tgz", + "integrity": "sha512-6m0sfQfxfQfy1qRuecMkJlf1cIzTOgyaeXaiVaaki8/v+WB+U4hc6ik15ZW6TAllRlg/WuQXxWj1jx6C+dfy3w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/netbsd-x64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.0.tgz", + "integrity": "sha512-xbbOdfn06FtcJ9d0ShxxvSn2iUsGd/lgPIO2V3VZIPDbEaIj1/3nBBe1AwuEZKXVXkMmpr6LUAgMkLD/4D2PPA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/openbsd-arm64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.0.tgz", + "integrity": "sha512-fWgqR8uNbCQ/GGv0yhzttj6sU/9Z5/Sv/VGU3F5OuXK6J6SlriONKrQ7tNlwBrJZXRYk5jUhuWvF7GYzGguBZQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/openbsd-x64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.0.tgz", + "integrity": "sha512-aCwlRdSNMNxkGGqQajMUza6uXzR/U0dIl1QmLjPtRbLOx3Gy3otfFu/VjATy4yQzo9yFDGTxYDo1FfAD9oRD2A==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/openharmony-arm64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.0.tgz", + "integrity": "sha512-nyvsBccxNAsNYz2jVFYwEGuRRomqZ149A39SHWk4hV0jWxKM0hjBPm3AmdxcbHiFLbBSwG6SbpIcUbXjgyECfA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/sunos-x64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.0.tgz", + "integrity": "sha512-Q1KY1iJafM+UX6CFEL+F4HRTgygmEW568YMqDA5UV97AuZSm21b7SXIrRJDwXWPzr8MGr75fUZPV67FdtMHlHA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/win32-arm64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.0.tgz", + "integrity": "sha512-W1eyGNi6d+8kOmZIwi/EDjrL9nxQIQ0MiGqe/AWc6+IaHloxHSGoeRgDRKHFISThLmsewZ5nHFvGFWdBYlgKPg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/win32-ia32": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.0.tgz", + "integrity": "sha512-30z1aKL9h22kQhilnYkORFYt+3wp7yZsHWus+wSKAJR8JtdfI76LJ4SBdMsCopTR3z/ORqVu5L1vtnHZWVj4cQ==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/win32-x64": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.0.tgz", + "integrity": "sha512-aIitBcjQeyOhMTImhLZmtxfdOcuNRpwlPNmlFKPcHQYPhEssw75Cl1TSXJXpMkzaua9FUetx/4OQKq7eJul5Cg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/esbuild": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.0.tgz", + "integrity": "sha512-jd0f4NHbD6cALCyGElNpGAOtWxSq46l9X/sWB0Nzd5er4Kz2YTm+Vl0qKFT9KUJvD8+fiO8AvoHhFvEatfVixA==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.27.0", + "@esbuild/android-arm": "0.27.0", + "@esbuild/android-arm64": "0.27.0", + "@esbuild/android-x64": "0.27.0", + "@esbuild/darwin-arm64": "0.27.0", + "@esbuild/darwin-x64": "0.27.0", + "@esbuild/freebsd-arm64": "0.27.0", + "@esbuild/freebsd-x64": "0.27.0", + "@esbuild/linux-arm": "0.27.0", + "@esbuild/linux-arm64": "0.27.0", + "@esbuild/linux-ia32": "0.27.0", + "@esbuild/linux-loong64": "0.27.0", + "@esbuild/linux-mips64el": "0.27.0", + "@esbuild/linux-ppc64": "0.27.0", + "@esbuild/linux-riscv64": "0.27.0", + "@esbuild/linux-s390x": "0.27.0", + "@esbuild/linux-x64": "0.27.0", + "@esbuild/netbsd-arm64": "0.27.0", + "@esbuild/netbsd-x64": "0.27.0", + "@esbuild/openbsd-arm64": "0.27.0", + "@esbuild/openbsd-x64": "0.27.0", + "@esbuild/openharmony-arm64": "0.27.0", + "@esbuild/sunos-x64": "0.27.0", + "@esbuild/win32-arm64": "0.27.0", + "@esbuild/win32-ia32": "0.27.0", + "@esbuild/win32-x64": "0.27.0" + } + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "license": "Apache-2.0", + "optional": true, + "peer": true, + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/type-fest": { + "version": "4.41.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.41.0.tgz", + "integrity": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "license": "Apache-2.0", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/ufo": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.6.1.tgz", + "integrity": "sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==", + "license": "MIT" + }, + "node_modules/uhyphen": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/uhyphen/-/uhyphen-0.2.0.tgz", + "integrity": "sha512-qz3o9CHXmJJPGBdqzab7qAYuW8kQGKNEuoHFYrBwV6hWIMcpAmxDLXojcHfFr9US1Pe6zUswEIJIbLI610fuqA==", + "license": "ISC" + }, + "node_modules/ultrahtml": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.6.0.tgz", + "integrity": "sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==", + "license": "MIT" + }, + "node_modules/uncrypto": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz", + "integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==", + "license": "MIT" + }, + "node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, + "node_modules/unicode-properties": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/unicode-properties/-/unicode-properties-1.4.1.tgz", + "integrity": "sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==", + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.0", + "unicode-trie": "^2.0.0" + } + }, + "node_modules/unicode-trie": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-trie/-/unicode-trie-2.0.0.tgz", + "integrity": "sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==", + "license": "MIT", + "dependencies": { + "pako": "^0.2.5", + "tiny-inflate": "^1.0.0" + } + }, + "node_modules/unified": { + "version": "11.0.5", + "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", + "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "bail": "^2.0.0", + "devlop": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unifont": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/unifont/-/unifont-0.6.0.tgz", + "integrity": "sha512-5Fx50fFQMQL5aeHyWnZX9122sSLckcDvcfFiBf3QYeHa7a1MKJooUy52b67moi2MJYkrfo/TWY+CoLdr/w0tTA==", + "license": "MIT", + "dependencies": { + "css-tree": "^3.0.0", + "ofetch": "^1.4.1", + "ohash": "^2.0.0" + } + }, + "node_modules/unist-util-find-after": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz", + "integrity": "sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-is": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", + "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-modify-children": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-modify-children/-/unist-util-modify-children-4.0.0.tgz", + "integrity": "sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "array-iterate": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position-from-estree": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-2.0.0.tgz", + "integrity": "sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-remove-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz", + "integrity": "sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-visit": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", + "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-children": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unist-util-visit-children/-/unist-util-visit-children-3.0.0.tgz", + "integrity": "sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz", + "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/universal-user-agent": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.3.tgz", + "integrity": "sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A==", + "dev": true, + "license": "ISC" + }, + "node_modules/unstorage": { + "version": "1.17.3", + "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.17.3.tgz", + "integrity": "sha512-i+JYyy0DoKmQ3FximTHbGadmIYb8JEpq7lxUjnjeB702bCPum0vzo6oy5Mfu0lpqISw7hCyMW2yj4nWC8bqJ3Q==", + "license": "MIT", + "dependencies": { + "anymatch": "^3.1.3", + "chokidar": "^4.0.3", + "destr": "^2.0.5", + "h3": "^1.15.4", + "lru-cache": "^10.4.3", + "node-fetch-native": "^1.6.7", + "ofetch": "^1.5.1", + "ufo": "^1.6.1" + }, + "peerDependencies": { + "@azure/app-configuration": "^1.8.0", + "@azure/cosmos": "^4.2.0", + "@azure/data-tables": "^13.3.0", + "@azure/identity": "^4.6.0", + "@azure/keyvault-secrets": "^4.9.0", + "@azure/storage-blob": "^12.26.0", + "@capacitor/preferences": "^6.0.3 || ^7.0.0", + "@deno/kv": ">=0.9.0", + "@netlify/blobs": "^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0", + "@planetscale/database": "^1.19.0", + "@upstash/redis": "^1.34.3", + "@vercel/blob": ">=0.27.1", + "@vercel/functions": "^2.2.12 || ^3.0.0", + "@vercel/kv": "^1.0.1", + "aws4fetch": "^1.0.20", + "db0": ">=0.2.1", + "idb-keyval": "^6.2.1", + "ioredis": "^5.4.2", + "uploadthing": "^7.4.4" + }, + "peerDependenciesMeta": { + "@azure/app-configuration": { + "optional": true + }, + "@azure/cosmos": { + "optional": true + }, + "@azure/data-tables": { + "optional": true + }, + "@azure/identity": { + "optional": true + }, + "@azure/keyvault-secrets": { + "optional": true + }, + "@azure/storage-blob": { + "optional": true + }, + "@capacitor/preferences": { + "optional": true + }, + "@deno/kv": { + "optional": true + }, + "@netlify/blobs": { + "optional": true + }, + "@planetscale/database": { + "optional": true + }, + "@upstash/redis": { + "optional": true + }, + "@vercel/blob": { + "optional": true + }, + "@vercel/functions": { + "optional": true + }, + "@vercel/kv": { + "optional": true + }, + "aws4fetch": { + "optional": true + }, + "db0": { + "optional": true + }, + "idb-keyval": { + "optional": true + }, + "ioredis": { + "optional": true + }, + "uploadthing": { + "optional": true + } + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" + }, + "node_modules/vfile": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-location": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz", + "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz", + "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vite": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/vite/-/vite-6.4.1.tgz", + "integrity": "sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==", + "license": "MIT", + "dependencies": { + "esbuild": "^0.25.0", + "fdir": "^6.4.4", + "picomatch": "^4.0.2", + "postcss": "^8.5.3", + "rollup": "^4.34.9", + "tinyglobby": "^0.2.13" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", + "jiti": ">=1.21.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vitefu": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.1.1.tgz", + "integrity": "sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==", + "license": "MIT", + "workspaces": [ + "tests/deps/*", + "tests/projects/*", + "tests/projects/workspace/packages/*" + ], + "peerDependencies": { + "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0" + }, + "peerDependenciesMeta": { + "vite": { + "optional": true + } + } + }, + "node_modules/web-namespaces": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", + "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/which-pm-runs": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.1.0.tgz", + "integrity": "sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/widest-line": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-5.0.0.tgz", + "integrity": "sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==", + "license": "MIT", + "dependencies": { + "string-width": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/wrap-ansi": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz", + "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC", + "optional": true, + "peer": true + }, + "node_modules/xxhash-wasm": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-1.1.0.tgz", + "integrity": "sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==", + "license": "MIT" + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.2.tgz", + "integrity": "sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==", + "license": "MIT", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yocto-spinner": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/yocto-spinner/-/yocto-spinner-0.2.3.tgz", + "integrity": "sha512-sqBChb33loEnkoXte1bLg45bEBsOP9N1kzQh5JZNKj/0rik4zAPTNSAVPj3uQAdc6slYJ0Ksc403G2XgxsJQFQ==", + "license": "MIT", + "dependencies": { + "yoctocolors": "^2.1.1" + }, + "engines": { + "node": ">=18.19" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yoctocolors": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.2.tgz", + "integrity": "sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "3.25.76", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", + "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-to-json-schema": { + "version": "3.25.0", + "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.0.tgz", + "integrity": "sha512-HvWtU2UG41LALjajJrML6uQejQhNJx+JBO9IflpSja4R03iNWfKXrj6W2h7ljuLyc1nKS+9yDyL/9tD1U/yBnQ==", + "license": "ISC", + "peerDependencies": { + "zod": "^3.25 || ^4" + } + }, + "node_modules/zod-to-ts": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/zod-to-ts/-/zod-to-ts-1.2.0.tgz", + "integrity": "sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==", + "peerDependencies": { + "typescript": "^4.9.4 || ^5.0.2", + "zod": "^3" + } + }, + "node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 00000000..bfa0cb6f --- /dev/null +++ b/package.json @@ -0,0 +1,32 @@ +{ + "name": "cppdoc", + "type": "module", + "version": "0.0.1", + "scripts": { + "dev": "astro dev", + "start": "astro dev", + "build": "astro build", + "preview": "astro preview", + "astro": "astro", + "format": "prettier --write .", + "migrate": "tsx ./migrate/migrate-bot.ts", + "cleanup-branches": "tsx ./migrate/cleanup-branches.ts", + "update-migrate-progress": "tsx ./migrate/update-migrate-progress.ts" + }, + "dependencies": { + "@astrojs/starlight": "^0.36.2", + "@lorenzo_lewis/starlight-utils": "0.3.2", + "@napi-rs/canvas": "^0.1.83", + "astro": "^5.6.1", + "linkedom": "^0.18.12", + "nanostores": "^1.1.0", + "sharp": "^0.34.2", + "starlight-auto-sidebar": "0.1.3", + "starlight-heading-badges": "0.6.1", + "tsx": "^4.21.0" + }, + "devDependencies": { + "@octokit/rest": "^21.0.2", + "prettier": "3.6.2" + } +} diff --git a/public/favicon.svg b/public/favicon.svg new file mode 100644 index 00000000..cba5ac14 --- /dev/null +++ b/public/favicon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/cpp-logo.svg b/src/assets/cpp-logo.svg new file mode 100644 index 00000000..4c4b9645 --- /dev/null +++ b/src/assets/cpp-logo.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + diff --git a/src/assets/examples/development/guide/cxx-mark-1.mdx b/src/assets/examples/development/guide/cxx-mark-1.mdx new file mode 100644 index 00000000..bbc0df82 --- /dev/null +++ b/src/assets/examples/development/guide/cxx-mark-1.mdx @@ -0,0 +1,8 @@ +```cpp cxx-mark +// syntax of for statement +/*$s:attr*//*$opt*/ for ( /*$s:init-statement*/ /*$s:condition*//*$opt*/ ; /*$s:expression*//*$opt*/ ) /*$s:statement*/ + +// exposition only alias template of conditionally const type +template< bool Const, class T > +using /*$e:maybe-const*/ = std::conditional_t; +``` \ No newline at end of file diff --git a/src/assets/examples/development/guide/decl-doc-1.mdx b/src/assets/examples/development/guide/decl-doc-1.mdx new file mode 100644 index 00000000..314a33f1 --- /dev/null +++ b/src/assets/examples/development/guide/decl-doc-1.mdx @@ -0,0 +1,11 @@ +import { Decl, DeclDoc } from "@components/decl-doc"; + + + + ```cpp + int main() { /* body */ } + ``` + + + A `main` function is the entry point of a program. + \ No newline at end of file diff --git a/src/assets/examples/development/guide/decl-doc-2.mdx b/src/assets/examples/development/guide/decl-doc-2.mdx new file mode 100644 index 00000000..9a27c5a6 --- /dev/null +++ b/src/assets/examples/development/guide/decl-doc-2.mdx @@ -0,0 +1,16 @@ +import { Decl, DeclDoc } from "@components/decl-doc"; + + + + ```cpp + int main() { /* body */ } + ``` + + + ```cpp + int main(int argc, char *argv[]) { /* body */ } + ``` + + + A `main` function is the entry point of a program. + \ No newline at end of file diff --git a/src/assets/examples/development/guide/decl-doc-3.mdx b/src/assets/examples/development/guide/decl-doc-3.mdx new file mode 100644 index 00000000..27843a3a --- /dev/null +++ b/src/assets/examples/development/guide/decl-doc-3.mdx @@ -0,0 +1,24 @@ +import { Decl, DeclDoc } from "@components/decl-doc"; +import { RevisionBlock } from "@components/revision"; + + + + + ```cpp + template + typename std::remove_reference::type&& move(T&& t) noexcept; + ``` + + + + + ```cpp + template + constexpr std::remove_reference_t&& move(T&& t) noexcept; + ``` + + + + `std::move` is used to _indicate_ that an object `t` may be "moved from", i. + e. allowing the efficient transfer of resources from `t` to another object. + \ No newline at end of file diff --git a/src/components/AutoCollapse.astro b/src/components/AutoCollapse.astro new file mode 100644 index 00000000..e87b40bb --- /dev/null +++ b/src/components/AutoCollapse.astro @@ -0,0 +1,92 @@ +--- +import { Icon } from "@astrojs/starlight/components"; + +interface Props { + maxHeight?: number; +} + +const maxHeight = Astro.props.maxHeight ?? 200; +const autoCollapseMaxHeight = maxHeight + "px"; +--- + +
+
+ +
+ +
+ + + + diff --git a/src/components/Behavior.astro b/src/components/Behavior.astro new file mode 100644 index 00000000..ef9e7dc1 --- /dev/null +++ b/src/components/Behavior.astro @@ -0,0 +1,49 @@ +--- +type BehaviorKind = + | "well-def" + | "impl-def" + | "unspec" + | "undef" + | "ill-formed" + | "ifndr"; + +interface Props { + kind: BehaviorKind; +} + +const { kind } = Astro.props; +--- + + + + + + diff --git a/src/components/DocLink.astro b/src/components/DocLink.astro new file mode 100644 index 00000000..29e316c1 --- /dev/null +++ b/src/components/DocLink.astro @@ -0,0 +1,32 @@ +--- +import { getLinkToKey } from "../lib/doc-index"; + +interface Props { + src: string; + section?: string; +} + +const { src, section } = Astro.props; +const rawLink = await getLinkToKey(src); + +const missing = rawLink === undefined; +const link = rawLink ? rawLink + (section ? "#" + section : "") : ""; +--- + +{ + missing ? ( + + + + ) : ( + + + + ) +} + + diff --git a/src/components/FlexTable.astro b/src/components/FlexTable.astro new file mode 100644 index 00000000..823ba019 --- /dev/null +++ b/src/components/FlexTable.astro @@ -0,0 +1,15 @@ +--- + +--- + +
+ +
+ + diff --git a/src/components/Missing.astro b/src/components/Missing.astro new file mode 100644 index 00000000..cc8a93c1 --- /dev/null +++ b/src/components/Missing.astro @@ -0,0 +1,12 @@ +--- +--- + + + + + + diff --git a/src/components/NamedReq.astro b/src/components/NamedReq.astro new file mode 100644 index 00000000..d728fab5 --- /dev/null +++ b/src/components/NamedReq.astro @@ -0,0 +1,37 @@ +--- +import DocLink from "./DocLink.astro"; + +interface Props { + name: string; + bold?: boolean; + displayName?: string; + nolink?: boolean; +} + +const { name, bold, displayName, nolink } = Astro.props; +const src = `/cpp/named_req/${name}`; + +const text = displayName ?? name; + +const As = nolink ? Fragment : DocLink; +const asProps = nolink ? {} : { src }; +--- + + + + {text} + + + + diff --git a/src/components/WG21PaperLink.astro b/src/components/WG21PaperLink.astro new file mode 100644 index 00000000..61881cad --- /dev/null +++ b/src/components/WG21PaperLink.astro @@ -0,0 +1,10 @@ +--- +interface Props { + paper: string; +} + +const { paper } = Astro.props; +const url = `https://wg21.link/${paper}`; +--- + +{paper} diff --git a/src/components/decl-doc/Decl.astro b/src/components/decl-doc/Decl.astro new file mode 100644 index 00000000..d20aff35 --- /dev/null +++ b/src/components/decl-doc/Decl.astro @@ -0,0 +1,34 @@ +--- + +--- + +
+ +
+ + + + diff --git a/src/components/decl-doc/DeclDoc.astro b/src/components/decl-doc/DeclDoc.astro new file mode 100644 index 00000000..9fe2e929 --- /dev/null +++ b/src/components/decl-doc/DeclDoc.astro @@ -0,0 +1,45 @@ +--- +import { autoRev, type AutorevProps } from "@components/revision/autorev"; +import AutoCollapse from "../AutoCollapse.astro"; + +interface Props extends AutorevProps { + id?: number; +} + +const { id } = Astro.props; +const hasId = id !== undefined; +--- + +
+ {hasId ? ( +
Declaration #{id}
+ ) : <>} + +
+ + + +
+
+ + diff --git a/src/components/decl-doc/index.ts b/src/components/decl-doc/index.ts new file mode 100644 index 00000000..50a9037b --- /dev/null +++ b/src/components/decl-doc/index.ts @@ -0,0 +1,2 @@ +export { default as Decl } from "./Decl.astro"; +export { default as DeclDoc } from "./DeclDoc.astro"; diff --git a/src/components/defect-report/DR.astro b/src/components/defect-report/DR.astro new file mode 100644 index 00000000..fb54f20d --- /dev/null +++ b/src/components/defect-report/DR.astro @@ -0,0 +1,48 @@ +--- +import type { DRKind, CxxRevision } from "@src/types"; + +interface Props { + kind: DRKind; + id: number; + std: CxxRevision; +} + +const { kind, id, std } = Astro.props; +const name = kind === "cwg" ? `CWG ${id}` : `LWG ${id}`; +const title = `${name} (${std})` +const url = + kind === "cwg" + ? `https://cplusplus.github.io/CWG/issues/${id}.html` + : `https://cplusplus.github.io/LWG/issues/${id}.html`; +--- + +
+ {title} + + + + + + + + + + + + + + + + + + + + +
Link{url}
Applied to{std}
Behavior as published
Correct behavior
+
+ + diff --git a/src/components/defect-report/DRList.astro b/src/components/defect-report/DRList.astro new file mode 100644 index 00000000..c1418214 --- /dev/null +++ b/src/components/defect-report/DRList.astro @@ -0,0 +1,13 @@ +--- +export { default as DR } from "./DR.astro"; +--- + +
+ +
+ + diff --git a/src/components/defect-report/index.ts b/src/components/defect-report/index.ts new file mode 100644 index 00000000..304e6add --- /dev/null +++ b/src/components/defect-report/index.ts @@ -0,0 +1,2 @@ +export { default as DR } from "./DR.astro"; +export { default as DRList } from "./DRList.astro"; diff --git a/src/components/desc-list/Desc.astro b/src/components/desc-list/Desc.astro new file mode 100644 index 00000000..3c29176c --- /dev/null +++ b/src/components/desc-list/Desc.astro @@ -0,0 +1,46 @@ +--- +import { autoRev, type AutorevProps } from "@components/revision"; + +interface Props extends AutorevProps { + kind?: string; +} + +const { kind } = Astro.props; +const hasKind = kind !== undefined; +--- + +
+
+ +
+
+ + {hasKind ?
({kind})
: <>} +
+
+ + diff --git a/src/components/desc-list/DescItem.astro b/src/components/desc-list/DescItem.astro new file mode 100644 index 00000000..8614c2bd --- /dev/null +++ b/src/components/desc-list/DescItem.astro @@ -0,0 +1,29 @@ +--- +import { autoRev, type AutorevProps } from "@components/revision"; + +interface Props extends AutorevProps {} +--- + +
+ +
+ + diff --git a/src/components/desc-list/DescList.astro b/src/components/desc-list/DescList.astro new file mode 100644 index 00000000..c7f34241 --- /dev/null +++ b/src/components/desc-list/DescList.astro @@ -0,0 +1,16 @@ +--- + +--- + +
+ +
+ + diff --git a/src/components/desc-list/index.ts b/src/components/desc-list/index.ts new file mode 100644 index 00000000..00caf392 --- /dev/null +++ b/src/components/desc-list/index.ts @@ -0,0 +1,3 @@ +export { default as Desc } from "./Desc.astro"; +export { default as DescItem } from "./DescItem.astro"; +export { default as DescList } from "./DescList.astro"; diff --git a/src/components/feature-test-macro/FeatureTestMacro.astro b/src/components/feature-test-macro/FeatureTestMacro.astro new file mode 100644 index 00000000..2b389762 --- /dev/null +++ b/src/components/feature-test-macro/FeatureTestMacro.astro @@ -0,0 +1,30 @@ +--- +interface Props { + name: string; +} + +const { name } = Astro.props; +--- + +
+
Feature test macro {name}
+ + + + + + + + + + + +
ValueSinceFeature
+
+ + diff --git a/src/components/feature-test-macro/FeatureTestMacroValue.astro b/src/components/feature-test-macro/FeatureTestMacroValue.astro new file mode 100644 index 00000000..5b63f8b5 --- /dev/null +++ b/src/components/feature-test-macro/FeatureTestMacroValue.astro @@ -0,0 +1,22 @@ +--- +import type { CxxRevision } from "@src/types"; + +interface Props { + value: string; + since: CxxRevision; +} + +const { value, since } = Astro.props; +--- + +
{value}{since}