In Devo, complex data types provide flexible and powerful structures for organizing, querying, and manipulating large datasets. These types include set, map, array, and tuple, each with unique properties that allow users to handle diverse data operations efficiently. This article outlines the key characteristics and operations associated with each data type.
Type | Description | Example |
---|---|---|
Unordered, unique collection of values |
| |
Map | Key-value pairs, unique keys |
|
Array | Ordered collection, allows duplicates |
|
Tuple | Ordered, immutable collection, mixed types |
|
Json | Key-value pairs, unordered, unique keys, mixed types |
|
...