<vMerge>

<vMerge> (conjunto fusionado de valores) representa un valor de rasgo que es el resultado de la fusión de los valores de rasgo contenidos por sus hijos, considerando la organización especificada por el atributo de org. [18.8.3 Collection of Values]
Módulo iso-fs — Feature Structures
Atributos
org⚓︎ indica que la organización resultante de la fusión de valores se muestra como un conjunto, multiconjunto o como una lista.
Estado Opcional
Tipo de datos teidata.enumerated
Los valores admitidos son:
set
indican que los valores resultantes están ordenados como un conjunto.
bag
indica que los valores resultantes están ordenados como una bolsa (conjunto múltiple).
list
indica que los valores resultantes están ordenados como una lista.
Miembro de
Contenido en
Puede contener
Ejemplo
<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>
Declaración
<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+
}