<vColl>

<vColl> (값의 집합) 집합, 다중집합 또는 목록으로 구성된 다중치를 포함하는 자질-값 명세에서 값의 부분을 표시한다. [18.7 Collections as Complex Feature Values]
모듈 iso-fs — Feature Structures
속성
org⚓︎ (조직) 집합, 다중집합 또는 목록으로 주어진 값 또는 값들의 조직을 나타낸다.
상태 수의적
자료 유형 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 )*
}