From 55b3a2425b242fbc5c6e471f220eeb8b949e8751 Mon Sep 17 00:00:00 2001 From: Mica White Date: Wed, 26 Aug 2026 20:46:31 -0400 Subject: Add tests --- src/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index fc9e495..e6e5e4c 100755 --- a/src/lib.rs +++ b/src/lib.rs @@ -198,7 +198,7 @@ mod handle_unwind; mod key; pub mod collection; -pub mod iterator; +pub mod context; pub mod lockable; pub mod mutex; pub mod poisonable; @@ -219,6 +219,9 @@ pub use mutex::SpinLock; /// [`BoxedLockCollection`]: collection::BoxedLockCollection pub type LockCollection = collection::BoxedLockCollection; +/// A re-export for [`context::LockContext`] +pub type LockContext<'l, L> = context::LockContext<'l, L>; + /// A re-export for [`poisonable::Poisonable`] pub type Poisonable = poisonable::Poisonable; -- cgit v1.3.1