2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
6inline IdentifierHash::IdentifierHash (value_type value)
11IdentifierHash::operator = (value_type value){
17IdentifierHash::operator += (unsigned int value){
23IdentifierHash::operator -= (unsigned int value){
24 m_value = (m_value > value) ? m_value - value : 0;
28inline IdentifierHash::operator unsigned int () const{
33IdentifierHash::value() const{
38IdentifierHash::is_valid() const{
39 return (!(m_max_value == m_value));
43operator << (MsgStream& f, const IdentifierHash& id){
49operator << (std::ostream& os, const IdentifierHash& id){