Home Manual Reference Source Test Repository

src/0-legacy/compare/lt.js



/**
 * Wrapper for a comparison operator that returns true iff
 * _a_ is less than _b_.
 */

export const lt_t = function(cmp){
	return function (a, ai, aj, b, bi, bj) {
		return cmp(a, ai, aj, b, bi, bj) < 0;
	};
};