clown

Crates.ioclown
lib.rsclown
version1.1.1
sourcesrc
created_at2023-08-16 09:27:34.132021
updated_at2024-11-11 13:04:42.289848
descriptionapproximation of capture-by-closure lambdas
homepage
repositoryhttps://github.com/zygomedia/clown
max_upload_size
id945670
size7,886
Ihor Ranchynskyi (Awpteamoose)

documentation

README

clown

Crate Info API Docs

An approximation of "capture-by-clone" lambdas in Rust.
Requires nightly and #![feature(proc_macro_hygiene, stmt_expr_attributes)]

Turns this:

#[clown] || do_call(honk!(foo.bar), slip!(baz.bop))

into this:

{
    let __honk_0 = (foo.bar).clone();
	let __slip_0 = baz.bop;
    move || do_call(__honk_0, __slip_0)
}
Commit count: 11

cargo fmt