Lines Matching refs:takeRightWhile
12741 assert.deepEqual(_.takeRightWhile(objects), objects.slice(2));
21798 var actual = _.takeRightWhile(array, function(n) {
21810 _.takeRightWhile(array, function() {
21820 assert.deepEqual(_.takeRightWhile(objects, { 'b': 2 }), objects.slice(2));
21826 assert.deepEqual(_.takeRightWhile(objects, ['b', 2]), objects.slice(2));
21832 assert.deepEqual(_.takeRightWhile(objects, 'b'), objects.slice(1));
21841 expected = _.takeRightWhile(array, predicate),
21842 wrapped = _(array).takeRightWhile(predicate);
21866 _(array).slice(1).takeRightWhile(function(value, index, array) {
21872 _(array).slice(1).map(square).takeRightWhile(function(value, index, array) {
21878 _(array).slice(1).map(square).takeRightWhile(function(value, index) {
21884 _(array).slice(1).map(square).takeRightWhile(function(index) {
21890 _(array).slice(1).map(square).takeRightWhile(function() {
26653 assert.deepEqual(_.takeRightWhile(args, identity), [5], message('takeRightWhile'));