Type Alias former::orphan::orphan::VectorFormer

source ·
pub type VectorFormer<E, Context, Formed, End> = CollectionFormer<E, VectorDefinition<E, Context, Formed, End>>;
Expand description

Provides a streamlined builder interface for constructing vector-like collections.

VectorFormer is a type alias that configures the CollectionFormer for use specifically with vectors. It integrates the VectorDefinition to facilitate the fluent and dynamic construction of vectors, leveraging predefined settings to reduce boilerplate code. This approach enhances readability and simplifies the use of vectors in custom data structures where builder patterns are desired.

The alias encapsulates complex generic parameters, making the construction process more accessible and maintainable. It is particularly useful in scenarios where vectors are repeatedly used or configured in similar ways across different parts of an application.

Aliased Type§

struct VectorFormer<E, Context, Formed, End> { /* private fields */ }