summaryrefslogtreecommitdiff
path: root/tests/rustdoc-js/slice-array.js
Commit message (Collapse)AuthorAgeFilesLines
* rustdoc-search: add slices and arrays to indexMichael Howell2023-04-241-0/+65
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.