This crate provides the parameterize
macro, which allow parameterizing generic functions for applications like unit
testing.
for example,
```rust use generic_parameterize::parameterize; use std::fmt::Debug;
fn test_array
generates a module called test_array
containing functions called test_array_i32_4
, test_array_i32_5
etc.
The #[test]
attribute gets copied to the child functions, which in turn call a copy of test_array
. The result looks
like:
```rust
mod testarray {
use std::println;
fn testarray
#[test]
fn test_array_i32_4() {test_array::<i32,4>();}
#[test]
fn test_array_f32_4() {test_array::<f32,4>();}
#[test]
fn test_array_i32_5() {test_array::<i32,5>();}
// etc...
}