|  | 
|  | CheckRange (const ElementType &_min, const ElementType &_max) | 
|  | 
| bool | operator() (const ElementType &v) const | 
|  | Return true if the value is smaller than min or larger than max. 
 | 
|  | 
| template<typename T> | 
| std::enable_if< VecTraits< T >::IsVec, bool >::type | operator() (const T &v) const | 
|  | Return true if any of the vector components are out of range. 
 | 
|  | 
| bool | operator() (const TreeIterT &iter) const | 
|  | Return true if the voxel at the iterator location is out of range. 
 | 
|  | 
| bool | operator() (const VoxelIterT &iter) const | 
|  | Return true if the tile at the iterator location is out of range. 
 | 
|  | 
| std::string | str () const | 
|  | Return a string describing a failed check. 
 | 
|  | 
template<typename GridT, 
bool MinInclusive = true, 
bool MaxInclusive = true, typename TreeIterT = typename GridT::ValueOnCIter>
struct openvdb::v12_0::tools::CheckRange< GridT, MinInclusive, MaxInclusive, TreeIterT >
Checks a value against a range.