summaryrefslogtreecommitdiff
path: root/docs/application/tuple.md
blob: e0e926c51905b57815ccebe4b2060f9197c73d00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Tuple

---

## Object Definitions

```c
typedef struct _kpl_tuple {
    POOL_HEADER(_kpl_tuple);
    uint32_t item_length;
    kpl_class items[];
} kpl_tuple;
```