pair.hh

来自「Click is a modular router toolkit. To us」· HH 代码 · 共 88 行

HH
88
字号
// -*- c-basic-offset: 4 -*-#ifndef CLICK_PAIR_HH#define CLICK_PAIR_HH#include <click/hashcode.hh>CLICK_DECLStemplate <class T, class U>struct Pair {    typedef T first_type;    typedef U second_type;    typedef T key_type;    typedef const T &key_const_reference;    T first;    U second;    inline Pair()	: first(), second() {    }    inline Pair(const T &t, const U &u)	: first(t), second(u) {    }    inline Pair(const Pair<T, U> &p)	: first(p.first), second(p.second) {    }    template <typename V, typename W>    inline Pair(const Pair<V, W> &p)	: first(p.first), second(p.second) {    }    typedef hashcode_t (Pair<T, U>::*unspecified_bool_type)() const;    inline operator unspecified_bool_type() const {	return first || second ? &Pair<T, U>::hashcode : 0;    }    inline const T &hashkey() const {	return first;    }    inline hashcode_t hashcode() const;    template <typename V, typename W>    Pair<T, U> &operator=(const Pair<V, W> &p) {	first = p.first;	second = p.second;	return *this;    }};template <class T, class U>inline bool operator==(const Pair<T, U> &a, const Pair<T, U> &b){    return a.first == b.first && a.second == b.second;}template <class T, class U>inline bool operator!=(const Pair<T, U> &a, const Pair<T, U> &b){    return a.first != b.first || a.second != b.second;}template <class T, class U>inline bool operator<(const Pair<T, U> &a, const Pair<T, U> &b){    return a.first < b.first	|| (!(b.first < a.first) && a.second < b.second);}template <class T, class U>inline hashcode_t Pair<T, U>::hashcode() const{    return (CLICK_NAME(hashcode)(first) << 7) ^ CLICK_NAME(hashcode)(second);}template <class T, class U>inline Pair<T, U> make_pair(T t, U u){    return Pair<T, U>(t, u);}CLICK_ENDDECLS#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?