corlib 0.4.1

A various ideas library
Documentation
//!
//! Event structs loosely inspired by .NET events.
//! 
//! You basically instantiate a non-base event struct, expose the subscribe and unsubscribe methods and call the raise method when it's time to raise an event.
//! 

mod dictionary_weak_rc_event;

pub use dictionary_weak_rc_event::*;

mod list_event;

pub use list_event::*;

mod base_list_event;

mod list_args_event;

mod base_dictionary_weak_rc_event;

mod dictionary_weak_rc_args_event;

mod single_sub_event;

pub use single_sub_event::*;

mod single_sub_args_event;

pub use single_sub_args_event::*;