t_wの輪郭

Feedlyでフォローするボタン
RustRustのクロージャはFn特質を実装しているFnimpl

あれ

2022/2/26 8:51:00
fn test(closure: impl Fn(u32)->u32) {
    assert_eq!(closure(10), 11);
}

let closure = |x| {
    x+1
};

test(closure);
あれ