OpenASIP  2.0
Public Member Functions | List of all members
TCETools::CaseInsensitiveCmp Struct Reference

#include <CIStringSet.hh>

Collaboration diagram for TCETools::CaseInsensitiveCmp:
Collaboration graph

Public Member Functions

bool operator() (const TCEString &s1, const TCEString &s2) const
 

Detailed Description

Definition at line 42 of file CIStringSet.hh.

Member Function Documentation

◆ operator()()

bool TCETools::CaseInsensitiveCmp::operator() ( const TCEString s1,
const TCEString s2 
) const
inline

Definition at line 43 of file CIStringSet.hh.

43  {
44  return strcmp(s1.lower().c_str(), s2.lower().c_str()) < 0;
45  }

References TCEString::lower().

Here is the call graph for this function:

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