(arg0, arg1, arg2)
| 6421 | |
| 6422 | //User-friendly wrapper, handle full input and no-visitor cases |
| 6423 | function boxIntersectWrapper(arg0, arg1, arg2) { |
| 6424 | switch(arguments.length) { |
| 6425 | case 1: |
| 6426 | return intersectFullArray(arg0) |
| 6427 | case 2: |
| 6428 | if(typeof arg1 === 'function') { |
| 6429 | return boxIntersect(arg0, arg0, arg1, true) |
| 6430 | } else { |
| 6431 | return intersectBipartiteArray(arg0, arg1) |
| 6432 | } |
| 6433 | case 3: |
| 6434 | return boxIntersect(arg0, arg1, arg2, false) |
| 6435 | default: |
| 6436 | throw new Error('box-intersect: Invalid arguments') |
| 6437 | } |
| 6438 | } |
| 6439 | |
| 6440 | /***/ }), |
| 6441 |
nothing calls this directly
no test coverage detected
searching dependent graphs…