LinkedListFormer

Type Alias LinkedListFormer 

Source
pub type LinkedListFormer<E, Context, Formed, End> = CollectionFormer<E, LinkedListDefinition<E, Context, Formed, End>>;
Expand description

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

LinkedListFormer is a type alias that configures the CollectionFormer for use specifically with lists. It integrates the LinkedListDefinition to facilitate the fluent and dynamic construction of lists, leveraging predefined settings to reduce boilerplate code. This approach enhances readability and simplifies the use of lists 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 lists are repeatedly used or configured in similar ways across different parts of an application.

Aliased Typeยง

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