Skip to content

Commit

Permalink
Remove from README
Browse files Browse the repository at this point in the history
  • Loading branch information
stephencelis committed Jun 13, 2024
1 parent ad4ec25 commit ab7fa27
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ Reliably testable Swift concurrency.
* [`ActorIsolated` and `LockIsolated`](#actorisolated-and-lockisolated)
* [Streams](#streams)
* [Tasks](#tasks)
* [`UncheckedSendable`](#uncheckedsendable)
* [Serial execution](#serial-execution)
* [Documentation](#documentation)
* [Other libraries](#other-libraries)
Expand Down Expand Up @@ -141,17 +140,6 @@ The library enhances the `Task` type with new functionality.
enough time to start. Prefer the reliability of [serial execution](#serial-execution) instead
where possible.

### `UncheckedSendable`

A wrapper type that can make any type `Sendable`, but in an unsafe and unchecked way. This type
should only be used as an alternative to `@preconcurrency import`, which turns off concurrency
checks for everything in the library. Whereas `UncheckedSendable` allows you to turn off concurrency
warnings for just one single usage of a particular type.

While [SE-0302][se-0302] mentions future work of ["Adaptor Types for Legacy
Codebases"][se-0302-unsafetransfer], including an `UnsafeTransfer` type that serves the same
purpose, it has not landed in Swift.

### Serial execution

Some asynchronous code is [notoriously difficult][reliably-testing-swift-concurrency] to test in
Expand Down

0 comments on commit ab7fa27

Please sign in to comment.