fp-macros 0.8.0

Procedural macros for generating and working with Higher-Kinded Type (HKT) traits in the fp-library crate.
Documentation
//! Generic and trait analysis subsystem.
//!
//! This module provides utilities for analyzing:
//! - Generic parameters (lifetimes, types, consts)
//! - Pattern detection (FnBrand, Apply!)
//! - Trait bounds and classifications

pub mod dispatch;
pub mod generics;
pub mod impl_trait_lint;
pub mod patterns;
pub mod traits;

pub use {
	generics::{
		analyze_generics,
		get_all_parameters,
		get_type_parameters,
	},
	patterns::{
		get_apply_macro_parameters,
		get_fn_brand_info,
	},
	traits::{
		TraitCategory,
		classify_trait,
		format_brand_name,
	},
};