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 170 of file ChainString.h.

170 {
171 return cs.raw() == ChainString(s).raw();
172}
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 174 of file ChainString.h.

174 {
175 return cs.raw() == ChainString(s).raw();
176}

◆ operator==() [3/3]

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

Definition at line 178 of file ChainString.h.

178 {
179 return cs.raw() == ChainString(s).raw();
180}