This documentation is automatically generated by online-judge-tools/verification-helper
View the Project on GitHub kmyk/competitive-programming-library
#include "monoids/trivial.hpp"
#pragma once
struct trivial_monoid {
typedef struct {} value_type;
value_type unit() const { return (value_type) {}; }
value_type mult(value_type a, value_type b) const { return (value_type) {}; }
};
#line 2 "monoids/trivial.hpp"
struct trivial_monoid {
typedef struct {} value_type;
value_type unit() const { return (value_type) {}; }
value_type mult(value_type a, value_type b) const { return (value_type) {}; }
};