/** * @tsplus static Chunk.Ops compactF */ export const compactF = Witherable.implementCompactF()( (_: { A: A B: B G: G FR: FR FE: FE }) => (G: Applicative) => (f: (a: A) => HKT.Kind>) => (fa: Chunk): HKT.Kind> => G.map((self: Chunk>) => self.compact)(Chunk.forEachF(G)(f)(fa)) )