Lines Matching full:removed

190 class unary_negate // deprecated in C++17, removed in C++20
198 template <class Predicate> // deprecated in C++17, removed in C++20
202 class binary_negate // deprecated in C++17, removed in C++20
213 template <class Predicate> // deprecated in C++17, removed in C++20
261 class binder1st // deprecated in C++11, removed in C++17
275 …bind1st(const Operation& op, const T& x); // deprecated in C++11, removed in C++17
278 … // deprecated in C++11, removed in C++17
292 …bind2nd(const Operation& op, const T& x); // deprecated in C++11, removed in C++17
294 …class Result> // deprecated in C++11, removed in C++17
303 …tion<Arg,Result> ptr_fun(Result (*f)(Arg)); // deprecated in C++11, removed in C++17
305 … class Arg2, class Result> // deprecated in C++11, removed in C++17
314 …ction<Arg1,Arg2,Result> ptr_fun(Result (*f)(Arg1,Arg2)); // deprecated in C++11, removed in C++17
316 …ss T> // deprecated in C++11, removed in C++17
325 …blic binary_function<T*, A, S> // deprecated in C++11, removed in C++17
332 …ss T> mem_fun_t<S,T> mem_fun(S (T::*f)()); // deprecated in C++11, removed in C++17
333 …ss T, class A> mem_fun1_t<S,T,A> mem_fun(S (T::*f)(A)); // deprecated in C++11, removed in C++17
336 … public unary_function<T, S> // deprecated in C++11, removed in C++17
344 …: public binary_function<T, A, S> // deprecated in C++11, removed in C++17
352 … mem_fun_ref(S (T::*f)()); // deprecated in C++11, removed in C++17
354 … mem_fun_ref(S (T::*f)(A)); // deprecated in C++11, removed in C++17
357 … : public unary_function<const T*, S> // deprecated in C++11, removed in C++17
365 …t : public binary_function<const T*, A, S> // deprecated in C++11, removed in C++17
373 … mem_fun(S (T::*f)() const); // deprecated in C++11, removed in C++17
375 …A> mem_fun(S (T::*f)(A) const); // deprecated in C++11, removed in C++17
378 …ef_t : public unary_function<T, S> // deprecated in C++11, removed in C++17
386 …ref_t : public binary_function<T, A, S> // deprecated in C++11, removed in C++17
394 …,T> mem_fun_ref(S (T::*f)() const); // deprecated in C++11, removed in C++17
396 …S,T,A> mem_fun_ref(S (T::*f)(A) const); // deprecated in C++11, removed in C++17
425 function(allocator_arg_t, const Alloc&) noexcept; // removed in C++17
427 function(allocator_arg_t, const Alloc&, nullptr_t) noexcept; // removed in C++17
429 function(allocator_arg_t, const Alloc&, const function&); // removed in C++17
431 function(allocator_arg_t, const Alloc&, function&&); // removed in C++17
433 function(allocator_arg_t, const Alloc&, F); // removed in C++17
448 void assign(F&&, const Alloc&); // Removed in C++17
474 bool operator==(nullptr_t, const function<R(ArgTypes...)>&) noexcept; // removed in C++20
477 bool operator!=(const function<R(ArgTypes...)>&, nullptr_t) noexcept; // removed in C++20
480 bool operator!=(nullptr_t, const function<R(ArgTypes...)>&) noexcept; // removed in C++20