I think this is this is the correct implementation (I followed what `hylo` does but reverse the order): ```haskell meta ∷ ∀ f a b . Functor f ⇒ Coalgebra f a → Algebra f b → a → b meta f g = go where go a = g $ go <$> f a ```
I think this is this is the correct implementation (I followed what
hylodoes but reverse the order):