<vColl>

<vColl> (collection of values) represents the value part of a feature-value specification which contains multiple values organized as a set, bag, or list.
組件iso-fs — 18 Feature Structures
屬性
org (organization) indicates organization of given value or values as set, bag or list.
狀態 可應用時必備的
合法的值是:
set
indicates that the given values are organized as a set.
bag
indicates that the given values are organized as a bag (multiset).
list
indicates that the given values are organized as a list.
屬於 model.featureVal.complex
可包含
宣告
element vColl
{
   att.global.attributes,
   attribute org { "set" | "bag" | "list" }?,
   ( ( fs | model.featureVal.single )* )
}
例子
<f name="name">
 <vColl>
  <string>Jean</string>
  <string>Luc</string>
  <string>Godard</string>
 </vColl>
</f>
例子
<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>