MCPcopy Create free account
hub / github.com/bytedance/dplm / underflow

Method underflow

analysis/TMscore.cpp:2031–2038  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2029 */
2030 template <typename C, typename T>
2031 typename basic_pstreambuf<C,T>::int_type
2032 basic_pstreambuf<C,T>::underflow()
2033 {
2034 if (this->gptr() < this->egptr() || fill_buffer())
2035 return traits_type::to_int_type(*this->gptr());
2036 else
2037 return traits_type::eof();
2038 }
2039
2040 /**
2041 * Attempts to make @a c available as the next character to be read by

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected