OpenASIP  2.0
Public Member Functions | List of all members
TCEString::ICLess Struct Reference

#include <TCEString.hh>

Collaboration diagram for TCEString::ICLess:
Collaboration graph

Public Member Functions

bool operator() (const TCEString &lhs, const TCEString &rhs) const
 

Detailed Description

Definition at line 120 of file TCEString.hh.

Member Function Documentation

◆ operator()()

bool TCEString::ICLess::operator() ( const TCEString lhs,
const TCEString rhs 
) const

Implementation of lhs < rhs string comparison case insensitively.

Parameters
lhsThe left side string.
rhsThr rigth side string.
Returns
Boolean result from comparison.

Definition at line 296 of file TCEString.cc.

297  {
298  return lhs.lower() < rhs.lower();
299 }

References TCEString::lower().

Here is the call graph for this function:

The documentation for this struct was generated from the following files:
TCEString::lower
TCEString lower() const
Definition: TCEString.cc:78