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. };