kyopro-lib

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

View on GitHub

:x: Update monoid
(Mylib/AlgebraicStructure/Monoid/update.cpp)

Operations

Requirements

Notes

Problems

References

Verified with

Code

#pragma once
#include <optional>

namespace haar_lib {
  template <typename T>
  struct update_monoid {
    using value_type = std::optional<T>;
    value_type operator()() const { return std::nullopt; }
    value_type operator()(const value_type &a, const value_type &b) const { return (a ? a : b); }
  };
}  // namespace haar_lib
#line 2 "Mylib/AlgebraicStructure/Monoid/update.cpp"
#include <optional>

namespace haar_lib {
  template <typename T>
  struct update_monoid {
    using value_type = std::optional<T>;
    value_type operator()() const { return std::nullopt; }
    value_type operator()(const value_type &a, const value_type &b) const { return (a ? a : b); }
  };
}  // namespace haar_lib
Back to top page