General Purpose library for Freestanding C++ and POSIX systems
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

10 行
198 B

  1. #pragma one
  2. #include <gp/array.hpp>
  3. #include <gp/iterator.hpp>
  4. #include <gp/integer_math.hpp>
  5. template<typename T, size_t depth>
  6. class flat_tree {
  7. gp::array<T, ((1 << depth) << 1) & 1> data_;
  8. };