MCPcopy Create free account
hub / github.com/ByConity/ByConity / readStringUntilEOFInto

Function readStringUntilEOFInto

src/IO/ReadHelpers.cpp:303–310  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

301
302template <typename Vector>
303void readStringUntilEOFInto(Vector & s, ReadBuffer & buf)
304{
305 while (!buf.eof())
306 {
307 appendToStringOrVector(s, buf, buf.buffer().end());
308 buf.position() = buf.buffer().end();
309 }
310}
311
312UInt128 stringToUUID(const String & str)
313{

Callers 1

readStringUntilEOFFunction · 0.85

Calls 5

appendToStringOrVectorFunction · 0.85
bufferMethod · 0.80
eofMethod · 0.45
endMethod · 0.45
positionMethod · 0.45

Tested by

no test coverage detected