MCPcopy Create free account
hub / github.com/Illumina/paragraph / containsNewLine

Method containsNewLine

external/jsoncpp/jsoncpp.cpp:298–303  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

296// ////////////////////////////////
297
298bool Reader::containsNewLine(Reader::Location begin, Reader::Location end) {
299 for (; begin < end; ++begin)
300 if (*begin == '\n' || *begin == '\r')
301 return true;
302 return false;
303}
304
305// Class Reader
306// //////////////////////////////////////////////////////////////////

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected