LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
std::less< art::InputTag > Class Template Reference

#include "InputTag.h"

Public Member Functions

bool operator() (art::InputTag const &lhs, art::InputTag const &rhs) const noexcept
 

Detailed Description

template<>
class std::less< art::InputTag >

Definition at line 63 of file InputTag.h.

Member Function Documentation

bool std::less< art::InputTag >::operator() ( art::InputTag const &  lhs,
art::InputTag const &  rhs 
) const
inlinenoexcept

Definition at line 66 of file InputTag.h.

68  {
69  auto const& a = std::tie(lhs.label(), lhs.instance(), lhs.process());
70  auto const& b = std::tie(rhs.label(), rhs.instance(), rhs.process());
71  return a < b;
72  }

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