about summary refs log tree commit diff
path: root/tests/rustdoc-js/hof.rs
AgeCommit message (Collapse)AuthorLines
2024-06-04rustfmt `tests/rustdoc-js/`.Nicholas Nethercote-4/+4
2024-03-11rustdoc-search: parse and search with ML-style HOFMichael Howell-0/+12
Option::map, for example, looks like this: option<t>, (t -> u) -> option<u> This syntax searches all of the HOFs in Rust: traits Fn, FnOnce, and FnMut, and bare fn primitives.