Container Types In Verse
Container Types
Store multiple values together by using a container type. Verse has a number of container types to store values in.
Store multiple values together by using a container type. Verse has a number of container types to store values in.
[Option
The option type can contain one value or can be empty.](/docs/documentation/en-us/uefn/option-in-verse.md) [Range
The range expression contains all the numbers in a specified range, and can only be used in specific expressions.](/docs/documentation/en-us/uefn/range-in-verse.md) [Array
An array is a container where you can store elements of the same type, and access the elements by their position in the array.](/docs/documentation/en-us/uefn/array-in-verse.md) [Map
A map is a container where you can store values associated with other values, called key-value pairs, and access the elements by their unique keys.](/docs/documentation/en-us/uefn/map-in-verse.md) [Tuple
A tuple is a container where you can group two or more expressions of mixed types and access the elements in the tuple by their position.](/docs/documentation/en-us/uefn/tuple-in-verse.md)