about summary refs log tree commit diff
path: root/tests/rustdoc-js/slice-array.rs
AgeCommit message (Collapse)AuthorLines
2024-06-04rustfmt `tests/rustdoc-js/`.Nicholas Nethercote-4/+12
2023-06-10rustdoc: search for slices and arrays by type with `[]`Michael Howell-0/+2
Part of #60485
2023-04-24rustdoc-search: add slices and arrays to indexMichael Howell-0/+16
This indexes them as primitives with generics, so `slice<u32>` is how you search for `[u32]`, and `array<u32>` for `[u32; 1]`. A future commit will desugar the square bracket syntax to search both arrays and slices at once.