General Purpose library for Freestanding C++ and POSIX systems
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 line
222 B

4 年之前
4 年之前
4 年之前
  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. };