OCLOperators Sequence
(Automatically adding template at the end of the page.) |
(Adding message template to the top of the page) |
||
Line 1: | Line 1: | ||
{{message|Write the content here to display this box}} | |||
This creates a sequence (collection) of your choosing. | This creates a sequence (collection) of your choosing. | ||
Revision as of 22:22, 16 June 2024
This page was created by Lars.olofsson on 2017-05-25. Last edited by Stephanie on 2025-02-04.
Write the content here to display this box
This creates a sequence (collection) of your choosing.
Integers
If you need a sequence of numbers for iteration or numbering, use Sequence
Sequence{0..20}
It will create a collection of integers.
Strings
Sequence{'String', 'EmailAddress'}
It's not necessary to use Sequence for this - Set or Bag works equally well.
If you want to create a list of arbitrary numbers, you can use the Set operator.
(Might also be called an array or list.)