<vMerge>

<vMerge> (merged collection of values) 属性orgで示された構造を使い、子要素が持つ値とマージした結 果得られた素性値を示す。 [18.8.3 Collection of Values]
モジュール iso-fs — Feature Structures
属性
org⚓︎ 構造値をマージした結果の構造を示す。例えば、集合、バック、リスト など。
状態 任意
データ型 teidata.enumerated
正当な値:
set
結果として得られた値の構造が、集合(順序なし、重複なし)である ことを示す。
bag
結果として得られた値の構造が、バック(順序なし、重複あり)であ ることを示す。
list
結果として得られた値の構造が、リスト(順序あり、重複あり)であ ることを示す。
クラブのメンバー
上位
下位
<vMerge org="list">
 <vColl org="set">
  <symbol value="masculine"/>
  <symbol value="neuter"/>
  <symbol value="feminine"/>
 </vColl>
 <symbol value="indeterminate"/>
</vMerge>

This example returns a list, concatenating the indeterminate value with the set of values masculine, neuter and feminine.

Content model
<content>
 <classRef key="model.featureVal"
  minOccurs="1maxOccurs="unbounded"/>

</content>
宣言
<rng:element name="vMerge">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.global.rendition.attributes"/>
 <rng:ref name="att.global.linking.attributes"/>
 <rng:ref name="att.global.analytic.attributes"/>
 <rng:ref name="att.global.facs.attributes"/>
 <rng:ref name="att.global.change.attributes"/>
 <rng:ref name="att.global.responsibility.attributes"/>
 <rng:ref name="att.global.source.attributes"/>
 <rng:optional>
  <rng:attribute name="org">
   <rng:choice>
    <rng:value>set</rng:value>
    <rng:value>bag</rng:value>
    <rng:value>list</rng:value>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:oneOrMore>
  <rng:ref name="model.featureVal"/>
 </rng:oneOrMore>
</rng:element>
element vMerge
{
   att.global.attributes,
   att.global.rendition.attributes,
   att.global.linking.attributes,
   att.global.analytic.attributes,
   att.global.facs.attributes,
   att.global.change.attributes,
   att.global.responsibility.attributes,
   att.global.source.attributes,
   attribute org { "set" | "bag" | "list" }?,
   model.featureVal+
}