<bicond>

<bicond> (bi-conditional feature-structure constraint) defines a biconditional feature-structure constraint; both consequent and antecedent are specified as feature structures or groups of feature structures; the constraint is satisfied if both subsume a given feature structure, or if both do not. [18.11 Feature System Declaration]
Module iso-fs — Feature Structures
Attributes
Contained by
May contain
iso-fs: f fs iff
Example
<bicond>
 <fs>
  <f name="FOO">
   <symbol value="42"/>
  </f>
 </fs>
 <iff/>
 <fs>
  <f name="BAR">
   <binary value="true"/>
  </f>
 </fs>
</bicond>
Content model
<content>
 <sequence>
  <alternate>
   <elementRef key="fs"/>
   <elementRef key="f"/>
  </alternate>
  <elementRef key="iff"/>
  <alternate>
   <elementRef key="fs"/>
   <elementRef key="f"/>
  </alternate>
 </sequence>
</content>
Schema Declaration
<rng:element name="bicond">
 <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:group>
  <rng:choice>
   <rng:ref name="fs"/>
   <rng:ref name="f"/>
  </rng:choice>
  <rng:ref name="iff"/>
  <rng:choice>
   <rng:ref name="fs"/>
   <rng:ref name="f"/>
  </rng:choice>
 </rng:group>
</rng:element>
element bicond
{
   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,
   ( ( fs | f ), iff, ( fs | f ) )
}