You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
namespace std {
|
|
struct reverse_iterator {};
|
|
|
|
inline void
|
|
operator-(int __x, reverse_iterator __y) {}
|
|
|
|
template <typename _Key>
|
|
struct map {
|
|
typedef int iterator;
|
|
|
|
friend bool operator<(const map &, const map &);
|
|
};
|
|
} // namespace std
|