MCPcopy Create free account
hub / github.com/SqliteModernCpp/sqlite_modern_cpp / operator>>

Method operator>>

hdr/sqlite_modern_cpp.h:264–269  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

262
263 template <typename Result>
264 typename std::enable_if<is_sqlite_value<Result>::value, void>::type operator>>(
265 Result& value) {
266 this->_extract_single_value([&value, this] {
267 get_col_from_db(*this, 0, value);
268 });
269 }
270
271 template<typename... Types>
272 void operator>>(std::tuple<Types...>&& values) {

Callers

nothing calls this directly

Calls 3

_extract_single_valueMethod · 0.95
_extractMethod · 0.95
get_col_from_dbFunction · 0.85

Tested by

no test coverage detected