library

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub maspypy/library

:warning: template/actedmonoid.hpp

Code

// template/actedmonoid.hpp
struct ActedMonoid {
  using Monoid_X = ;
  using Monoid_A = ;
  using X = typename Monoid_X::value_type;
  using A = typename Monoid_A::value_type;
  static X act(const X &x, const A &a, const ll &size) { return; }
};
#line 1 "template/actedmonoid.hpp"
// template/actedmonoid.hpp
struct ActedMonoid {
  using Monoid_X = ;
  using Monoid_A = ;
  using X = typename Monoid_X::value_type;
  using A = typename Monoid_A::value_type;
  static X act(const X &x, const A &a, const ll &size) { return; }
};
Back to top page