Lines Matching full:deprecated

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