DGtal  1.4.beta
DGtal::functors::Thresholder< T, false, false > Struct Template Reference

#include <DGtal/base/BasicFunctors.h>

Public Types

typedef T Input
 

Public Member Functions

 BOOST_CONCEPT_ASSERT ((boost::EqualityComparable< T >))
 
 BOOST_CONCEPT_ASSERT ((boost::LessThanComparable< T >))
 
 Thresholder (const Input &aT=0)
 
bool operator() (const Input &aI) const
 

Private Attributes

Input myT
 

Detailed Description

template<typename T>
struct DGtal::functors::Thresholder< T, false, false >

Definition at line 531 of file BasicFunctors.h.

Member Typedef Documentation

◆ Input

template<typename T >
typedef T DGtal::functors::Thresholder< T, false, false >::Input

Definition at line 538 of file BasicFunctors.h.

Constructor & Destructor Documentation

◆ Thresholder()

template<typename T >
DGtal::functors::Thresholder< T, false, false >::Thresholder ( const Input aT = 0)
inline

Definition at line 540 of file BasicFunctors.h.

Member Function Documentation

◆ BOOST_CONCEPT_ASSERT() [1/2]

template<typename T >
DGtal::functors::Thresholder< T, false, false >::BOOST_CONCEPT_ASSERT ( (boost::EqualityComparable< T >)  )

◆ BOOST_CONCEPT_ASSERT() [2/2]

template<typename T >
DGtal::functors::Thresholder< T, false, false >::BOOST_CONCEPT_ASSERT ( (boost::LessThanComparable< T >)  )

◆ operator()()

template<typename T >
bool DGtal::functors::Thresholder< T, false, false >::operator() ( const Input aI) const
inline

Definition at line 542 of file BasicFunctors.h.

542  {
543  std::greater<Input> c;
544  return c(aI,myT);
545  }

References DGtal::functors::Thresholder< T, isLower, isEqual >::myT.

Field Documentation

◆ myT

template<typename T >
Input DGtal::functors::Thresholder< T, false, false >::myT
private

Definition at line 548 of file BasicFunctors.h.


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