var c = IList<int>([1, 2, 3]);
print((c + 4).value); // [1, 2, 3, 4]
print(c.value); // [1, 2, 3]
print((c - 3).value); // [1, 2]
print(c.value); // [1, 2, 3]
print(c.take(2).value); // [1, 2]
print(c.value); // [1, 2]
print(c.filter((_) => 1 == _ || 2 == _).value); // [1, 2]
print(c.value); // [1, 2, 3]
-
Notifications
You must be signed in to change notification settings - Fork 1
License
fpdart/immutables
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Topics
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published