Sprout/sprout/range/numeric/dft/cxx14/square.hpp

40 lines
1.4 KiB
C++
Raw Normal View History

2014-04-21 14:30:43 +00:00
/*=============================================================================
2015-01-10 10:13:57 +00:00
Copyright (c) 2011-2015 Bolero MURAKAMI
2014-04-21 14:30:43 +00:00
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#ifndef SPROUT_RANGE_NUMERIC_DFT_CXX14_SQUARE_HPP
#define SPROUT_RANGE_NUMERIC_DFT_CXX14_SQUARE_HPP
#include <sprout/config.hpp>
#include <sprout/container/traits.hpp>
#include <sprout/container/functions.hpp>
#include <sprout/utility/forward.hpp>
#include <sprout/numeric/dft/cxx14/square.hpp>
namespace sprout {
namespace range {
//
// square
//
template<typename ForwardRange>
inline SPROUT_CXX14_CONSTEXPR void
square(
ForwardRange&& rng,
typename sprout::container_traits<ForwardRange>::value_type const& frequency = 1,
typename sprout::container_traits<ForwardRange>::value_type const& amplitude = 1,
typename sprout::container_traits<ForwardRange>::value_type const& phase = 0
)
{
sprout::square(
sprout::begin(SPROUT_FORWARD(ForwardRange, rng)), sprout::end(SPROUT_FORWARD(ForwardRange, rng)),
frequency, amplitude, phase
);
}
} // namespace range
} // namespace sprout
#endif // #ifndef SPROUT_RANGE_NUMERIC_DFT_CXX14_SQUARE_HPP