Files
swift-mirror/test/1_stdlib/Inputs/SlurpFastEnumeration/SlurpFastEnumeration.h
Jordan Rose e83c117c30 [test] Hack: run stdlib tests first to start long-running tests earlier.
This decreases total testing time by over a minute on my old Mac Pro.
It probably has much less effect on systems with fewer cores, but shouldn't
be any worse there.

Swift SVN r22745
2014-10-15 01:30:51 +00:00

13 lines
610 B
C

#include <Foundation/Foundation.h>
// Note: 'Array' is declared 'id' instead of 'NSArray' to avoid automatic
// bridging to 'Swift.Array' when this API is imported to Swift.
void slurpFastEnumerationOfArrayFromObjCImpl(id Array, id<NSFastEnumeration> FE,
NSMutableArray *Values);
// Note: 'Dictionary' is declared 'id' instead of 'NSDictionary' to avoid
// automatic bridging to 'Swift.Dictionary' when this API is imported to Swift.
void slurpFastEnumerationOfDictionaryFromObjCImpl(
id Dictionary, id<NSFastEnumeration> FE, NSMutableArray *KeyValuePairs);