MCPcopy Create free account
hub / github.com/HASwitchPlate/openHASP / read

Method read

lib/StringStream/StringStream.h:16–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14 return string.length() - position;
15 }
16 virtual int read()
17 {
18 return position < string.length() ? string[position++] : -1;
19 }
20 virtual int peek()
21 {
22 return position < string.length() ? string[position] : -1;

Callers 3

doRetrieveMethod · 0.45
doStoreMethod · 0.45
readCharMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected