blob: f9fee92e560bbd7c656bfa8b4be09641d8132c59 (
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
|