generic_singleton

Rust does NOT monomorphize it's [static generic items]. This is dissappointing when you have a generic function that contains a static variable depending on that generic. You'll get the following error: text error[E0401]: can't use generic parameters from outer function

That's pretty frustrating when you want to write a singleton pattern that rely's on a generic parameter. That's where this crate saves the day!

generic_singleton uses [anymap] behind the scenes to store a map of each generic type. The first time you call get_or_init we initialize the singleton in thread local storage. Subsequent calls to get_or_init will retrieve the singleton from the map.

Example

```rust use std::sync::Mutex;

fn genericfunction + 'static>(initializer: fn() -> Mutex) -> T { { let mut a = genericsingleton::getorinit(initializer).lock().unwrap(); let b = *a; *a = *a + b; *a } }

fn main() { asserteq!(genericfunction(||Mutex::new(2)), 4); asserteq!(genericfunction(||Mutex::new(2)), 8); asserteq!(genericfunction(||Mutex::new(2)), 16);

assert_eq!(generic_function(||Mutex::new(2.0)), 4.0);
assert_eq!(generic_function(||Mutex::new(2.0)), 8.0);
assert_eq!(generic_function(||Mutex::new(2.0)), 16.0);

} ```

Current limitations: