use crate::sync::flow::OkFlow;
use crate::__internal::shared_step::OkInspectStep;
impl<InspectorFn, OkType> OkFlow<OkType> for OkInspectStep<InspectorFn, OkType>
where
InspectorFn: Fn(&OkType),
{
type OutputOk = OkType;
fn apply_ok(&self, input_ok: OkType) -> Self::OutputOk {
self.apply(input_ok)
}
}