Lines Matching refs:fromRight
808 * @param {boolean} [fromRight] Specify iterating from right to left.
811 function baseFindIndex(array, predicate, fromIndex, fromRight) {
813 index = fromIndex + (fromRight ? 1 : -1);
815 while ((fromRight ? index-- : ++index < length)) {
3931 * @param {boolean} [fromRight] Specify iterating from right to left.
3934 function baseRange(start, end, step, fromRight) {
3940 result[fromRight ? length : ++index] = start;
4399 * @param {boolean} [fromRight] Specify iterating from right to left.
4402 function baseWhile(array, predicate, isDrop, fromRight) {
4404 index = fromRight ? length : -1;
4406 while ((fromRight ? index-- : ++index < length) &&
4410 ? baseSlice(array, (fromRight ? 0 : index), (fromRight ? index + 1 : length))
4411 : baseSlice(array, (fromRight ? index + 1 : 0), (fromRight ? length : index));
4927 * @param {boolean} [fromRight] Specify iterating from right to left.
4930 function createBaseEach(eachFunc, fromRight) {
4939 index = fromRight ? length : -1,
4942 while ((fromRight ? index-- : ++index < length)) {
4955 * @param {boolean} [fromRight] Specify iterating from right to left.
4958 function createBaseFor(fromRight) {
4966 var key = props[fromRight ? length : ++index];
5130 * @param {boolean} [fromRight] Specify iterating from right to left.
5133 function createFlow(fromRight) {
5139 if (fromRight) {
5388 * @param {boolean} [fromRight] Specify iterating from right to left.
5391 function createRange(fromRight) {
5405 return baseRange(start, end, step, fromRight);