MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / accept

Function accept

3rd/nlohmann_json/include/nlohmann/json.hpp:6989–6993  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6987 */
6988 template<typename InputType>
6989 static bool accept(InputType&& i,
6990 const bool ignore_comments = false)
6991 {
6992 return parser(detail::input_adapter(std::forward<InputType>(i)), nullptr, false, ignore_comments).accept(true);
6993 }
6994
6995 template<typename IteratorType>
6996 static bool accept(IteratorType first, IteratorType last,

Callers

nothing calls this directly

Calls 4

parserFunction · 0.70
input_adapterFunction · 0.50
acceptMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected