MCPcopy Create free account
hub / github.com/catboost/catboost / WriteMicroSecondsToStream

Function WriteMicroSecondsToStream

util/datetime/base.cpp:90–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88 }
89
90 void WriteMicroSecondsToStream(IOutputStream& os, ui32 microSeconds) {
91 os << '.' << Pad<6>(microSeconds);
92 }
93
94 void WriteTmToStream(IOutputStream& os, const struct tm& theTm) {
95 os << Pad<4>(theTm.tm_year + 1900) << '-' << Pad<2>(theTm.tm_mon + 1) << '-' << Pad<2>(theTm.tm_mday) << 'T'

Callers 3

Out<TDuration>Function · 0.85
Out<TInstant>Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected