%PDF- %PDF-
| Direktori : /usr/lib/python3/dist-packages/pythran/pythonic/numpy/ |
| Current File : //usr/lib/python3/dist-packages/pythran/pythonic/numpy/std_.hpp |
#ifndef PYTHONIC_NUMPY_STD_HPP
#define PYTHONIC_NUMPY_STD_HPP
#include "pythonic/include/numpy/std_.hpp"
#include "pythonic/numpy/var.hpp"
#include "pythonic/numpy/sqrt.hpp"
PYTHONIC_NS_BEGIN
namespace numpy
{
template <class... Args>
auto std_(Args &&... args)
-> decltype(functor::sqrt{}(var(std::forward<Args>(args)...)))
{
return functor::sqrt{}(var(std::forward<Args>(args)...));
}
}
PYTHONIC_NS_END
#endif