Merge branch 'master' into get_helper
diff --git a/src/lib.rs b/src/lib.rs
index 6c39388..6c61a05 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -770,6 +770,11 @@
         self.helper = helper;
     }
 
+    /// Return a mutable reference to the helper.
+    pub fn helper_mut(&mut self) -> Option<&mut H> {
+        self.helper.as_mut()
+    }
+
     /// Return an immutable reference to the helper.
     pub fn helper(&self) -> Option<&H> {
         self.helper.as_ref()