Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ Swift 3.0
---------
* [SE-0107](https://github.com/apple/swift-evolution/blob/master/proposals/0107-unsaferawpointer.md)

An `Unsafe[Mutable]RawPointer` type has been introduced. It
replaces `Unsafe[Mutable]Pointer<Void>`. Conversion from
`UnsafePointer<T>` to `UnsafePointer<U>` has been
disallowed. `Unsafe[Mutable]RawPointer` provides an API for untyped
memory access, and an API for binding memory to a type. Binding
memory allows for safe conversion between pointer types.
An `Unsafe[Mutable]RawPointer` type has been introduced. It replaces
`Unsafe[Mutable]Pointer<Void>`. Conversion from `UnsafePointer<T>`
to `UnsafePointer<U>` has been disallowed. `Unsafe[Mutable]RawPointer`
provides an API for untyped memory access, and an API for binding memory
to a type. Binding memory allows for safe conversion between pointer types.
See `bindMemory(to:capacity:)`, `assumingMemoryBound(to:)`, and
`withMemoryRebound(to:capacity:)`.

* [SE-0096](https://github.com/apple/swift-evolution/blob/master/proposals/0096-dynamictype.md):

Expand Down