<vColl>

<vColl> (grupo de valores) representa la parte del valor de una especificación de valor de rasgo que contiene valores múltiples organizados como un conjunto, o una lista, etc. [18.7 Collections as Complex Feature Values]
Módulo iso-fs — Feature Structures
Atributos
org⚓︎ (organización) indica la organización del valor o valores dados como conjunto o lista.
Estado Opcional
Tipo de datos teidata.enumerated
Los valores admitidos son:
set
indican que los valores dados están ordenados como un conjunto.
bag
indica que los valores dados están ordenados como una bolsa (conjunto múltiple).
list
indican que los valores dados están ordenados como una lista.
Miembro de
Contenido en
Puede contener
Ejemplo
<f name="name">
 <vColl>
  <string>Jean</string>
  <string>Luc</string>
  <string>Godard</string>
 </vColl>
</f>
Ejemplo
<fs>
 <f name="lex">
  <symbol value="auxquels"/>
 </f>
 <f name="maf">
  <vColl org="list">
   <fs>
    <f name="cat">
     <symbol value="prep"/>
    </f>
   </fs>
   <fs>
    <f name="cat">
     <symbol value="pronoun"/>
    </f>
    <f name="kind">
     <symbol value="rel"/>
    </f>
    <f name="num">
     <symbol value="pl"/>
    </f>
    <f name="gender">
     <symbol value="masc"/>
    </f>
   </fs>
  </vColl>
 </f>
</fs>
Content model
<content>
 <alternate minOccurs="0"
  maxOccurs="unbounded">

  <elementRef key="fs"/>
  <classRef key="model.featureVal.single"/>
  <elementRef key="vColl"/>
 </alternate>
</content>
Declaración
<rng:element name="vColl">
 <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:zeroOrMore>
  <rng:choice>
   <rng:ref name="fs"/>
   <rng:ref name="model.featureVal.single"/>
   <rng:ref name="vColl"/>
  </rng:choice>
 </rng:zeroOrMore>
</rng:element>
element vColl
{
   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" }?,
   ( fs | model.featureVal.single | vColl )*
}