• formal_spec 0.0.1/src/lib.rs
    215
    #[allow(clippy::unnecessary_filter_map)]
    216
    fn parse_fn(item: TokenStream) -> FnMetadata {
  • mdbook-svgbob 0.2.1/src/preprocessor.rs
    95
    	// https://github.com/rust-lang/rust-clippy/issues/9211#issuecomment-1335173323
    96
    	#[allow(clippy::unnecessary_filter_map)]
    97
    	let events = parser.filter_map(|e| {
  • medea 0.2.0/src/signalling/room_service.rs
    601
        //       be resolved.
    602
        #[allow(clippy::if_not_else, clippy::unnecessary_filter_map)]
    603
        fn handle(
  • nextsv 0.7.9/src/calculator.rs
    202
            #[allow(clippy::unnecessary_filter_map)]
    203
            let revwalk = revwalk.filter_map(|id| {
  • polars-core 0.26.1/src/chunked_array/ops/unique/mod.rs
    199
                        #[allow(clippy::unnecessary_filter_map)]
    200
                        let to_extend = iter.filter_map(|opt_val| {
  • polars-io 0.26.1/src/csv/read.rs
    371
            #[allow(clippy::unnecessary_filter_map)]
    372
            let fields = overwriting_schema.iter_fields().filter_map(|mut fld| {
  • swc_ecma_minifier 0.166.10/src/compress/pure/if_return.rs
    24
        /// ```
    25
        #[allow(clippy::unnecessary_filter_map)]
    26
        pub(super) fn negate_if_terminate(
  • xtest-data 1.0.0-beta.4/src/git.rs
    336
        // We need to take ownership of `path` in a branch.
    337
        #[allow(clippy::unnecessary_filter_map)]
    338
        pub fn checkout(
  • yew-stdweb 0.18.0/src/virtual_dom/vlist.rs
    150
                // Note: `filter_map` is used to move rights into `rights_to_move`
    151
                #[allow(clippy::unnecessary_filter_map)]
    152
                let rights_in_place: Vec<_> = right_children
  • minivec 0.4.0/tests/vec.rs
    12
      clippy::unit_arg,
    13
      clippy::unnecessary_filter_map,
    14
      clippy::eq_op,