ArmNN
 22.05.01
minimum< T > Struct Template Reference

#include <Minimum.hpp>

Public Types

typedef T result_type
 
typedef T first_argument_type
 

Public Member Functions

operator() (const T &input1, const T &input2) const
 

Detailed Description

template<typename T>
struct armnn::minimum< T >

Definition at line 12 of file Minimum.hpp.

Member Typedef Documentation

◆ first_argument_type

Definition at line 15 of file Minimum.hpp.

◆ result_type

typedef T result_type

Definition at line 14 of file Minimum.hpp.

Member Function Documentation

◆ operator()()

T operator() ( const T &  input1,
const T &  input2 
) const
inline

Definition at line 18 of file Minimum.hpp.

19  {
20  return std::min(input1, input2);
21  }

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