mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This helps to bridge C++ random access collections, such as `std::vector` and `std::string`, to Swift by conforming them to `Swift.RandomAccessCollection`
7 lines
173 B
Plaintext
7 lines
173 B
Plaintext
module CustomSequence {
|
|
header "custom-iterator.h" // TODO: extract into another module
|
|
header "custom-sequence.h"
|
|
header "custom-collection.h"
|
|
requires cplusplus
|
|
}
|