#[doc(no_inline)]

This commit is contained in:
AF 2023-08-02 06:09:00 +00:00
parent 8a71fae804
commit 98b67c0cdc
2 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,4 @@
#[doc(no_inline)]
pub use super::{ pub use super::{
applicative_select::{ApplicativeSelect, ApplicativeSelectExt, Selected, SelectedWrapped}, applicative_select::{ApplicativeSelect, ApplicativeSelectExt, Selected, SelectedWrapped},
controlflow::{ControlFlow, Iterative, IterativeWrapped}, controlflow::{ControlFlow, Iterative, IterativeWrapped},

View File

@ -1,4 +1,5 @@
use std::marker::PhantomData; use std::marker::PhantomData;
#[doc(no_inline)]
pub use std::ops::ControlFlow; pub use std::ops::ControlFlow;
use super::{weakfunctorany::WeakFunctorAny, Functor, Pure, WeakFunctor, Wrap}; use super::{weakfunctorany::WeakFunctorAny, Functor, Pure, WeakFunctor, Wrap};