From 8d3593cf2df5dd5f5d39c7e4d3a74e3481fd3ab6 Mon Sep 17 00:00:00 2001 From: timofey Date: Tue, 30 May 2023 15:03:46 +0000 Subject: [PATCH] `BTWrap` via `WrapC` --- src/flow/binary.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flow/binary.rs b/src/flow/binary.rs index 9e5ef58..ec6a11f 100644 --- a/src/flow/binary.rs +++ b/src/flow/binary.rs @@ -14,7 +14,7 @@ pub type Split<'a, BT> = ( ); pub type KeySplit<'a, BT> = (>::Tree, >::Tree); -pub type BTWrap<'a, BT, A> = Wrap<'a, A, >::T>; +pub type BTWrap<'a, BT, A> = WrapC<'a, A, BT>; pub trait BinaryTrees<'a>: FunctorContext<'a, T = Self::_Tm> + Clone { type Node: 'a;