Subject: | writing fields containing 0 with AnyData::Format::Fixed |
The sub write_fields of AnyData::Format::Fixed will skip any field containing only zeros because of the test:
next unless $_;
within the loop which analyzes fields.
Maybe changing that test for a:
next unless defined $_
would be enough?