rust/src/librustdoc/formats
Michael Howell dc1fc08dc9 rustdoc: reference function signature types from the p array
This reduces the size of the function signature index, because
it's common to have many functions that operate on the same types.

    $ wc -c search-index-old.js search-index-new.js
    5224374 search-index-old.js
    3932314 search-index-new.js

By my math, this reduces the uncompressed size of the search index by 32%.
On compressed signatures, the wins are less drastic, a mere 8%:

    $ wc -c search-index-old.js.gz search-index-new.js.gz
    404532 search-index-old.js.gz
    371635 search-index-new.js.gz
2022-06-24 18:16:33 -07:00
..
cache.rs cleanup librustdoc by making parent stack store items 2022-05-27 12:55:44 -07:00
item_type.rs rustdoc: reference function signature types from the p array 2022-06-24 18:16:33 -07:00
mod.rs Don't generate "Impls on Foreign Types" for std 2022-06-04 11:10:51 -07:00
renderer.rs Remove crate visibility modifier in libs, tests 2022-05-21 00:32:47 -04:00