|
3 | 3 | The Foundation framework defines a base layer of functionality that is required for almost all applications. It provides primitive classes and introduces several paradigms that define functionality not provided by either the Objective-C runtime and language or Swift standard library and language.
|
4 | 4 |
|
5 | 5 | It is designed with these goals in mind:
|
| 6 | + |
6 | 7 | * Provide a small set of basic utility classes.
|
7 | 8 | * Make software development easier by introducing consistent conventions.
|
8 | 9 | * Support internationalization and localization, to make software accessible to users around the world.
|
9 | 10 | * Provide a level of OS independence, to enhance portability.
|
10 | 11 |
|
11 | 12 | There is more information on the Foundation framework [here](https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/ObjC_classic/).
|
12 | 13 |
|
13 |
| -> Important: This project is in the early stages of development. It is not yet ready for production use, but it is ready for contributions. It is scheduled to be part of the Swift 3 release. |
14 |
| -
|
15 |
| -This project provides an implementation of the Foundation API for platforms where there is no Objective-C runtime. On macOS, iOS, and other Apple platforms, apps should use the Foundation that comes with the operating system. Our goal is to abstract away the exact underlying platform as much as possible. |
16 |
| - |
17 |
| -## Goals |
18 |
| - |
19 |
| -### Part of Swift 3.0 |
| 14 | +This project, `swift-corelibs-foundation`, provides an implementation of the Foundation API for platforms where there is no Objective-C runtime. On macOS, iOS, and other Apple platforms, apps should use the Foundation that comes with the operating system. Our goal is for the API in this project to match the OS-provided Foundation and abstract away the exact underlying platform as much as possible. |
20 | 15 |
|
21 |
| -Our primary goal is to achieve implementation parity with Foundation on Apple platforms. This will help to enable the overall Swift 3 goal of **portability**. |
| 16 | +## Common API |
22 | 17 |
|
23 |
| -In our first year, we are not looking to make major API changes to the library. We feel that this will hamper the primary goal. There are some areas where API changes are unavoidable, however. For more information on those APIs and the overall design of Foundation, please see [our design document](Docs/Design.md). |
| 18 | +Our primary goal is to achieve implementation parity with Foundation on Apple platforms. This will help to enable the overall Swift goal of **portability**. |
24 | 19 |
|
25 |
| -### API Naming and Foundation |
| 20 | +Therefore, we are not looking to make major API changes to the library that do not correspond with changes made to Foundation on Apple platforms. However, there are some areas where API changes are unavoidable. In these cases, documentation on the method will provide additional detail of the reason for the difference. |
26 | 21 |
|
27 |
| -One of the goals of the Swift 3 project is [a new set of naming guidelines](https://swift.org/documentation/api-design-guidelines/). The Foundation project will soon update all of its names to match the new guidelines. We will also drop the 'NS' prefix from all Foundation classes. |
| 22 | +For more information on those APIs and the overall design of Foundation, please see [our design document](Docs/Design.md). |
28 | 23 |
|
29 |
| -### Current Status |
| 24 | +## Current Status |
30 | 25 |
|
31 | 26 | See our [status page](Docs/Status.md) for a detailed list of what features are currently implemented.
|
32 | 27 |
|
@@ -73,7 +68,7 @@ In general, the dividing line should be drawn in overlapping area of what people
|
73 | 68 |
|
74 | 69 | For example, Optional is a type provided by the standard library. However, the compiler understands the concept to provide support for things like optional-chaining syntax. The compiler also has syntax for creating Arrays and Dictionaries.
|
75 | 70 |
|
76 |
| -On the other hand, the compiler has no built-in support for types like NSURL. NSURL also has ties into more complex functionality like basic networking support. Therefore this type is more appropriate for Foundation. |
| 71 | +On the other hand, the compiler has no built-in support for types like `URL`. `URL` also ties into more complex functionality like basic networking support. Therefore this type is more appropriate for Foundation. |
77 | 72 |
|
78 | 73 | ##### Why not make the existing Objective-C implementation of Foundation open source?
|
79 | 74 |
|
|
0 commit comments