1XSetOf DEFINITIONS ::=
2BEGIN
3
4-- F.2.11.4
5--Use a set-of type to model a collection of variables whose types are
6-- the same and whose order is insignificant.
7-- EXAMPLE
8
9	Keywords ::= SET OF VisibleString  --  in arbitrary order
10	someASN1Keywords Keywords ::= {"INTEGER", "BOOLEAN", "REAL"}
11
12END
13