Changes between Version 15 and Version 16 of immutablelist
- Timestamp:
- 08/03/21 11:33:12 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
immutablelist
v15 v16 6 6 ImmutableList is similar to the common java.util.List: it contains a list of elements. 7 7 However, the big differences are 8 * ImmutableList allows virtually unlimited sizes. ||8 * ImmutableList allows virtually unlimited sizes. 9 9 * ImmutableList does lazy evaluation: it is generating elements on request only, and does not keep the elements. 10 10 * ImmutableList is immutable, so it can not be modified