| 2003 | struct unequal_impl |
| 2004 | { |
| 2005 | static bool |
| 2006 | call(Context const & context, CharType c, Expected const & expected) |
| 2007 | { |
| 2008 | auto resolved = detail::resolve(context, expected); |
| 2009 | if constexpr (is_detected_v< |
| 2010 | eq_comparable, |
| 2011 | CharType, |
| 2012 | decltype(resolved)>) { |
| 2013 | auto const compare = |
| 2014 | detail::no_case_aware_compare<true>(context); |
| 2015 | return !compare(c, resolved); |
| 2016 | } else { |
| 2017 | return !resolved.contains(c, context); |
| 2018 | } |
| 2019 | } |
| 2020 | }; |
| 2021 | |
| 2022 | template<typename Context, typename CharType, typename Expected> |