This documentation is automatically generated by competitive-verifier/competitive-verifier
#include "tools/rope.hpp"tools::rope<T> is an alias for __gnu_cxx::rope<T>.
#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>;
}