#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 auto std_(Args &&... args) -> decltype(functor::sqrt{}(var(std::forward(args)...))) { return functor::sqrt{}(var(std::forward(args)...)); } } PYTHONIC_NS_END #endif