Hana 没有提供开箱即用的算法。如果它看起来是一个非常需要的功能,我可以很容易地添加这样的算法。它可能很适合作为 any 接口的一部分Iterable
,因为Iterable
s 是那些索引对其有意义的序列。
目前,我会采用与@cv_and_he 在评论中提出的非常接近的内容:
#include <boost/hana.hpp>
namespace hana = boost::hana;
template <typename Iterable, typename T>
constexpr auto index_of(Iterable const& iterable, T const& element) {
auto size = decltype(hana::size(iterable)){};
auto dropped = decltype(hana::size(
hana::drop_while(iterable, hana::not_equal.to(element))
)){};
return size - dropped;
}
constexpr auto tuple = hana::make_tuple(hana::int_c<3>, hana::type_c<bool>);
constexpr auto index = index_of(tuple, hana::type_c<bool>);
static_assert(index == hana::size_c<1>, "");
int main() { }
关于上述代码的几点说明。首先,在 Hana 中索引必须是非负的,所以使用无符号类型可能是个好主意。其次,我使用hana::drop_while
而不是hana::take_while
,因为前者只需要一个Iterable
,而后者需要一个Sequence
。虽然看起来我正在做更多的工作(计算大小两次),但事实证明,计算您将遇到的大多数序列的大小非常快,所以这并不是一个真正的问题。最后,我将 in 括hana::size(hana::drop_while(...))
起来decltype
,以确保在运行时不会进行任何工作。