triangulate/outputs/formats/
mod.rs

1//! Predefined implementations of [FanFormat](crate::FanFormat), [FanBuilder](crate::FanBuilder), 
2//! [ListFormat](crate::ListFormat), and [ListBuilder](crate::ListBuilder)
3
4mod generic_fans;
5pub(crate) use generic_fans::GenericFans;
6mod generic_list;
7pub(crate) use generic_list::GenericList;
8mod indexed_fan;
9pub use indexed_fan::IndexedFanFormat;
10mod delimited_fan;
11pub use delimited_fan::DelimitedFanFormat;
12mod deindexed_fan;
13pub use deindexed_fan::DeindexedFanFormat;
14mod fan_to_list;
15pub use fan_to_list::FanToListFormat;
16mod indexed_list;
17pub use indexed_list::IndexedListFormat;
18mod deindexed_list;
19pub use deindexed_list::DeindexedListFormat;
20mod reverse_fan;
21pub use reverse_fan::ReverseFanFormat;