export default function max(compare, iterable, dflt = undefined) {
    const iterator = iter(iterable);

    const first = iterator.next();