-
Notifications
You must be signed in to change notification settings - Fork 805
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implementing KeyValueCoding dictionaryWithValuesForKeys functionality. #515
Conversation
@@ -30,10 +30,10 @@ | |||
|
|||
#import <unicode/utf8.h> | |||
|
|||
#include <stdio.h> | |||
#include <stdlib.h> | |||
#include <functional> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
auto formatted is reordering the import order.
Overall, I approve of this. I won't withhold my approval for my comments :) |
|
🕐 |
comments addressed |
[results setValue:(retValue ?: [NSNull null]) forKey:key]; | ||
} | ||
|
||
return [[results copy] autorelease]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this seems like it may be better served by a vector or something local so that you can just make the final dictionary without doing potentially expensive grows and copies on the mutable guy.
|
1 similar comment
|
No description provided.