@mikuroxina/mini-fn
    Preparing search index...

    Function apSelective

    • Sequences two computations, composing the results of them.

      Type Parameters

      • S

      Parameters

      Returns <N extends PropertyKey, T>(
          name: Exclude<N, keyof T>,
      ) => (
          funcT: Get1<S, T>,
      ) => <U>(
          funcU: Get1<S, U>,
      ) => Get1<S, { [K in PropertyKey]: K extends keyof T ? T[K<K>] : U }>

      The composed computation resulting object T with an entry of type U by name key.