[][src]Crate new_flattened

This crates provides new_flattened! macro which enables you to write

new_flattened!(42, Box, Box, Box)

instead of

Box::new(Box::new(Box::new(42)))

Macros

new_flattened

Macro to flatten nested calls of news.