Belle II Software development
Not Struct Reference

Functor to get the logical negation from an abitrary objects. More...

#include <Functional.h>

Public Member Functions

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

Detailed Description

Functor to get the logical negation from an abitrary objects.

Definition at line 363 of file Functional.h.

Member Function Documentation

◆ operator()()

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

Operator getting the logical negation of an abitrary object.

Definition at line 369 of file Functional.h.

370 {
371 return not t;
372 }

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