2016-04-03 04:12:14 +00:00
|
|
|
/*=============================================================================
|
2019-01-07 08:47:17 +00:00
|
|
|
Copyright (c) 2011-2019 Bolero MURAKAMI
|
2016-04-03 04:12:14 +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_VALARRAY_HPP
|
|
|
|
#define SPROUT_VALARRAY_HPP
|
|
|
|
|
|
|
|
#include <sprout/valarray/valarray_fwd.hpp>
|
|
|
|
#include <sprout/valarray/valarray.hpp>
|
|
|
|
#include <sprout/valarray/slice_array.hpp>
|
|
|
|
#include <sprout/valarray/gslice_array.hpp>
|
|
|
|
#include <sprout/valarray/mask_array.hpp>
|
|
|
|
#include <sprout/valarray/indirect_array.hpp>
|
|
|
|
#include <sprout/valarray/arithmetic.hpp>
|
|
|
|
#include <sprout/valarray/comparison.hpp>
|
|
|
|
#include <sprout/valarray/logical.hpp>
|
|
|
|
#include <sprout/valarray/bitwise.hpp>
|
|
|
|
#include <sprout/valarray/trigonometric.hpp>
|
|
|
|
#include <sprout/valarray/hyperbolic.hpp>
|
|
|
|
#include <sprout/valarray/exponential.hpp>
|
|
|
|
#include <sprout/valarray/power.hpp>
|
|
|
|
#include <sprout/valarray/container.hpp>
|
|
|
|
#include <sprout/valarray/hash.hpp>
|
|
|
|
#include <sprout/valarray/tuple.hpp>
|
|
|
|
#include <sprout/valarray/make_valarray.hpp>
|
|
|
|
#include <sprout/valarray/type_traits.hpp>
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_VALARRAY_HPP
|