mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
最初
This commit is contained in:
commit
b3bb8121e8
362 changed files with 16820 additions and 0 deletions
24
sprout/adapt/sscrisk/cel/array.hpp
Normal file
24
sprout/adapt/sscrisk/cel/array.hpp
Normal file
|
@ -0,0 +1,24 @@
|
|||
#ifndef SPROUT_ADAPT_SSCRISK_CEL_ARRAY_HPP
|
||||
#define SPROUT_ADAPT_SSCRISK_CEL_ARRAY_HPP
|
||||
|
||||
#include <cstddef>
|
||||
#include <sscrisk/cel/array.hpp>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/fixed_container/traits.hpp>
|
||||
|
||||
namespace sprout {
|
||||
//
|
||||
// rebind_fixed_size
|
||||
//
|
||||
template<typename T, std::size_t N>
|
||||
struct rebind_fixed_size<sscrisk::cel::array<T, N> > {
|
||||
public:
|
||||
template<typename sprout::fixed_container_traits<sscrisk::cel::array<T, N> >::size_type S>
|
||||
struct apply {
|
||||
public:
|
||||
typedef sscrisk::cel::array<T, S> type;
|
||||
};
|
||||
};
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_ADAPT_SSCRISK_CEL_ARRAY_HPP
|
Loading…
Add table
Add a link
Reference in a new issue