weak_collections 1.2.0 weak_collections: ^1.2.0 copied to clipboard
Collection of soft references. Weak reference effect achieved through WeakReference and Finalizer.
import 'package:weak_collections/weak_collections.dart';
void main() {
Object? o = Object();
Object o2 = Object();
WeakHashMap weakMap = WeakHashMap();
WeakHashSet weakSet = WeakHashSet();
weakMap[o] = o2;
weakSet.add(o);
o = null;
List lis = [];
Future(() => '').then((_) {
lis = List.filled(1020000, () => Object());
print(weakMap.length);
Future(() => '').then((_) {
lis = List.filled(1020000, () => Object());
print(weakMap.length);
Future(() => '').then((_) {
lis = List.filled(1020000, () => Object());
print(weakMap.length);
Future(() => '').then((_) {
for (int i = 0; i < 100; i++) {
lis = List.filled(1020000, () => Object());
}
print(weakMap.length);
Future(() => '').then((_) {
lis = List.filled(1020000, () => Object());
print(weakMap.length);
Future(() => '').then((_) {
lis = List.filled(1020000, () => Object());
print(weakMap.length);
Future(() => '').then((_) {
lis = List.filled(1020000, () => Object());
print(weakMap.length);
Future(() => '').then((_) {
lis = List.filled(1020000, () => Object());
print(weakMap.length);
Future(() => '').then((_) {
lis = List.filled(1020000, () => Object());
print(weakMap.length);
Future(() => '').then((_) {
lis = List.filled(1020000, () => Object());
print(weakMap.length);
});
});
});
});
});
});
});
});
});
});
lis.length;
}