Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

numeric.hpp 657B

il y a 5 ans
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