├── README.md └── stdlib.swift /README.md: -------------------------------------------------------------------------------- 1 | swift_stdlib 2 | ============ 3 | 4 | Xcode-generated headers of the Swift standard library — updated with every beta. 5 | 6 | To compare the stdlib headers between 2 betas, go to: 7 | 8 | https://github.com/radex/swift_stdlib/compare/6.1-beta1...6.1-beta2.diff 9 | 10 | And replace `6.1-beta1` and `6.1-beta2` with the two versions you're interested in. Versions are tagged like so: `6.0-beta2`, `6.0-gm`, `6.1-gm-seed2`, `6.0.1`. To see all the version tags, see https://github.com/radex/swift_stdlib/releases. 11 | 12 | Note that at the moment, the order of function overrides appears quite random (rdar://18202155) — that's why in every beta there's a lot of lines changed, but there are usually few actual changes hidden in the noise. 13 | 14 | btw. [Swifter](http://swifter.natecook.com) is a handy reference which 15 | provides auto-generated documentation for the Swift stdlib, with the ability 16 | to switch between versions. 17 | --------------------------------------------------------------------------------