Macro artemis::ext[][src]

macro_rules! ext {
    ($($x: expr),*) => { ... };
}

Creates a new ExtensionMap and fills it with the passed values.

Example

let extensions = ext![MyExtension::new(options), MyOtherExtension::new(other_options)];