| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2024-10-30 | rustdoc-search: simplify rules for generics and type params | Michael Howell | -2/+6 | |
| This commit is a response to feedback on the displayed type signatures results, by making generics act stricter. Generics are tightened by making order significant. This means `Vec<Allocator>` now matches only with a true vector of allocators, instead of matching the second type param. It also makes unboxing within generics stricter, so `Result<A, B>` only matches if `B` is in the error type and `A` is in the success type. The top level of the function search is unaffected. Find the discussion on: * <https://rust-lang.zulipchat.com/#narrow/stream/393423-t-rustdoc.2Fmeetings/topic/meeting.202024-07-08/near/449965149> * <https://github.com/rust-lang/rust/pull/124544#issuecomment-2204272265> * <https://rust-lang.zulipchat.com/#narrow/channel/266220-t-rustdoc/topic/deciding.20on.20semantics.20of.20generics.20in.20rustdoc.20search/near/476841363> | ||||
| 2023-06-09 | Update rustdoc-js* format | Guillaume Gomez | -21/+9 | |
| 2023-03-20 | rustdoc: add support for type filters in arguments and generics | Michael Howell | -0/+13 | |
| This makes sense, since the search index has the information in it, and it's more useful for function signature searches since a function signature search's item type is, by definition, some type of function (there's more than one, but not very many). | ||||
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+57 | |
