fp-macros 0.8.0

Procedural macros for generating and working with Higher-Kinded Type (HKT) traits in the fp-library crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Code generation utilities.
//!
//! This module provides code generation functionality including:
//! - Re-export generation for functions and traits

pub mod re_export;

pub use re_export::{
	FunctionFormatter,
	ReExportInput,
	TraitFormatter,
	generate_re_exports_worker,
};