Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

5 лет назад
1234567891011121314151617181920
  1. ///////////////////////////////////////////////////////////////////////////////
  2. /// \file numeric.hpp
  3. /// Contains range-based versions of the numeric algorithms
  4. //
  5. // Copyright Eric Niebler 2014-present
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See
  8. // accompanying file LICENSE_1_0.txt or copy at
  9. // http://www.boost.org/LICENSE_1_0.txt)
  10. #ifndef RANGES_V3_NUMERIC_HPP
  11. #define RANGES_V3_NUMERIC_HPP
  12. #include <range/v3/numeric/accumulate.hpp>
  13. #include <range/v3/numeric/adjacent_difference.hpp>
  14. #include <range/v3/numeric/inner_product.hpp>
  15. #include <range/v3/numeric/iota.hpp>
  16. #include <range/v3/numeric/partial_sum.hpp>
  17. #endif