ATLAS Offline Software
Loading...
Searching...
No Matches
Identifier.h File Reference
#include "Identifier/Identifier32.h"
#include <string>
#include <string_view>
#include <iosfwd>
#include "Identifier/Identifier.icc"
Include dependency graph for DetectorDescription/Identifier/Identifier/Identifier.h:

Go to the source code of this file.

Classes

class  Identifier
struct  Identifier::get_compact_func
 A get_compact functional for use in STL algorithms. More...
struct  std::hash< Identifier >

Namespaces

namespace  std
 STL namespace.

Functions

MsgStream & operator<< (MsgStream &f, const Identifier &id)
std::ostream & operator<< (std::ostream &os, const Identifier &id)

Function Documentation

◆ operator<<() [1/2]

MsgStream & operator<< ( MsgStream & f,
const Identifier & id )

Definition at line 55 of file Identifier.cxx.

55 {
56 streamIdentifier(f, id.get_compact());
57 return f;
58}
void streamIdentifier(Stream &os, unsigned long long id)

◆ operator<<() [2/2]

std::ostream & operator<< ( std::ostream & os,
const Identifier & id )

Definition at line 60 of file Identifier.cxx.

60 {
61 streamIdentifier(os, id.get_compact());
62 return os;
63}