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 binder1st<Operation> bind1st(const Operation& op, const T& x); // deprecated in C++11, removed in C++17
278 class binder2nd // deprecated in C++11, removed in C++17
292 binder2nd<Operation> bind2nd(const Operation& op, const T& x); // deprecated in C++11, removed in C++17
294 template <class Arg, class Result> // deprecated in C++11, removed in C++17
303 pointer_to_unary_function<Arg,Result> ptr_fun(Result (*f)(Arg)); // deprecated in C++11, removed in C++17
305 template <class Arg1, class Arg2, class Result> // deprecated in C++11, removed in C++17
314 pointer_to_binary_function<Arg1,Arg2,Result> ptr_fun(Result (*f)(Arg1,Arg2)); // deprecated in C++11, removed in C++17
316 template<class S, class T> // deprecated in C++11, removed in C++17
325 class mem_fun1_t : public binary_function<T*, A, S> // deprecated in C++11, removed in C++17
332 template<class S, class T> mem_fun_t<S,T> mem_fun(S (T::*f)()); // deprecated in C++11, removed in C++17
333 template<class S, class T, class A> mem_fun1_t<S,T,A> mem_fun(S (T::*f)(A)); // deprecated in C++11, removed in C++17
336 class mem_fun_ref_t : public unary_function<T, S> // deprecated in C++11, removed in C++17
344 class mem_fun1_ref_t : public binary_function<T, A, S> // deprecated in C++11, removed in C++17
352 mem_fun_ref_t<S,T> mem_fun_ref(S (T::*f)()); // deprecated in C++11, removed in C++17
354 mem_fun1_ref_t<S,T,A> mem_fun_ref(S (T::*f)(A)); // deprecated in C++11, removed in C++17
357 class const_mem_fun_t : public unary_function<const T*, S> // deprecated in C++11, removed in C++17
365 class const_mem_fun1_t : public binary_function<const T*, A, S> // deprecated in C++11, removed in C++17
373 const_mem_fun_t<S,T> mem_fun(S (T::*f)() const); // deprecated in C++11, removed in C++17
375 const_mem_fun1_t<S,T,A> mem_fun(S (T::*f)(A) const); // deprecated in C++11, removed in C++17
378 class const_mem_fun_ref_t : public unary_function<T, S> // deprecated in C++11, removed in C++17
386 class const_mem_fun1_ref_t : public binary_function<T, A, S> // deprecated in C++11, removed in C++17
394 const_mem_fun_ref_t<S,T> mem_fun_ref(S (T::*f)() const); // deprecated in C++11, removed in C++17
396 const_mem_fun1_ref_t<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