Jeremy Schonfeld
Jeremy Schonfeld
@swift-ci please test
@swift-ci please test
All tests now pass in our CI, just waiting for confirmation that tests pass when run in the full toolchain suite before merging
Closing as this has been completed by a series of other PRs and is now just about complete
Reopening as the change was reverted in https://github.com/swiftlang/swift-foundation/pull/1379. This ability is blocked on the ability for `Date` to represent times with nanosecond precision since this `FileManager` API uses `Date` as...
@swift-ci please test
PredicateExpressions.Equal requires Equatable conformance for comparing an optional value with "nil"
For future reference, the stdlib API that supports this in standard swift code is [here](https://github.com/swiftlang/swift/blob/3ccbcfe8cd40ded2d261b4011e1cc2e195361389/stdlib/public/core/Optional.swift#L651-L663). Supporting this seems doable for `Predicate` with a little work: we can likely add overloads...
Yes `CoreFoundation` is not public API on non-Darwin and should not be relied upon outside of swift-corelibs-foundation so it should be removed from here. That being said, I don't think...
While I do not advocate for any CF code, the following does still appear to be functional to me on the latest nightly-6.0-amazonlinux2 container: ``` root@nightly-6 Repos]# swift test.swift 16...
Aha, that `--static-swift-stdlib` is the key: ``` [root@nightly-amazonlinux2 Repos]# swiftc -static-stdlib test.swift /Repos/test.swift:1:8: error: no such module 'CoreFoundation' 1 | import CoreFoundation | `- error: no such module 'CoreFoundation' 2...