OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ComputeAgg< RasterAggType::MIN > Struct Template Reference

#include <GeoRasterTableFunctions.hpp>

Public Member Functions

template<typename Z , typename Z2 >
void operator() (const Z2 &input_z, Z &output_z, const Z2 input_sentinel) const
 

Detailed Description

template<>
struct ComputeAgg< RasterAggType::MIN >

Definition at line 65 of file GeoRasterTableFunctions.hpp.

Member Function Documentation

template<typename Z , typename Z2 >
void ComputeAgg< RasterAggType::MIN >::operator() ( const Z2 &  input_z,
Z &  output_z,
const Z2  input_sentinel 
) const
inline

Definition at line 67 of file GeoRasterTableFunctions.hpp.

67  {
68  if (input_z != input_sentinel && input_z < output_z) {
69  output_z = input_z;
70  }
71  }

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