This documentation is automatically generated by online-judge-tools/verification-helper
#include "library/math/xor-basis.hpp"
xor_basis<60> b; // [0, 2^60)
long long x, k;
b.insert(x);
long long mn = b.get_min();
long long mx = b.get_max();
long long kth = b.get_kth(k); // 如果超過範圍回傳 -1
bool has_x = b.contains(x);
xor_basis<60> c;
b.merge(c); // 把 c 的基底合併進 b