-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0182b59
commit 4ff0911
Showing
35 changed files
with
186 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
{ | ||
"config": [ | ||
{ | ||
"name": "Linux GCC 13", | ||
"compiler": "gcc", | ||
"version": "13", | ||
"os": "ubuntu-22.04" | ||
}, | ||
{ | ||
"name": "Linux Clang 15", | ||
"compiler": "clang", | ||
"version": "15", | ||
"os": "ubuntu-22.04" | ||
}, | ||
{ | ||
"name": "macOS apple-clang 15.1.0", | ||
"compiler": "apple-clang", | ||
"version": "15.1.0", | ||
"os": "macos-13" | ||
}, | ||
{ | ||
"name": "Windows VS2022", | ||
"compiler": "Visual Studio", | ||
"version": "17", | ||
"os": "windows-2022", | ||
"cmake_toolset": "Visual Studio 17 2022" | ||
}, | ||
{ | ||
"name": "Linux Webassembly", | ||
"compiler": "emscripten", | ||
"os": "ubuntu-22.04" | ||
} | ||
] | ||
"config": [ | ||
{ | ||
"name": "Linux GCC 14", | ||
"compiler": "gcc", | ||
"version": "14", | ||
"os": "ubuntu-22.04" | ||
}, | ||
{ | ||
"name": "Linux Clang 15", | ||
"compiler": "clang", | ||
"version": "15", | ||
"os": "ubuntu-22.04" | ||
}, | ||
{ | ||
"name": "macOS apple-clang 15.1.0", | ||
"compiler": "apple-clang", | ||
"version": "15.1.0", | ||
"os": "macos-13" | ||
}, | ||
{ | ||
"name": "Windows VS2022", | ||
"compiler": "Visual Studio", | ||
"version": "17", | ||
"os": "windows-2022", | ||
"cmake_toolset": "Visual Studio 17 2022" | ||
}, | ||
{ | ||
"name": "Linux Webassembly", | ||
"compiler": "emscripten", | ||
"os": "ubuntu-22.04" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...e2C20T3E3A3Atype3E2C20void3E3A3Atype3E.md → ...ate3CT3E3A3Atype3E2C20void3E3A3Atype3E.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
--- | ||
layout: method | ||
title: future<T, typename enable_if<smart_is_copy_constructible_v<typename conditional<std::is_void_v<T>, monostate, T>::type>, void>::type> | ||
title: future<T, typename enable_if<smart_is_copy_constructible_v<typename void_to_monostate<T>::type>, void>::type> | ||
hyde: | ||
owner: __OPTIONAL__ | ||
owner: sean-parent | ||
brief: __OPTIONAL__ | ||
tags: | ||
- method | ||
defined_in_file: stlab/concurrency/future.hpp | ||
is_ctor: true | ||
overloads: | ||
future<T, typename enable_if<smart_is_copy_constructible_v<typename conditional<std::is_void_v<T>, monostate, T>::type>, void>::type>(): | ||
future<T, typename enable_if<smart_is_copy_constructible_v<typename void_to_monostate<T>::type>, void>::type>(): | ||
annotation: | ||
- defaulted | ||
description: __OPTIONAL__ | ||
signature_with_names: future<T, typename enable_if<smart_is_copy_constructible_v<typename conditional<std::is_void_v<T>, monostate, T>::type>, void>::type>() | ||
signature_with_names: future<T, typename enable_if<smart_is_copy_constructible_v<typename void_to_monostate<T>::type>, void>::type>() | ||
--- |
Oops, something went wrong.