//! Collectors for [`LinkedList`]
//!
//! This module corresponds to [`std::collections::linked_list`].
use LinkedList;
use LinkedList;
/// A collector that pushes collected items into the back of a [`LinkedList`].
/// Its [`Output`] is [`LinkedList`].
///
/// This struct is created by `LinkedList::into_collector()`.
///
/// [`Output`]: crate::collector::CollectorBase::Output
);
/// A collector that pushes collected items into the back of a [`&mut LinkedList`](LinkedList).
/// Its [`Output`] is [`&mut LinkedList`](LinkedList).
///
/// This struct is created by `LinkedList::collector_mut()`.
///
/// [`Output`]: crate::collector::CollectorBase::Output
&'a mut );