This documentation is automatically generated by online-judge-tools/verification-helper
#include "algebra/value_index.hpp"#pragma once
template <class T> struct ValueIndex {
T v;
int i;
friend std::ostream& operator<<(std::ostream& os, const ValueIndex& x) {
return os << x.v;
}
};#line 2 "algebra/value_index.hpp"
template <class T> struct ValueIndex {
T v;
int i;
friend std::ostream& operator<<(std::ostream& os, const ValueIndex& x) {
return os << x.v;
}
};