BDE 4.14.0 Production release
Loading...
Searching...
No Matches
bslstl::SetComparator< KEY, COMPARATOR > Class Template Reference

#include <bslstl_setcomparator.h>

Inheritance diagram for bslstl::SetComparator< KEY, COMPARATOR >:

Public Types

typedef TreeNode< KEY > NodeType
 This alias represents the type of node holding a KEY object.
 

Public Member Functions

 SetComparator ()
 
 SetComparator (const COMPARATOR &keyComparator)
 
 SetComparator (const SetComparator &)=default
 
 ~SapComparator ()=default
 Destroy this object.
 
template<class LOOKUP_KEY >
bool operator() (const LOOKUP_KEY &lhs, const bslalg::RbTreeNode &rhs)
 
template<class LOOKUP_KEY >
bool operator() (const bslalg::RbTreeNode &lhs, const LOOKUP_KEY &rhs)
 
void swap (SetComparator &other)
 
template<class LOOKUP_KEY >
bool operator() (const LOOKUP_KEY &lhs, const bslalg::RbTreeNode &rhs) const
 
template<class LOOKUP_KEY >
bool operator() (const bslalg::RbTreeNode &lhs, const LOOKUP_KEY &rhs) const
 
COMPARATOR & keyComparator ()
 
const COMPARATOR & keyComparator () const
 

Member Typedef Documentation

◆ NodeType

template<class KEY , class COMPARATOR >
typedef TreeNode<KEY> bslstl::SetComparator< KEY, COMPARATOR >::NodeType

Constructor & Destructor Documentation

◆ SetComparator() [1/3]

template<class KEY , class COMPARATOR >
bslstl::SetComparator< KEY, COMPARATOR >::SetComparator ( )
inline

Create a SetComparator object that will use a default constructed COMPARATOR.

◆ SetComparator() [2/3]

template<class KEY , class COMPARATOR >
bslstl::SetComparator< KEY, COMPARATOR >::SetComparator ( const COMPARATOR &  keyComparator)
inlineexplicit

Create a SetComparator object holding a copy of the specified keyComparator.

◆ SetComparator() [3/3]

template<class KEY , class COMPARATOR >
bslstl::SetComparator< KEY, COMPARATOR >::SetComparator ( const SetComparator< KEY, COMPARATOR > &  )
default

Create a SapComparator object with the COMPARATOR object of the specified original object.

◆ ~SapComparator()

template<class KEY , class COMPARATOR >
bslstl::SetComparator< KEY, COMPARATOR >::~SapComparator ( )
default

Member Function Documentation

◆ keyComparator() [1/2]

template<class KEY , class COMPARATOR >
COMPARATOR & bslstl::SetComparator< KEY, COMPARATOR >::keyComparator ( )
inline

Return a reference providing modifiable access to the function pointer or functor to which this comparator delegates comparison operations.

◆ keyComparator() [2/2]

template<class KEY , class COMPARATOR >
const COMPARATOR & bslstl::SetComparator< KEY, COMPARATOR >::keyComparator ( ) const
inline

Return a reference providing non-modifiable access to the function pointer or functor to which this comparator delegates comparison operations.

◆ operator()() [1/4]

template<class KEY , class COMPARATOR >
template<class LOOKUP_KEY >
bool bslstl::SetComparator< KEY, COMPARATOR >::operator() ( const bslalg::RbTreeNode lhs,
const LOOKUP_KEY &  rhs 
)
inline

Return true if value() of the specified lhs after being cast to NodeType is less than (ordered before, according to the comparator held by this object) the specified rhs, and false otherwise. The behavior is undefined unless rhs can be safely cast to NodeType.

◆ operator()() [2/4]

template<class KEY , class COMPARATOR >
template<class LOOKUP_KEY >
bool bslstl::SetComparator< KEY, COMPARATOR >::operator() ( const bslalg::RbTreeNode lhs,
const LOOKUP_KEY &  rhs 
) const
inline

Return true if value() of the specified lhs after being cast to NodeType is less than (ordered before, according to the comparator held by this object) the specified rhs, and false otherwise. The behavior is undefined unless rhs can be safely cast to NodeType.

◆ operator()() [3/4]

template<class KEY , class COMPARATOR >
template<class LOOKUP_KEY >
bool bslstl::SetComparator< KEY, COMPARATOR >::operator() ( const LOOKUP_KEY &  lhs,
const bslalg::RbTreeNode rhs 
)
inline

Return true if the specified lhs is less than (ordered before, according to the comparator held by this object) value() of the specified rhs after being cast to NodeType, and false otherwise. The behavior is undefined unless rhs can be safely cast to NodeType.

◆ operator()() [4/4]

template<class KEY , class COMPARATOR >
template<class LOOKUP_KEY >
bool bslstl::SetComparator< KEY, COMPARATOR >::operator() ( const LOOKUP_KEY &  lhs,
const bslalg::RbTreeNode rhs 
) const
inline

Return true if the specified lhs is less than (ordered before, according to the comparator held by this object) value() of the specified rhs after being cast to NodeType, and false otherwise. The behavior is undefined unless rhs can be safely cast to NodeType.

◆ swap()

template<class KEY , class COMPARATOR >
void bslstl::SetComparator< KEY, COMPARATOR >::swap ( SetComparator< KEY, COMPARATOR > &  other)
inline

Efficiently exchange the value of this object with the value of the specified other object. This method provides the no-throw exception-safety guarantee.


The documentation for this class was generated from the following file: