proconlib

This documentation is automatically generated by competitive-verifier/competitive-verifier

View the Project on GitHub anqooqie/proconlib

:warning: Alias for __gnu_cxx::rope (tools/rope.hpp)

tools::rope<T> is an alias for __gnu_cxx::rope<T>.

Constraints

Time Complexity

License

Author

Code

#ifndef TOOLS_ROPE_HPP
#define TOOLS_ROPE_HPP

#include <ext/rope>

namespace tools {
  template <typename T>
  using rope = __gnu_cxx::rope<T>;
}

#endif
#line 1 "tools/rope.hpp"



#include <ext/rope>

namespace tools {
  template <typename T>
  using rope = __gnu_cxx::rope<T>;
}


Back to top page