libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::CompareCString Struct Reference

Comparison type for std::map and similar containers with plain char* as keys. More...

#include <string.hxx>

Public Member Functions

bool operator() (const char *a, const char *b) const
 

Detailed Description

Comparison type for std::map and similar containers with plain char* as keys.

Definition at line 34 of file string.hxx.

Member Function Documentation

◆ operator()()

bool cosmos::CompareCString::operator() ( const char * a,
const char * b ) const
inline

Definition at line 35 of file string.hxx.

35 {
36 return std::strcmp(a, b) < 0;
37 }

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