BTWrap via WrapC

This commit is contained in:
AF 2023-05-30 15:03:46 +00:00
parent e23252b8cf
commit 8d3593cf2d

View File

@ -14,7 +14,7 @@ pub type Split<'a, BT> = (
);
pub type KeySplit<'a, BT> = (<BT as BinaryTrees<'a>>::Tree, <BT as BinaryTrees<'a>>::Tree);
pub type BTWrap<'a, BT, A> = Wrap<'a, A, <BT as FunctorContext<'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;