bonsai
bonsai copied to clipboard
`operator>>` for strings in C++
In std::string there is an overload of operator>> which extracts a string from an input stream and writes the value to the given variable. This is effectively a write operation that is not being considered.
Reference: http://www.cplusplus.com/reference/string/string/operator%3E%3E/