//! Helper traits, used internally.
/// Similar to `Extend` in standard library for builder like types.
////// used mostly with views that containes multiple items such as `Flex`
pubtraitExtendBuilder<A> {fnextend<T>(self, iter: T)->Selfwhere
T:IntoIterator<Item = A>;
}