MCPcopy Create free account
hub / github.com/Kitware/VTK / ReadLine

Function ReadLine

IO/Core/vtkResourceParser.h:433–436  ·  view source on GitHub ↗

* @brief Read an entire line from the input stream * * This function is similar to `std::getline` or `std::fgets`. * This function handles both `\r`, `\r\n` and `\n`. * The new line marker, either `\r`, `\r\n` or `\n`, will be discarded. i.e. won't be passed to * receiver nor kept in input stream. * * Return value will be false only if the stream does not contains any characte

Source from the content-addressed store, hash-verified

431 * This function never returns vtkParseResult::Ok, vtkParseResult::EndOfLine indicates success.
432 */
433 vtkParseResult ReadLine(const DataReceiverType& receiver, std::size_t limit = NoLimit)
434 {
435 return this->Context.ReadLine(receiver, limit);
436 }
437
438 /**
439 * @brief Read an entire line from the input stream

Callers

nothing calls this directly

Calls 3

ReadLineMethod · 0.45
clearMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected