mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Corrected the documentation for InputStream::skipNextBytes()
This commit is contained in:
parent
027f329d43
commit
294a6a9ca3
1 changed files with 4 additions and 3 deletions
|
|
@ -243,9 +243,10 @@ public:
|
|||
|
||||
/** Reads and discards a number of bytes from the stream.
|
||||
|
||||
The base class implementation will try to do this efficiently by moving the
|
||||
position along by numBytesToSkip, but if this fails it will fall back to reading
|
||||
the data until the requisite number of bytes have been done.
|
||||
Some input streams might implement this more efficiently, but the base
|
||||
class will just keep reading data until the requisite number of bytes
|
||||
have been done. For large skips it may be quicker to call setPosition()
|
||||
with the required position.
|
||||
*/
|
||||
virtual void skipNextBytes (int64 numBytesToSkip);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue