Lines Matching refs:deprecated
176 class unary_negate // deprecated in C++17, removed in C++20
184 template <class Predicate> // deprecated in C++17, removed in C++20
188 class binary_negate // deprecated in C++17, removed in C++20
199 template <class Predicate> // deprecated in C++17, removed in C++20
236 class binder1st // deprecated in C++11, removed in C++17
250 binder1st<Operation> bind1st(const Operation& op, const T& x); // deprecated in C++11, removed in …
253 class binder2nd // deprecated in C++11, removed in C++17
267 binder2nd<Operation> bind2nd(const Operation& op, const T& x); // deprecated in C++11, removed in …
269 template <class Arg, class Result> // deprecated in C++11, removed in C++17
278 pointer_to_unary_function<Arg,Result> ptr_fun(Result (*f)(Arg)); // deprecated in C++11, remov…
280 template <class Arg1, class Arg2, class Result> // deprecated in C++11, removed in C++17
289 pointer_to_binary_function<Arg1,Arg2,Result> ptr_fun(Result (*f)(Arg1,Arg2)); // deprecated in…
291 template<class S, class T> // deprecated in C++11, removed in C++17
300 class mem_fun1_t : public binary_function<T*, A, S> // deprecated in C++11, removed in C++17
307 template<class S, class T> mem_fun_t<S,T> mem_fun(S (T::*f)()); // deprecated in C…
308 template<class S, class T, class A> mem_fun1_t<S,T,A> mem_fun(S (T::*f)(A)); // deprecated in C…
311 class mem_fun_ref_t : public unary_function<T, S> // deprecated in C++11, removed in C++17
319 class mem_fun1_ref_t : public binary_function<T, A, S> // deprecated in C++11, removed in C++17
326 …ss T> mem_fun_ref_t<S,T> mem_fun_ref(S (T::*f)()); // deprecated in C++11, remove…
327 …ss T, class A> mem_fun1_ref_t<S,T,A> mem_fun_ref(S (T::*f)(A)); // deprecated in C++11, remove…
330 class const_mem_fun_t : public unary_function<const T*, S> // deprecated in C++11, removed in …
338 class const_mem_fun1_t : public binary_function<const T*, A, S> // deprecated in C++11, remove…
345 …> const_mem_fun_t<S,T> mem_fun(S (T::*f)() const); // deprecated in C++11, remove…
346 …, class A> const_mem_fun1_t<S,T,A> mem_fun(S (T::*f)(A) const); // deprecated in C++11, remove…
349 class const_mem_fun_ref_t : public unary_function<T, S> // deprecated in C++11, removed in C++…
357 class const_mem_fun1_ref_t : public binary_function<T, A, S> // deprecated in C++11, removed i…
364 … const_mem_fun_ref_t<S,T> mem_fun_ref(S (T::*f)() const); // deprecated in C++11, remove…
365 …ss A> const_mem_fun1_ref_t<S,T,A> mem_fun_ref(S (T::*f)(A) const); // deprecated in C++11, remove…