Allocation sizes of data types

In the Tag Data Types it lists things like:

Byte    Int1
Short   Int2
Integer Int4
Long    Int8
Float   Float4
Double  Float8

Can I assume that the digit in the size refers to the number of bytes that the type encompasses? This is not explicitly said anywhere that I can see, and I’m trying to match data allocations across 4 different systems that each have their own names for various numerical values

Yes that’s the naming scheme.

1 Like

It obviously was, but I’m not trusting my assumptions right now!