export interface ISetUtils {
    getLastElement<T>(set: Set<T>): T | undefined;
}
