MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / format_uint64

Function format_uint64

src/repr/src/strconv.rs:213–219  ·  view source on GitHub ↗

Writes an `u64` to `buf`.

(buf: &mut F, u: u64)

Source from the content-addressed store, hash-verified

211
212/// Writes an `u64` to `buf`.
213pub fn format_uint64<F>(buf: &mut F, u: u64) -> Nestable
214where
215 F: FormatBuffer,
216{
217 write!(buf, "{}", u);
218 Nestable::Yes
219}
220
221/// Parses an `mz_timestamp` from `s`.
222pub fn parse_mz_timestamp(s: &str) -> Result<crate::Timestamp, ParseError> {

Callers 3

stringify_datumFunction · 0.85
cast_uint64_to_stringFunction · 0.85
encode_textMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected