Re: NSMutableArray addObject: where is the E?
Re: NSMutableArray addObject: where is the E?
- Subject: Re: NSMutableArray addObject: where is the E?
- From: Mike Schrag <email@hidden>
- Date: Thu, 31 Jan 2008 16:49:45 -0500
Any reason for this?
I suspect it's an oversight ... The Wonder version of NSMutableArray
has a generic addObject as well. You should log a bug.
Should we use the (newer) method "add(E element)", in order to have
type checking, instead?
Does it perform exactly the same way otherwise?
Yes, it should the same:
public boolean add(Object element) {
addObject(element);
return true;
}
ms
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden