/**
* Returns an `AssociativeIdentity` for an `ImmutableArray`.
*
* @tsplus static ImmutableArray.Ops getAssociativeIdentity
*/
export function getAssociativeIdentity(): AssociativeIdentity> {
return AssociativeIdentity(ImmutableArray.empty(), (a, b) => a.concat(b))
}