mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
add valarray
This commit is contained in:
parent
5ff6029d51
commit
1b8c051008
27 changed files with 3330 additions and 5 deletions
31
sprout/valarray.hpp
Normal file
31
sprout/valarray.hpp
Normal file
|
@ -0,0 +1,31 @@
|
|||
/*=============================================================================
|
||||
Copyright (c) 2011-2015 Bolero MURAKAMI
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue