Function Name: Token Set Union

Definition

Constructs the union of token sets A and B, puts it in token set C. Assumes that token sets A and B have the same underlying type.

Returns

SE_FALSE - if set_c_ptr is NULL. (A NULL pointer for set A or set B is treated as an empty set.)

SE_TRUE - otherwise

Prototype


extern SE_BOOLEAN
SE_TokenSetUnion
(
SE_DRM_TYPE_ENUM drm_type, (notes)
constSE_TOKEN_SET *set_a_ptr, (notes)
constSE_TOKEN_SET *set_b_ptr, (notes)
SE_TOKEN_SET *set_c_ptr (notes)
);

Parameters Notes

drm_type

 the underlying type of sets A, B, and C. A and B must have the
 same underlying type.

set_a_ptr

 pointer to a token set to union

set_b_ptr

 pointer to a token set to union

set_c_ptr

 pointer to resulting union token set

Prev: Token Set Empty. Next: Valid Axis. Up:Index.