maomao90's Library
A C++20 library for competitive programming.
Loading...
Searching...
No Matches
maomao90::Hashing Concept Reference

#include <hashing_custom_hash.hpp>

Concept definition

template<typename T>
concept maomao90::Hashing = requires(T v) {
requires internal::concepts::Iterable<decltype(v.get_v())>;
requires is_same_v<typename decltype(v.get_v())::value_type,
typename T::mint::umod_type>;
}
Definition hashing_custom_hash.hpp:12
Definition modint.hpp:23
Definition concepts.hpp:40