Belle II Software development
Clear Struct Reference

Functor to get the .clear() from an abitrary objects. More...

#include <Functional.h>

Public Member Functions

 operator FunctorTag ()
 Marker function for the isFunctor test.
 
template<class T >
auto operator() (T &t) const -> decltype(t.clear())
 Operator getting the .clear() of an abitrary object.
 

Detailed Description

Functor to get the .clear() from an abitrary objects.

Definition at line 338 of file Functional.h.

Member Function Documentation

◆ operator()()

auto operator() ( T &  t) const -> decltype(t.clear())
inline

Operator getting the .clear() of an abitrary object.

Definition at line 344 of file Functional.h.

345 {
346 return t.clear();
347 }

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