"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.atLeastZero = exports.max2 = void 0;
const max_1 = require("../max");
const max2 = (a) => (b) => (0, max_1.max)([a, b]);
exports.max2 = max2;
exports.atLeastZero = (0, exports.max2)(0);