// This file is part of the mcl project. // Copyright (c) 2022 merryhime // SPDX-License-Identifier: MIT #pragma once namespace mcl { namespace detail { template concept SameHelper = std::is_same_v; } // namespace detail template concept SameAs = detail::SameHelper && detail::SameHelper; } // namespace mcl