- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
template <class T> class return_1_t: public std::unary_function<T, T> {
public:
return_1_t(const T & Ret) : _ret(Ret) {}
T operator()(T Arg) const { return _ret; }
private:
T _ret;
};
template <class Arg1, class Arg2> class project1st: public std::binary_function<Arg1, Arg2, Arg1> {
public:
Arg1 operator()(const Arg1 & X, const Arg2 & Y) { return X; }
};
template <class Arg1, class Arg2> class project2nd: public std::binary_function<Arg1, Arg2, Arg2> {
public:
Arg2 operator()(const Arg1 & X, const Arg2 & Y) { return Y; }
};
template <class T> class identity: public std::unary_function<T, T> {
public:
T operator()(const T & Arg) const { return Arg; }
};
template <class To, class From> class static_cast_t: public std::unary_function<To, From> {
public:
To operator()(From obj) const { return static_cast<To>(obj); }
};
template <class T> class take_address: public std::unary_function<T&, T*> {
public:
result_type operator()(argument_type arg) const { return &(arg); }
};
template <class T> class take_const_address: public std::unary_function<const T&, const T*> {
public:
result_type operator()(argument_type arg) const { return &(arg); }
};
template <class T> class creator: public std::unary_function<void, T*> {
public:
result_type operator()(void) const { return new T(); }
};
template <class T, class Arg1> class creator_1_par: public std::unary_function<Arg1, T*> {
public:
result_type operator()(argument_type arg) const { return new T(arg); }
};
template <class T, class Arg1, class Arg2> class creator_2_par: public std::binary_function<Arg1, Arg2, T*> {
public:
result_type operator()(first_argument_type arg1, second_argument_type arg2) const { return new T(arg1, arg2); }
};
template <class T> class maker: public std::unary_function<void, T> {
public:
result_type operator()(void) const { return T(); }
};
template <class T, class Arg1> class maker_1_par: public std::unary_function<Arg1, T> {
public:
result_type operator()(argument_type arg) const { return T(arg); }
};
template <class T, class Arg1, class Arg2> class maker_2_par: public std::binary_function<Arg1, Arg2, T> {
Вот до чего доводит людей отсутствие частичного применения и лямбд.
laMer007 13.02.2014 12:49 # −7
Konardo 13.02.2014 13:01 # −8
1024-- 13.02.2014 18:10 # −2
Ещё древние говногости владели этим искусством. Не говоря уже о Заклинании Первонаха.
http://govnokod.ru/1092#comment8014
http://govnokod.ru/5140
Фу-фу, лошадка, ты всего лишь песчинка в этой Вселенной троллей.
bormand 13.02.2014 18:16 # −1
1024-- 13.02.2014 19:12 # −2
Кстати, почему в ранних постах в тексте комментария - ник и "плохо пропечатавшиеся" bb-коды? Когда-то тут не было пользователей, или базу криво сохранили/восстановили? (вопрос в основном для труъ олдфагов)
laMer007 13.02.2014 19:26 # 0
Stertor 13.02.2014 19:31 # +2
bormand 13.02.2014 19:33 # +1
Но ведь выше по треду нет твоих комментов. Т.е. ты этой фразой как бы намекаешь нам, что ты и конардо - один человек?
Vasiliy 13.02.2014 19:35 # +3
Stertor 13.02.2014 19:45 # +1
Stertor 13.02.2014 19:38 # +2
"Тут были все guest с возможностью ввести свой ник и по дефолту предлагался ник Говногость. После появления здесь зарегистрированных пользователей базу конвертнули и дали всем незарегистрированным пользователям ник guest"
Stertor said:
Суть ведь не меняется.
Да, я Дефекейт, Борманд, Олега Соколов, Horsy и Конардо-хуярдо в одном лице.
bormand 13.02.2014 19:41 # −1
Разносторонняя личность :)
А еще есть версия, что нас вообще нет, и это просто сон Страйко. И когда он проснется - говнокода не станет.
TarasB 13.02.2014 19:44 # +6
anonimb84a2f6fd141 13.02.2014 20:04 # −2
anonimb84a2f6fd141 13.02.2014 20:05 # −2
Vasiliy 13.02.2014 21:37 # +2
Konardo 13.02.2014 21:22 # −1
Anderson 14.02.2014 01:16 # −1
TarasB 14.02.2014 09:34 # +2
Konardo 14.02.2014 13:47 # 0
guest10 25.08.2021 03:20 # 0