Changes between Version 14 and Version 15 of immutablelist
- Timestamp:
- 08/03/21 11:33:03 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
immutablelist
v14 v15 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 almost-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