Home
last modified time | relevance | path

Searched refs:itoa (Results 1 – 25 of 6034) sorted by relevance

12345678910>>...242

/dports/databases/mariadb105-client/mariadb-10.5.15/storage/columnstore/columnstore/oam/oamcpp/
H A Dliboamcpp.cpp243 …string ModuleIpAddr = MODULE_IP_ADDR + itoa(moduleID) + "-" + itoa(nicID) + "-" + itoa(moduleTypeI… in getSystemConfig()
252 …string ModuleHostName = MODULE_SERVER_NAME + itoa(moduleID) + "-" + itoa(nicID) + "-" + itoa(modul… in getSystemConfig()
283 … string ModuleDiskMonitorFS = MODULE_DISK_MONITOR_FS + itoa(fsID) + "-" + itoa(moduleTypeID); in getSystemConfig()
300 … string ModuleDBRootCount = MODULE_DBROOT_COUNT + itoa(moduleID) + "-" + itoa(moduleTypeID); in getSystemConfig()
322 …string DBRootID = MODULE_DBROOT_ID + itoa(moduleID) + "-" + itoa(dbrootID) + "-" + itoa(moduleType… in getSystemConfig()
393 … string ModuleDisableState = MODULE_DISABLE_STATE + itoa(moduleID) + "-" + itoa(moduleTypeID); in getSystemConfig()
400 … string ModuleDBRootCount = MODULE_DBROOT_COUNT + itoa(moduleID) + "-" + itoa(moduleTypeID); in getSystemConfig()
415 …string ModuleIpAddr = MODULE_IP_ADDR + itoa(moduleID) + "-" + itoa(nicID) + "-" + itoa(moduleTypeI… in getSystemConfig()
422 …string ModuleHostName = MODULE_SERVER_NAME + itoa(moduleID) + "-" + itoa(nicID) + "-" + itoa(modul… in getSystemConfig()
437 …string ModuleDBRootID = MODULE_DBROOT_ID + itoa(moduleID) + "-" + itoa(dbrootID) + "-" + itoa(modu… in getSystemConfig()
[all …]
/dports/databases/mariadb105-server/mariadb-10.5.15/storage/columnstore/columnstore/oam/oamcpp/
H A Dliboamcpp.cpp243 …string ModuleIpAddr = MODULE_IP_ADDR + itoa(moduleID) + "-" + itoa(nicID) + "-" + itoa(moduleTypeI… in getSystemConfig()
252 …string ModuleHostName = MODULE_SERVER_NAME + itoa(moduleID) + "-" + itoa(nicID) + "-" + itoa(modul… in getSystemConfig()
283 … string ModuleDiskMonitorFS = MODULE_DISK_MONITOR_FS + itoa(fsID) + "-" + itoa(moduleTypeID); in getSystemConfig()
300 … string ModuleDBRootCount = MODULE_DBROOT_COUNT + itoa(moduleID) + "-" + itoa(moduleTypeID); in getSystemConfig()
322 …string DBRootID = MODULE_DBROOT_ID + itoa(moduleID) + "-" + itoa(dbrootID) + "-" + itoa(moduleType… in getSystemConfig()
393 … string ModuleDisableState = MODULE_DISABLE_STATE + itoa(moduleID) + "-" + itoa(moduleTypeID); in getSystemConfig()
400 … string ModuleDBRootCount = MODULE_DBROOT_COUNT + itoa(moduleID) + "-" + itoa(moduleTypeID); in getSystemConfig()
415 …string ModuleIpAddr = MODULE_IP_ADDR + itoa(moduleID) + "-" + itoa(nicID) + "-" + itoa(moduleTypeI… in getSystemConfig()
422 …string ModuleHostName = MODULE_SERVER_NAME + itoa(moduleID) + "-" + itoa(nicID) + "-" + itoa(modul… in getSystemConfig()
437 …string ModuleDBRootID = MODULE_DBROOT_ID + itoa(moduleID) + "-" + itoa(dbrootID) + "-" + itoa(modu… in getSystemConfig()
[all …]
/dports/graphics/opencollada/OpenCOLLADA-1.6.68/common/libftoa/src/
H A DCommonitoa.cpp16 …size_t itoa( signed char value , char* buffer, unsigned char radix) { return itoaImplSigned<… in itoa() function
17 …size_t itoa( unsigned char value , char* buffer, unsigned char radix) { return itoaImpl<unsign… in itoa() function
18 …size_t itoa( signed short value , char* buffer, unsigned char radix) { return itoaImplSigned<… in itoa() function
19 …size_t itoa( unsigned short value , char* buffer, unsigned char radix) { return itoaImpl<unsign… in itoa() function
20 …size_t itoa( signed int value , char* buffer, unsigned char radix) { return itoaImplSigned<… in itoa() function
21 …size_t itoa( unsigned int value , char* buffer, unsigned char radix) { return itoaImpl<unsign… in itoa() function
22 …size_t itoa( signed long value , char* buffer, unsigned char radix) { return itoaImplSigned<… in itoa() function
23 …size_t itoa( unsigned long value , char* buffer, unsigned char radix) { return itoaImpl<unsign… in itoa() function
24 …size_t itoa( signed long long value , char* buffer, unsigned char radix) { return itoaImplSigned<… in itoa() function
25 …size_t itoa( unsigned long long value, char* buffer, unsigned char radix) { return itoaImpl<unsign… in itoa() function
/dports/lang/spidermonkey60/firefox-60.9.0/third_party/rust/itoa/
H A DREADME.md1 itoa chapter
4 …uild Status](https://api.travis-ci.org/dtolnay/itoa.svg?branch=master)](https://travis-ci.org/dtol…
5 [![Latest Version](https://img.shields.io/crates/v/itoa.svg)](https://crates.io/crates/itoa)
24 extern crate itoa;
28 itoa::write(&mut buf, 128u64)?;
33 let n = itoa::write(&mut bytes[..], 128u64)?;
40 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>
43 where `itoa::Integer` is implemented for `i8`, `u8`, `i16`, `u16`, `i32`, `u32`,
49 Itoa is available on [crates.io](https://crates.io/crates/itoa). Use the
54 itoa = "0.3"
[all …]
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/itoa-0.4.1/
H A DREADME.md1 itoa chapter
4 …uild Status](https://api.travis-ci.org/dtolnay/itoa.svg?branch=master)](https://travis-ci.org/dtol…
5 [![Latest Version](https://img.shields.io/crates/v/itoa.svg)](https://crates.io/crates/itoa)
25 extern crate itoa;
29 itoa::write(&mut buf, 128u64)?;
34 let n = itoa::write(&mut bytes[..], 128u64)?;
39 itoa::fmt(&mut s, 128u64)?;
48 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
61 Itoa is available on [crates.io](https://crates.io/crates/itoa). Use the
66 itoa = "0.4"
[all …]
/dports/games/dose-response/dose-response-179c326/cargo-crates/itoa-0.4.3/
H A DREADME.md1 itoa chapter
4 …uild Status](https://api.travis-ci.org/dtolnay/itoa.svg?branch=master)](https://travis-ci.org/dtol…
5 [![Latest Version](https://img.shields.io/crates/v/itoa.svg)](https://crates.io/crates/itoa)
25 extern crate itoa;
29 itoa::write(&mut buf, 128u64)?;
34 let n = itoa::write(&mut bytes[..], 128u64)?;
39 itoa::fmt(&mut s, 128u64)?;
48 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
61 Itoa is available on [crates.io](https://crates.io/crates/itoa). Use the
66 itoa = "0.4"
[all …]
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/itoa-0.4.8/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/itoa-0.4.6/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]
/dports/multimedia/librav1e/rav1e-0.5.1/cargo-crates/itoa-0.4.8/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]
/dports/multimedia/rav1e/rav1e-0.5.1/cargo-crates/itoa-0.4.8/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/itoa-0.4.8/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]
/dports/misc/broot/broot-1.7.0/cargo-crates/itoa-0.4.7/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]
/dports/devel/rust-cbindgen/cbindgen-0.20.0/cargo-crates/itoa-0.4.6/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]
/dports/devel/sccache/sccache-0.2.15/cargo-crates/itoa-0.4.7/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]
/dports/games/jaggedalliance2/ja2-stracciatella-0.18.0/cargo-crates/itoa-0.4.6/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/itoa-0.4.8/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/itoa-0.4.8/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]
/dports/lang/gleam/gleam-0.18.2/cargo-crates/itoa-0.4.8/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]
/dports/x11-wm/leftwm/leftwm-0.2.11/cargo-crates/itoa-0.4.8/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]
/dports/dns/dog/dog-0.1.0/cargo-crates/itoa-0.4.6/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]
/dports/net-im/libsignal-client/libsignal-client-0.9.6/cargo-crates/itoa-0.4.7/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]
/dports/dns/encrypted-dns-server/encrypted-dns-server-0.9.1/cargo-crates/itoa-0.4.8/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]
/dports/net-mgmt/nfs-exporter/freebsd-nfs-exporter-0.3.0/cargo-crates/itoa-0.4.6/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]
/dports/net/routinator/routinator-0.10.2/cargo-crates/itoa-0.4.7/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]
/dports/devel/git-delta/delta-0.9.2/cargo-crates/itoa-0.4.7/
H A DREADME.md1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
[all …]

12345678910>>...242