<vColl>

<vColl> (collection of values) 素性値規定において、複数の値を、集合、バック、リストなどで表す、値の 部分を示す。 [18.7 Collections as Complex Feature Values]
モジュール iso-fs — Feature Structures
属性
org⚓︎ (organization) 付与された値、または、集合、バッグ、リストとしてある値の構造を示 す。
状態 任意
データ型 teidata.enumerated
正当な値:
set
集合(順序なし、重複なし)としてある値を示す。
bag
バック(順序なし、重複あり)としてある値を示す。
list
リスト(順序あり、重複あり)としてある値を示す。
クラブのメンバー
上位
下位
<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>
Content model
<content>
 <alternate minOccurs="0"
  maxOccurs="unbounded">

  <elementRef key="fs"/>
  <classRef key="model.featureVal.single"/>
  <elementRef key="vColl"/>
 </alternate>
</content>
宣言
<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 )*
}