ralfbiedert / cheats.rs

Rust Language Cheat Sheet - https://cheats.rs
https://cheats.rs
4.09k stars 382 forks source link

`b"..."` literals are sized #194

Closed turalcar closed 6 months ago

turalcar commented 6 months ago

The page even links the reference which is quite unambiguous in that regard: type of b"..." is &'static [u8; n] for some specific n, not a slice reference as cheats.rs implies.