import { complement, equals } from 'ramda'; import compareLength from './internal/compareLength'; /** * Returns `true` if the supplied list or string has a length not equal to `valueLength`. * * @func lengthNotEq * @memberOf RA * @since {@link https://char0n.github.io/ramda-adjunct/2.8.0|v2.8.0} * @category List * @sig Number -> [*] -> Boolean * @param {number} valueLength The length of the list or string * @param {Array|string} value The list or string * @return {boolean} * @see {@link RA.lengthEq|lengthEq}, {@link RA.lengthLt|lengthLt}, {@link RA.lengthGt|lengthGt}, {@link RA.lengthLte|lengthLte}, {@link RA.lengthGte|lengthGte}, {@link http://ramdajs.com/docs/#equals|equals}, {@link http://ramdajs.com/docs/#length|length} * @example * * RA.lengthNotEq(3, [1,2,3,4]); //=> true * RA.lengthNotEq(3, [1,2,3]); //=> false */ const lengthNotEq = compareLength(complement(equals)); export default lengthNotEq;