#ifndef FUZZTEST_FUZZTEST_INTERNAL_DOMAINS_ELEMENT_OF_IMPL_H_
#define FUZZTEST_FUZZTEST_INTERNAL_DOMAINS_ELEMENT_OF_IMPL_H_
#include <cstddef>
#include <optional>
#include <string>
#include <string_view>
#include <vector>
#include "absl/random/bit_gen_ref.h"
#include "absl/random/distributions.h"
#include "absl/time/time.h"
#include "./fuzztest/internal/domains/domain_base.h"
#include "./fuzztest/internal/logging.h"
#include "./fuzztest/internal/serialization.h"
#include "./fuzztest/internal/type_support.h"
namespace fuzztest::internal {
enum class ElementOfImplCorpusType : size_t;
template <typename T>
class ElementOfImpl
: public domain_implementor::DomainBase<ElementOfImpl<T>, T,
ElementOfImplCorpusType> { … };
}
#endif