MCPcopy Create free account
hub / github.com/boostorg/parser / call

Method call

include/boost/parser/parser.hpp:2005–2019  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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>

Callers

nothing calls this directly

Calls 2

resolveFunction · 0.85
containsMethod · 0.80

Tested by

no test coverage detected