/* This file is part of the mp project. * Copyright (c) 2017 MerryMage * SPDX-License-Identifier: 0BSD */ #pragma once #include namespace mp { /// Metafunction that returns the number of arguments it has template using argument_count = lift_value; /// Metafunction that returns the number of arguments it has template constexpr auto argument_count_v = sizeof...(Ts); } // namespace mp