Function clippy_utils::source::without_block_comments
source · Expand description
Removes block comments from the given Vec
of lines.
Examples
ⓘ
without_block_comments(vec!["/*", "foo", "*/"]);
// => vec![]
without_block_comments(vec!["bar", "/*", "foo", "*/"]);
// => vec!["bar"]