Re: Persistent Data Structures for Objective-C/LLVM

2014-11-12 Thread Anton Astashov
7 PM UTC-8, Anton Astashov wrote: > > All objects in Objective-C actually maintain their reference count. This > is how ARC works. So, if there is only one reference to a vector, and we > create a new modified vector with a new element, the changed nodes of the > old vector will

Re: Persistent Data Structures for Objective-C/LLVM

2014-11-12 Thread Anton Astashov
arly efficient. > > On Wed, 12 Nov 2014 3:48 PM Anton Astashov > wrote: > >> Sorry for resurrecting of such an old post, but I just wrote port of >> Clojure's data structures in Objective-C - >> https://github.com/astashov/persistent.objc - hopefully one day so

Re: Persistent Data Structures for Objective-C/LLVM

2014-11-12 Thread Anton Astashov
Sorry for resurrecting of such an old post, but I just wrote port of Clojure's data structures in Objective-C - https://github.com/astashov/persistent.objc - hopefully one day someone will find that useful. :) On Sunday, March 31, 2013 5:43:52 AM UTC-7, Matthias Benkard wrote: > > I implemented