API Guides > ConceptRT 3.x
PredicateFalse< ParameterType > Class Template Reference

Predicate pattern that always return false. More...

Detailed Description

template<class ParameterType>
class ConceptRT::PredicateFalse< ParameterType >

Predicate pattern that always return false.

Template Parameters
ParameterTypeType of the value to evaluate.
+ Inheritance diagram for PredicateFalse< ParameterType >:

Public Member Methods

bool Evaluate (ParameterType value) const
 Evaluate the condition on the given value. More...
 
- Public Member Methods inherited from Predicate< ParameterType >
virtual ~Predicate ()
 Desctructor. More...
 
bool operator() (ParameterType value) const
 Operator of transcoding to bool. More...
 

Methods Documentation

bool Evaluate ( ParameterType  value) const
inlinevirtual

Evaluate the condition on the given value.

Parameters
valueThe value to evaluate.
Returns
True if conditions are met, False if not.

Implements Predicate< ParameterType >.