File: union.yaml

package info (click to toggle)
dtfabric 20240211-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 868 kB
  • sloc: python: 5,785; sh: 24; makefile: 19
file content (25 lines) | stat: -rw-r--r-- 383 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# dtFabric format specification.
---
name: int16
type: integer
description: 16-bit signed integer type
attributes:
  format: signed
  size: 2
  units: bytes
---
name: int32
type: integer
description: 32-bit signed integer type
attributes:
  format: signed
  size: 4
  units: bytes
---
name: union
type: union
members:
- name: long
  data_type: int32
- name: short
  data_type: int16