mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
13 lines
610 B
C
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);
|
|
|