kyopro-lib

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

View on GitHub

:x: Maybe monoid
(Mylib/AlgebraicStructure/Monoid/maybe.cpp)

Operations

Requirements

Notes

Problems

References

Verified with

Code

#pragma once
#include <optional>

namespace haar_lib {
  template <typename Semigroup>
  struct maybe_monoid {
    using value_type = std::optional<typename Semigroup::value_type>;
    const static Semigroup S;

    value_type operator()() const { return std::nullopt; }
    value_type operator()(const value_type &a, const value_type &b) const {
      if (not a) return b;
      if (not b) return a;
      return {S(*a, *b)};
    }
  };
}  // namespace haar_lib
#line 2 "Mylib/AlgebraicStructure/Monoid/maybe.cpp"
#include <optional>

namespace haar_lib {
  template <typename Semigroup>
  struct maybe_monoid {
    using value_type = std::optional<typename Semigroup::value_type>;
    const static Semigroup S;

    value_type operator()() const { return std::nullopt; }
    value_type operator()(const value_type &a, const value_type &b) const {
      if (not a) return b;
      if (not b) return a;
      return {S(*a, *b)};
    }
  };
}  // namespace haar_lib
Back to top page