Panda3D
panda
src
putil
firstOfPairCompare.I
Go to the documentation of this file.
1
/**
2
* PANDA 3D SOFTWARE
3
* Copyright (c) Carnegie Mellon University. All rights reserved.
4
*
5
* All use of this software is subject to the terms of the revised BSD
6
* license. You should have received a copy of this license along
7
* with this source code in a file named "LICENSE."
8
*
9
* @file firstOfPairCompare.I
10
* @author drose
11
* @date 2000-04-04
12
*/
13
14
/**
15
*
16
*/
17
template
<
class
ObjectType,
class
Compare>
18
INLINE
FirstOfPairCompare<ObjectType, Compare>::
19
FirstOfPairCompare
(Compare compare) : _compare(compare) {
20
}
21
22
/**
23
* Returns true if a sorts before b, false otherwise.
24
*/
25
template
<
class
ObjectType,
class
Compare>
26
INLINE
bool
FirstOfPairCompare<ObjectType, Compare>::
27
operator ()
(
const
ObjectType &a,
const
ObjectType &b)
const
{
28
return
_compare(a.first, b.first);
29
}
FirstOfPairCompare
An STL function object class, this is intended to be used on any ordered collection of pairs of objec...
Definition:
firstOfPairCompare.h:25
FirstOfPairCompare::operator()
bool operator()(const ObjectType &a, const ObjectType &b) const
Returns true if a sorts before b, false otherwise.
Definition:
firstOfPairCompare.I:27
Generated on Sat Jan 11 2020 15:15:32 for Panda3D by
1.8.17