export function none(array: Iterable<boolean>): boolean {
    for (const value of array) {
        if (value) {
            return false;
        }