Structure

Morphology.CustomPronoun

A custom pronoun behavior for use in a specific langauge. 特定の言語において使うためのあるあつらえの代名詞挙動。

Declaration 宣言

struct CustomPronoun

Overview 概要

Set a Morphology.CustomPronoun instance on a Morphology instance when you want to provide a langauge-specific customization of pronoun use in that language. Different languages have different requirements for the grammatical information needed to apply a custom pronoun, so you set custom pronoun behavior on a per-language basis. Morphology.CustomPronounインスタンスをMorphologyインスタンス上で設定してください、あなたがその言語において使う代名詞の言語特有のカスタマイゼーションを提供したい時は。異なる言語は、異なる要件を、あつらえの代名詞を適用するのに必要とされる文法的情報に対して持ちます、なのであなたはあつらえの代名詞挙動を言語毎基準で設定します。

The example below shows how to create English “ze” and “hir” custom pronouns: 以下の例は、どのように英語の “ze” および “hir” のあつらえ代名詞を作成するかを示します:


let ze = Morphology.CustomPronoun()
ze.subjectForm = "ze"
ze.objectForm = "hir"
ze.possessiveForm = "hir"
ze.possessiveAdjectiveForm = "hir"
ze.reflexiveForm = "hirself"

Morphology.CustomPronoun only supports third-person pronouns. Use this feature when your app needs to refer to third parties with a specific pronoun. Morphology.CustomPronounは、第三人称代名詞をサポートするだけです。この機能を、あなたのアプリがサードパーティー(三人称?)を特定の代名詞で参照する必要がある時に使ってください。

Topics 話題

Creating a Custom Pronoun 空のあつらえの代名詞を作成する

Assessing Custom Pronoun Support カスタム代名詞サポートを見極める

Determining Pronoun Forms 代名詞形を決定する

Encoding and Decoding エンコーディングとデコーディング

Hashing ハッシュ化

Comparing Custom Pronouns カスタム代名詞を比較する

Relationships 関係

Conforms To 次に準拠

See Also 参照

Accessing Per-Language Features 言語毎機能にアクセスする