https://github.com/nickrybalko/weakpointerarray
The WeakPointerArray represents a mutable collection created over Array, but it holds weak references for objects
https://github.com/nickrybalko/weakpointerarray
array ios macos objective-c swift tvos watchos weak weak-references
Last synced: 3 months ago
JSON representation
The WeakPointerArray represents a mutable collection created over Array, but it holds weak references for objects
- Host: GitHub
- URL: https://github.com/nickrybalko/weakpointerarray
- Owner: NickRybalko
- License: mit
- Created: 2017-06-09T11:43:37.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-24T19:49:08.000Z (over 7 years ago)
- Last Synced: 2025-03-22T14:02:22.109Z (3 months ago)
- Topics: array, ios, macos, objective-c, swift, tvos, watchos, weak, weak-references
- Language: Swift
- Homepage: https://github.com/NickRybalko/WeakPointerArray
- Size: 11.7 KB
- Stars: 3
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WeakPointerArray
The WeakPointerArray represents a mutable collection created over Array, but it holds weak references for objects(not strong as in Array).
So objects may be destroyed even if array has references to them.