ATLAS Offline Software
Loading...
Searching...
No Matches
ChainString.h File Reference
#include <string>
#include <vector>
#include <iostream>
Include dependency graph for ChainString.h:

Go to the source code of this file.

Classes

class  ChainString

Functions

bool operator== (const ChainString &cs, const ChainString &s)
bool operator== (const ChainString &cs, const std::string &s)
bool operator== (const std::string &s, const ChainString &cs)

Function Documentation

◆ operator==() [1/3]

bool operator== ( const ChainString & cs,
const ChainString & s )
inline

Definition at line 159 of file ChainString.h.

159 {
160 return cs.raw() == ChainString(s).raw();
161}
const std::string & raw() const
Definition ChainString.h:42

◆ operator==() [2/3]

bool operator== ( const ChainString & cs,
const std::string & s )
inline

Definition at line 163 of file ChainString.h.

163 {
164 return cs.raw() == ChainString(s).raw();
165}

◆ operator==() [3/3]

bool operator== ( const std::string & s,
const ChainString & cs )
inline

Definition at line 167 of file ChainString.h.

167 {
168 return cs.raw() == ChainString(s).raw();
169}