Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CommonProblemsの修正 #45

Merged
merged 15 commits into from
Aug 18, 2024
3 changes: 1 addition & 2 deletions Guide.docc/CommonProblems.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ var supportedStyleCount: Int {
}
```

もしこの変数を保護するための同期機構があり、それがコンパイラに見えない場合は、`nonisolated(unsafe)` を使って `supportedStyleCount` のすべての隔離確認を無効化できます
もし変数が、コンパイラには見えない方法で同期され、保護されている場合、`nonisolated(unsafe)` を使って `supportedStyleCount` の隔離確認をすべて無効化できます

```swift
/// `styleLock` を保持している間だけこの値にアクセスしてよい。
Expand Down Expand Up @@ -370,7 +370,6 @@ func updateStyle(backgroundColor: ColorComponents) async {
```

`Sendable` への準拠は型の公開APIの取り決めの一部であり、定義するかどうかは自分次第です。
Because `ColorComponents` is marked `public`, it will not implicitly conform to `Sendable`.
narumij marked this conversation as resolved.
Show resolved Hide resolved
`ColorComponents` には `public` がついているため、 `Sendable` への暗黙的な準拠を行ないません。
これは次のようなエラーになります:

Expand Down