Public Member Functions | List of all members
cet::detail::pow< 0u, T, 0u > Struct Template Reference

#include <pow.h>

Public Member Functions

constexpr T operator() (T x)
 

Detailed Description

template<class T>
struct cet::detail::pow< 0u, T, 0u >

Definition at line 100 of file pow.h.

Member Function Documentation

template<class T >
constexpr T cet::detail::pow< 0u, T, 0u >::operator() ( x)
inline

Definition at line 102 of file pow.h.

103  {
104  return (x != 0) ?
105  1 :
106  throw cet::exception("cet::pow") << "pow<0>(0) is indeterminate!";
107  }
list x
Definition: train.py:276
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33

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