LimitedScalarTable - limited scalar list component property
use Podius::Property::LimitedScalarTable;
$l = new Podius::Property::LimitedScalarTable(
['name', 'age'], -2 # try 2
);
$l->push(["David", 44]);
print $l->as_string, "\n";
$l->push(["Grego", 33], ["Diana", 22]);
print $l->as_string(undef, ", "), "\n";
To write.