2014-01-17 00:58:45 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2019-01-19 18:56:40 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2014-01-17 00:58:45 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
#ifndef EMPLACEABLE_H
|
|
|
|
#define EMPLACEABLE_H
|
|
|
|
|
2018-11-20 01:40:16 +08:00
|
|
|
#include <functional>
|
2017-04-19 06:50:56 +08:00
|
|
|
#include "test_macros.h"
|
|
|
|
|
|
|
|
#if TEST_STD_VER >= 11
|
2010-05-12 03:42:16 +08:00
|
|
|
|
|
|
|
class Emplaceable
|
|
|
|
{
|
|
|
|
Emplaceable(const Emplaceable&);
|
|
|
|
Emplaceable& operator=(const Emplaceable&);
|
|
|
|
|
|
|
|
int int_;
|
|
|
|
double double_;
|
|
|
|
public:
|
|
|
|
Emplaceable() : int_(0), double_(0) {}
|
|
|
|
Emplaceable(int i, double d) : int_(i), double_(d) {}
|
|
|
|
Emplaceable(Emplaceable&& x)
|
|
|
|
: int_(x.int_), double_(x.double_)
|
|
|
|
{x.int_ = 0; x.double_ = 0;}
|
|
|
|
Emplaceable& operator=(Emplaceable&& x)
|
|
|
|
{int_ = x.int_; x.int_ = 0;
|
|
|
|
double_ = x.double_; x.double_ = 0;
|
|
|
|
return *this;}
|
|
|
|
|
|
|
|
bool operator==(const Emplaceable& x) const
|
|
|
|
{return int_ == x.int_ && double_ == x.double_;}
|
|
|
|
bool operator<(const Emplaceable& x) const
|
2011-05-14 07:59:50 +08:00
|
|
|
{return int_ < x.int_ || (int_ == x.int_ && double_ < x.double_);}
|
2010-05-12 03:42:16 +08:00
|
|
|
|
|
|
|
int get() const {return int_;}
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace std {
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct hash<Emplaceable>
|
|
|
|
{
|
2017-08-25 05:24:08 +08:00
|
|
|
typedef Emplaceable argument_type;
|
|
|
|
typedef std::size_t result_type;
|
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
std::size_t operator()(const Emplaceable& x) const {return x.get();}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-04-19 06:50:56 +08:00
|
|
|
#endif // TEST_STD_VER >= 11
|
2010-08-22 08:15:28 +08:00
|
|
|
#endif // EMPLACEABLE_H
|