Lines Matching refs:truth
2326 * Returns the first value in `coll` that passes an async truth test. The
2342 * @param {AsyncFunction} iteratee - A truth test to apply to each item in `coll`.
2347 * Result will be the first item in the array that passes the truth test
2414 * @param {AsyncFunction} iteratee - A truth test to apply to each item in `coll`.
2419 * Result will be the first item in the array that passes the truth test
2440 * @param {AsyncFunction} iteratee - A truth test to apply to each item in `coll`.
2445 * Result will be the first item in the array that passes the truth test
2518 * @param {AsyncFunction} test - asynchronous truth test to perform after each
2540 function check(err, truth) { argument
2543 if (!truth) return callback(null, ...results);
2564 * @param {AsyncFunction} test - asynchronous truth test to perform after each
2577 _test(...args, (err, truth) => cb (err, !truth));
2807 * @param {AsyncFunction} iteratee - An async truth test to apply to each item
2907 * @param {AsyncFunction} iteratee - An async truth test to apply to each item
2932 * @param {AsyncFunction} iteratee - An async truth test to apply to each item
2987 * Returns a new array of all the values in `coll` which pass an async truth
2998 * @param {Function} iteratee - A truth test to apply to each item in `coll`.
3072 * @param {Function} iteratee - A truth test to apply to each item in `coll`.
3095 * @param {Function} iteratee - A truth test to apply to each item in `coll`.
4421 …ite of [`filter`]{@link module:Collections.filter}. Removes values that pass an `async` truth test.
4430 * @param {Function} iteratee - An async truth test to apply to each item in
4499 * @param {Function} iteratee - An async truth test to apply to each item in
4522 * @param {Function} iteratee - An async truth test to apply to each item in
4919 * @param {AsyncFunction} iteratee - An async truth test to apply to each item
5021 * @param {AsyncFunction} iteratee - An async truth test to apply to each item
5047 * @param {AsyncFunction} iteratee - An async truth test to apply to each item
5625 * @param {AsyncFunction} test - asynchronous truth test to perform before each
5663 function check(err, truth) {
5666 if (!truth) return callback(null, ...results);
5687 * @param {AsyncFunction} test - asynchronous truth test to perform before each
5715 return whilst$1((cb) => _test((err, truth) => cb (err, !truth)), iteratee, callback);