blob: 116bd4a82d898b9989f1eaf89e401e2e9a12ff17 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
XSeqOf DEFINITIONS ::=
BEGIN
-- F.2.10.1
-- Use a sequence-of type to model a collection of variables whose
-- types are the same,
-- whose number is large or unpredictable, and whose order is significant.
-- EXAMPLE
NamesOfMemberNations ::= SEQUENCE OF VisibleString
-- in alphabetical order
firstTwo NamesOfMemberNations ::= {"Australia", "Austria"}
DayNames1 ::= SEQUENCE SIZE(7) OF VisibleString
DayNames2 ::= SEQUENCE SIZE(1..7) OF VisibleString
DayNames3 ::= SEQUENCE (SIZE(7)) OF VisibleString
DayNames4 ::= SEQUENCE (SIZE(1..7)) OF VisibleString
END
|