/** * @tsplus type FilterMapWithIndex */ export interface FilterMapWithIndex extends HKT.Typeclass { readonly Law: { readonly FilterMapWithIndex: "FilterMapWithIndex" } readonly filterMapWithIndex: ( f: (k: K, a: A) => Maybe ) => (fa: HKT.Kind) => HKT.Kind }