pub fn fallible_repeat<'a, E, L>(
elt: Result<FallibleLend<'a, L>, E>,
) -> FallibleRepeat<'a, E, L>where
E: Clone,
L: ?Sized + for<'all> FallibleLending<'all> + 'a,
for<'all> FallibleLend<'all, L>: Clone,Expand description
Creates a new fallible lender that endlessly repeats a single element.
See iter::repeat() for more information.