Lines Matching refs:stack
22 function equalArrays(array, other, bitmask, customizer, equalFunc, stack) { argument
31 var arrStacked = stack.get(array);
32 var othStacked = stack.get(other);
40 stack.set(array, other);
41 stack.set(other, array);
50 ? customizer(othValue, arrValue, index, other, array, stack)
51 : customizer(arrValue, othValue, index, array, other, stack);
64 … (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {
73 equalFunc(arrValue, othValue, bitmask, customizer, stack)
79 stack['delete'](array);
80 stack['delete'](other);