<vMerge>

<vMerge> 属性orgで示された構造を使い,子要素が持つ値とマージした結 果得られた素性値を示す. [18.8.3 Collection of Values]
モジュールiso-fs — 18 Feature Structures
属性att.global (@xml:id, @n, @xml:lang, @rend, @style, @rendition, @xml:base, @xml:space) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.analytic (@ana)) (att.global.facs (@facs)) (att.global.change (@change))
org 構造値をマージした結果の構造を示す.例えば,集合,バック,リスト など.
状態 任意
データ型

<rng:ref name="data.enumerated"/>
data.enumerated
正当な値:
set
結果として得られた値の構造が,集合(順序なし,重複なし)である ことを示す.
bag
結果として得られた値の構造が,バック(順序なし,重複あり)であ ることを示す.
list
結果として得られた値の構造が,リスト(順序あり,重複あり)であ ることを示す.
当該モジュールを使用するもの
上位
下位
宣言

<rng:element name="vMerge">
 <rng:ref name="att.global.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: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.linking.attributes,
   att.global.analytic.attributes,
   att.global.facs.attributes,
   att.global.change.attributes,
   attribute org { "set" | "bag" | "list" }?,
   model.featureVal+
}
<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.