Skip to content

Commit

Permalink
apply : オーバーロードに番号をつけた
Browse files Browse the repository at this point in the history
  • Loading branch information
faithandbrave committed Jan 12, 2023
1 parent b66903a commit a73f34d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions reference/tuple/apply.md
Expand Up @@ -7,10 +7,12 @@
```cpp
namespace std {
template<class F, class Tuple>
constexpr decltype(auto) apply(F&& f, Tuple&& t); // C++20まで
constexpr decltype(auto)
apply(F&& f, Tuple&& t); // (1) C++20

template<class F, class Tuple>
constexpr decltype(auto) apply(F&& f, Tuple&& t) noexcept(see below); // C++23から
constexpr decltype(auto)
apply(F&& f, Tuple&& t) noexcept(see below); // (1) C++23
}
```
Expand Down

0 comments on commit a73f34d

Please sign in to comment.