(size)
| 758 | } |
| 759 | |
| 760 | function getTailOffset(size) { |
| 761 | return size < SIZE ? 0 : ((size - 1) >>> SHIFT) << SHIFT; |
| 762 | } |
| 763 | |
| 764 | // The largest number of values a List can hold. Above this the 32-bit trie math |
| 765 | // in setListBounds() stays in the safe signed 32-bit range. |
no outgoing calls
no test coverage detected