|
template<typename T , typename CloneAllocator1 , typename CloneAllocator2 > |
bool | efl::eina::operator== (ptr_list< T, CloneAllocator1 > const &lhs, ptr_list< T, CloneAllocator2 > const &rhs) |
| Check if both lists are equal. More...
|
|
template<typename T , typename CloneAllocator1 , typename CloneAllocator2 > |
bool | efl::eina::operator!= (ptr_list< T, CloneAllocator1 > const &lhs, ptr_list< T, CloneAllocator2 > const &rhs) |
| Check if two lists are different. More...
|
|
template<typename T , typename CloneAllocator > |
void | efl::eina::swap (ptr_list< T, CloneAllocator > &lhs, ptr_list< T, CloneAllocator > &rhs) |
| Swap content between two lists. More...
|
|
template<typename T , typename CloneAllocator1 , typename CloneAllocator2 >
bool efl::eina::operator== |
( |
ptr_list< T, CloneAllocator1 > const & |
lhs, |
|
|
ptr_list< T, CloneAllocator2 > const & |
rhs |
|
) |
| |
template<typename T , typename CloneAllocator1 , typename CloneAllocator2 >
bool efl::eina::operator!= |
( |
ptr_list< T, CloneAllocator1 > const & |
lhs, |
|
|
ptr_list< T, CloneAllocator2 > const & |
rhs |
|
) |
| |
Check if two lists are different.
- Parameters
-
lhs | ptr_list at the left side of the expression. |
rhs | ptr_list at the right side of the expression. |
- Returns
true
if the lists are not equal , false
otherwise.
This operator returns the opposite of operator==(ptr_list<T, CloneAllocator1> const& lhs, ptr_list<T, CloneAllocator2> const& rhs).