Quellcodebibliothek
Statistik
Leitseite
products
/
Sources
/
formale Sprachen
/
C
/
Firefox
/
intl
/
icu
/
source
/
data
/
zone
/ (
Browser von der Mozilla Stiftung
Version 136.0.1
©
) Datei vom 10.2.2025 mit Größe 23 kB
Quelle utils.rs Sprache: unbekannt
//! Utility functions, only pathname handling at the moment.
pub fn basename(f: &str) -> &str {
match f.rfind(['/', '\\']) {
None => f,
Some(index) => &f[(index + 1)..],
}
}
[ Dauer der Verarbeitung: 0.35 Sekunden (vorverarbeitet)
]
2026-04-04