blob: 605d6a567259663ca660276052897b0c5aa86065 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef PYTHONIC_INCLUDE_CMATH_TAN_HPP
#define PYTHONIC_INCLUDE_CMATH_TAN_HPP
#include "pythonic/include/utils/functor.hpp"
#include "pythonic/include/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
DEFINE_FUNCTOR_2(tan, std::tan);
}
PYTHONIC_NS_END
#endif
|