@@ -61,11 +61,11 @@ - (void*)data { return data; } -- (void*)item: (size_t)index +- (void*)itemAtIndex: (size_t)index { if (index >= count) @throw [OFOutOfRangeException newWithClass: isa]; return data + index * itemsize; @@ -157,16 +157,16 @@ if (count > [obj count]) { if ((ret = memcmp(data, [obj data], [obj count] * itemsize))) return ret; - return *(char*)[self item: [obj count]]; + return *(char*)[self itemAtIndex: [obj count]]; } else { if ((ret = memcmp(data, [obj data], count * itemsize))) return ret; - return *(char*)[obj item: count] * -1; + return *(char*)[obj itemAtIndex: count] * -1; } } - (uint32_t)hash {