Skip to main content

children

Macro children 

Source
macro_rules! children {
    () => { ... };
    ($($child:expr),* $(,)?) => { ... };
}
Expand description

Build a list of nodes with mixed types.

ยงExample

let nodes = children!["text", p()];