Sorry if this is already addressed.
I'm in need of an ifoldl' function over text values, and I can't seem to find it.
ifoldl' :: forall a. (a -> Int -> Char -> a) -> a -> Text -> a
Lens combinators come close, but I don't think it's possible to make an instance of FoldableWithIndex for text?
Sorry if this is already addressed.
I'm in need of an
ifoldl'function over text values, and I can't seem to find it.Lens combinators come close, but I don't think it's possible to make an instance of FoldableWithIndex for text?