blob: 23e5f381401aff590a3b5147f22b0fe40836b56f (
plain) (
tree)
|
|
Null DEFINITIONS ::=
BEGIN
-- F.2.9 Null
-- Use a null type to indicate the effective absence of a component
-- of a sequence.
-- EXAMPLE
PatientIdentifier ::= SEQUENCE {
name VisibleString,
roomNumber CHOICE {
room INTEGER,
outPatient NULL -- if an out-patient --
}
}
lastPatient PatientIdentifier ::= {
name "Jane Doe",
roomNumber outPatient : NULL
}
END
|