Tagged Questions
The chdatastructures tag has no wiki summary.
19
votes
2answers
4k views
Implementing -hash / -isEqual: / -isEqualTo…: for Objective-C collections
Note: The following SO questions are related, but neither they nor the linked resources seem to fully answer my questions, particularly in relation to implementing equality tests for collections of ...
8
votes
9answers
1k views
Naming a dictionary structure that stores keys in a predictable order?
Note: Although my particular context is Objective-C, my question actually transcends programming language choice. Also, I tagged it as "subjective" since someone is bound to complain otherwise, but ...
5
votes
1answer
299 views
How to implement CHCircularBuffer in iOS project?
for my game iOS project I need a ring buffer. It should work similar to a queue where elements go out and go in but the total amount of elements in the buffer should stay the same.
I implemented the ...
5
votes
2answers
2k views
Creating an Xcode data formatter bundle for custom Obj-C objects
To help simplify debugging of some custom Objective-C objects in the Xcode debugger window, I've created a set of data formatter strings for each of the objects, using the related Apple documentation ...
2
votes
1answer
178 views
CHDataStructures.framework won't compile for iOS in Xcode 4
I downloaded CHDataStructures source code (r709), and tried to compile the iOS static library under xCode 4. It complained when compiling:
Can anyone give me some ideas how to compile it?
2
votes
2answers
825 views
Using CHDataStructures.framework on iPhone
I'm new to iPhone programming and I'm trying to use CHDataStructures in my project. But I'm running into some issues:
When I directly try to build it right after download I get the error ...
0
votes
1answer
79 views
CHDataStructures: Priority Queue?
I need a priority queue, I guess in the framework, CHMutableArrayHeap and CHBinaryHeap can do the job, right?
However, if i send objects with identical priority to the queue, both CHMutableArrayHeap ...