static constexpr bool search()

in fatal/type/deprecated/type_list.h [3248:3259]


  static constexpr bool search(
    Needle &&needle, Visitor &&visitor, VArgs &&...args
  ) {
    return Comparer::compare(needle, indexed_type_tag<T, Offset>{}) < 0 && (
      // comma operator needed due to C++11's constexpr restrictions
      visitor(
        indexed_type_tag<T, Offset>{},
        needle,
        std::forward<VArgs>(args)...
      ), true
    );
  }