Views the array as an immutable list. Checks for nulls; does not copy.
(Object... elements)
| 308 | */ |
| 309 | |
| 310 | private static <E> ImmutableList<E> construct(Object... elements) { |
| 311 | return asImmutableList(checkElementsNotNull(elements)); |
| 312 | } |
| 313 | |
| 314 | /** |
| 315 | * Views the array as an immutable list. Does not check for nulls; does not copy. |
no test coverage detected