Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions source/utilities.tex
Original file line number Diff line number Diff line change
Expand Up @@ -13537,7 +13537,11 @@

// \ref{func.bind}, bind
template<class T> struct is_bind_expression;
template<class T>
inline constexpr bool @\libglobal{is_bind_expression_v}@ = is_bind_expression<T>::value;
template<class T> struct is_placeholder;
template<class T>
inline constexpr int @\libglobal{is_placeholder_v}@ = is_placeholder<T>::value;

template<class F, class... BoundArgs>
constexpr @\unspec@ bind(F&&, BoundArgs&&...);
Expand Down Expand Up @@ -13588,12 +13592,6 @@
template<class T>
struct hash;

// \ref{func.bind}, function object binders
template<class T>
inline constexpr bool @\libglobal{is_bind_expression_v}@ = is_bind_expression<T>::value;
template<class T>
inline constexpr int @\libglobal{is_placeholder_v}@ = is_placeholder<T>::value;

namespace ranges {
// \ref{range.cmp}, concept-constrained comparisons
struct equal_to;
Expand Down