# Integers, RNA & DNA. Currently: * DNA has knowledge of `int64_t` vs `uint64_t`, `short` vs. `ushort`, but... only `int`. * DNA _explicitely ignores_ `unsigned` keyword! So `unsigned int` is the same as `int` from DNA PoV. * RNA has no real handling of unsigned integers, besides some clamping to `>= 0`. * RNA handles `uint` DNA props _exactly_ as if they were `int` ones. * RNA has no support for `uint64_t`/`int64_t` properties in DNA. * ...