Richard Gibson
10/11/2018, 2:58 PMsealed abstract class FingerTree<out A> {
abstract fun <B >: A> append(a: A): FingerTree<B>
where B is a super type of A
I thought this might be a problem someone here has experienced already but can't find anything in the code base.
BTW, this is an arrow related question as hopefully want to submit this as a PR when ready 🙂john
10/11/2018, 2:58 PM