kyopro-lib

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

View on GitHub

:warning: Bitor monoid
(Mylib/AlgebraicStructure/Monoid/bitor.cpp)

Operations

Requirements

Notes

Problems

References

Code

#pragma once

namespace haar_lib {
  template <typename T>
  struct bitor_monoid {
    using value_type = T;
    value_type operator()() const { return 0; }
    value_type operator()(value_type a, value_type b) const { return a | b; }
  };
}  // namespace haar_lib
#line 2 "Mylib/AlgebraicStructure/Monoid/bitor.cpp"

namespace haar_lib {
  template <typename T>
  struct bitor_monoid {
    using value_type = T;
    value_type operator()() const { return 0; }
    value_type operator()(value_type a, value_type b) const { return a | b; }
  };
}  // namespace haar_lib
Back to top page