• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Fast enumeration
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Fast enumeration


  • Subject: Re: Fast enumeration
  • From: Quincey Morris <email@hidden>
  • Date: Thu, 22 Jul 2010 13:10:15 -0700

On Jul 22, 2010, at 12:16, Charlie Dickman wrote:

> When trying to use, instead,
>
> for (id _id in _array) {
> }
>
> how, without reverting to effectively using an enumerator as in
>
> id theID = nil;
> for (id _id in _array) {
> .
> .
> .
> if (condition) {
>   theID = _id;
>   break;
> }
> .
> .
> .
> if (nil != theID) {
> .
> .
> .
> }

id _id;

for (_id in array) {
}

if (_id)
{
}


_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: Fast enumeration
      • From: Jonathon Kuo <email@hidden>
References: 
 >Fast enumeration (From: Charlie Dickman <email@hidden>)

  • Prev by Date: Re: Array controllers in code?
  • Next by Date: Re: Array controllers in code?
  • Previous by thread: Fast enumeration
  • Next by thread: Re: Fast enumeration
  • Index(es):
    • Date
    • Thread