MCPcopy Create free account
hub / github.com/Genivia/ugrep / BufferedInput

Method BufferedInput

include/reflex/input.h:954–959  ·  view source on GitHub ↗

Copy constructor (with intended "move semantics" as internal state is shared, should not rely on using the rhs after copying). Construct empty buffered input.

Source from the content-addressed store, hash-verified

952 /// Copy constructor (with intended "move semantics" as internal state is shared, should not rely on using the rhs after copying).
953 /// Construct empty buffered input.
954 BufferedInput()
955 :
956 Input(),
957 len_(0),
958 pos_(0)
959 { }
960 /// Copy constructor.
961 BufferedInput(const BufferedInput& input)
962 :

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected