This documentation is automatically generated by online-judge-tools/verification-helper
#include "data-structure/monoid/and.hpp"
#pragma once
template <typename T> struct MonoidAND {
using value_type = T;
inline static T op(const T &l, const T &r) { return (l & r); }
inline static T e() { return T(1); }
};
#line 2 "data-structure/monoid/and.hpp"
template <typename T> struct MonoidAND {
using value_type = T;
inline static T op(const T &l, const T &r) { return (l & r); }
inline static T e() { return T(1); }
};