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.
```rust use std::sync::Mutex;
fn genericfunction
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);
} ```
get_or_init_local
and get_or_init_global
if I
can figure out how to implement concurrent access and the required trait bound to make it safe.get_or_init
on the same type will
return the SAME singleton. Perhaps even accross crate boundaries. I might be able to limit
it by providing a macro that salts the key in AnyMap
with a context about which function it's
being called from.