No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

numeric.hpp 657B

hace 5 años
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