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

Function Read

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

* @brief Read data from the input stream * * Read at most `size` bytes from input stream. Read less than `size` bytes if EOS is reached. * If less than `size` bytes are read, bytes outside of [0; returnSize[ are not modified. * It is the equivalent of the `Read` function of `vtkResourceStream`, * but it takes parser context into account. * * @return the number of read bytes

Source from the content-addressed store, hash-verified

245 * @return the number of read bytes
246 */
247 std::size_t Read(char* output, std::size_t size) { return this->Context.Read(output, size); }
248
249 /**
250 * @brief Reset parser internal state

Callers 7

RequestDataMethod · 0.70
ReadMethod · 0.70
RequestDataMethod · 0.70
ReadMethod · 0.70
TestArraySerializationFunction · 0.50
TestArrayDenormalizedFunction · 0.50
ReadMethod · 0.50

Calls 1

ReadMethod · 0.45

Tested by 2

TestArraySerializationFunction · 0.40
TestArrayDenormalizedFunction · 0.40