move ControlFlow
to func::controlflow
This commit is contained in:
parent
fbdb056fa1
commit
a067d041f4
@ -22,13 +22,10 @@ pub mod test_suite;
|
||||
#[cfg(test)]
|
||||
pub mod tests;
|
||||
|
||||
pub use std::ops::ControlFlow;
|
||||
|
||||
pub use self::applicative_select::{
|
||||
ApplicativeSelect, ApplicativeSelectExt, Selected, SelectedWrapped,
|
||||
};
|
||||
use self::controlflow::{BindableMut, ControlFlowInstance};
|
||||
pub use self::controlflow::{Iterative, IterativeWrapped};
|
||||
pub use self::controlflow::{ControlFlow, Iterative, IterativeWrapped};
|
||||
pub use self::extensions::MonadExt;
|
||||
#[cfg(doc)]
|
||||
use self::instances::stackless::StacklessInstance;
|
||||
|
@ -1,4 +1,5 @@
|
||||
use std::marker::PhantomData;
|
||||
pub use std::ops::ControlFlow;
|
||||
|
||||
use super::*;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
use super::*;
|
||||
use super::{controlflow::BindableMut, *};
|
||||
|
||||
pub trait MonadExt<'a>: Monad<'a> {
|
||||
/// [`FnMut`] version of [`Monad::iterate`].
|
||||
|
@ -1,4 +1,4 @@
|
||||
use super::*;
|
||||
use super::{controlflow::ControlFlowInstance, *};
|
||||
|
||||
/// Represents wrapped results which are instantly available.
|
||||
pub trait LocalFunctor<'a>: WeakFunctor<'a> {
|
||||
|
Loading…
Reference in New Issue
Block a user