General Purpose library for Freestanding C++ and POSIX systems
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
222 B

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