Type Alias former::exposed::HashSetFormer

source ·
pub type HashSetFormer<K, Context, Formed, End> = CollectionFormer<K, HashSetDefinition<K, Context, Formed, End>>;
Expand description

Provides a concise alias for CollectionFormer configured specifically for HashSet-like collections.

HashSetFormer simplifies the creation of HashSet collections within builder patterns by leveraging the CollectionFormer with predefined settings. This approach minimizes boilerplate code and enhances readability, making it ideal for fluent and expressive construction of set collections within custom data structures.

Aliased Type§

struct HashSetFormer<K, Context, Formed, End> { /* private fields */ }