Views the array as an immutable list. Does not check for nulls; does not copy. The array must be internally created.
(Object[] elements)
| 318 | */ |
| 319 | |
| 320 | static <E> ImmutableList<E> asImmutableList(Object[] elements) { |
| 321 | return asImmutableList(elements, elements.length); |
| 322 | } |
| 323 | |
| 324 | /** |
| 325 | * Views the array as an immutable list. Copies if the specified range does not cover the complete |
no test coverage detected