/** * Derive an `AssociativeIdentity` from `Associative` and `identity`. * * @tsplus static AssociativeIdentity/Ops fromAssociative */ export function fromAssociative( identity: A, associative: Associative ): AssociativeIdentity { return AssociativeIdentity(identity, associative.combine) }