> On Jul 7, 2015, at 4:58 PM, Rick Mann <[email protected]> wrote:
> 
>> On Jul 7, 2015, at 16:52 , Quincey Morris 
>> <[email protected]> wrote:
>> 
>>> On Jul 7, 2015, at 16:42 , Rick Mann <[email protected]> wrote:
>>> 
>>> for item in enumerator!
>> 
>> Like this:
>> 
>>> for case let item? in enumerator!
>> 
>> (Yes, it’s stupid.)
> 
> Hmm. It doesn't seem to like that: '?' pattern cannot match values of type 
> 'Element'. It puts the carat on the '?' of item.
> 
> Also, the enumerator is a NSDirectoryEnumerator. It returns AnyObject type, 
> so wouldn't there have to be an NSURL cast in there somewhere?

`for case` uses Swift's pattern matching system, as seen in `switch`. Something 
like this should work:

    for case let item as NSURL in enumerator! {
        …
    }


-- 
Greg Parker     [email protected]     Runtime Wrangler



_______________________________________________

Cocoa-dev mailing list ([email protected])

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:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to