Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: base/test/move_only_int.h

Issue 2944523002: Improving flat containers interface. (Closed)
Patch Set: Other platforms compilation 2. Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/template_util_unittest.cc ('k') | cc/output/direct_renderer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BASE_CONTAINERS_CONTAINER_TEST_UTILS_H_ 5 #ifndef BASE_CONTAINERS_CONTAINER_TEST_UTILS_H_
6 #define BASE_CONTAINERS_CONTAINER_TEST_UTILS_H_ 6 #define BASE_CONTAINERS_CONTAINER_TEST_UTILS_H_
7 7
8 // This file contains some helper classes for testing conainer behavior. 8 // This file contains some helper classes for testing conainer behavior.
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 12 matching lines...) Expand all
23 } 23 }
24 24
25 friend bool operator==(const MoveOnlyInt& lhs, const MoveOnlyInt& rhs) { 25 friend bool operator==(const MoveOnlyInt& lhs, const MoveOnlyInt& rhs) {
26 return lhs.data_ == rhs.data_; 26 return lhs.data_ == rhs.data_;
27 } 27 }
28 28
29 friend bool operator!=(const MoveOnlyInt& lhs, const MoveOnlyInt& rhs) { 29 friend bool operator!=(const MoveOnlyInt& lhs, const MoveOnlyInt& rhs) {
30 return !operator==(lhs, rhs); 30 return !operator==(lhs, rhs);
31 } 31 }
32 32
33 friend bool operator<(const MoveOnlyInt& lhs, int rhs) {
34 return lhs.data_ < rhs;
35 }
36
37 friend bool operator<(int lhs, const MoveOnlyInt& rhs) {
38 return lhs < rhs.data_;
39 }
40
33 friend bool operator<(const MoveOnlyInt& lhs, const MoveOnlyInt& rhs) { 41 friend bool operator<(const MoveOnlyInt& lhs, const MoveOnlyInt& rhs) {
34 return lhs.data_ < rhs.data_; 42 return lhs.data_ < rhs.data_;
35 } 43 }
36 44
37 friend bool operator>(const MoveOnlyInt& lhs, const MoveOnlyInt& rhs) { 45 friend bool operator>(const MoveOnlyInt& lhs, const MoveOnlyInt& rhs) {
38 return rhs < lhs; 46 return rhs < lhs;
39 } 47 }
40 48
41 friend bool operator<=(const MoveOnlyInt& lhs, const MoveOnlyInt& rhs) { 49 friend bool operator<=(const MoveOnlyInt& lhs, const MoveOnlyInt& rhs) {
42 return !(rhs < lhs); 50 return !(rhs < lhs);
43 } 51 }
44 52
45 friend bool operator>=(const MoveOnlyInt& lhs, const MoveOnlyInt& rhs) { 53 friend bool operator>=(const MoveOnlyInt& lhs, const MoveOnlyInt& rhs) {
46 return !(lhs < rhs); 54 return !(lhs < rhs);
47 } 55 }
48 56
49 int data() const { return data_; } 57 int data() const { return data_; }
50 58
51 private: 59 private:
52 int data_; 60 int data_;
53 61
54 DISALLOW_COPY_AND_ASSIGN(MoveOnlyInt); 62 DISALLOW_COPY_AND_ASSIGN(MoveOnlyInt);
55 }; 63 };
56 64
57 } // namespace base 65 } // namespace base
58 66
59 #endif // BASE_CONTAINERS_CONTAINER_TEST_UTILS_H_ 67 #endif // BASE_CONTAINERS_CONTAINER_TEST_UTILS_H_
OLDNEW
« no previous file with comments | « base/template_util_unittest.cc ('k') | cc/output/direct_renderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698