fp-macros 0.7.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
//! Test: Duplicate #[document_parameters] on a function

use fp_macros::document_parameters;

#[document_parameters("The value")]
#[document_parameters("The value")]
fn foo(x: i32) {}

fn main() {}