NAME

LimitedScalarTable - limited scalar list component property


SYNOPSIS

  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";


DESCRIPTION

To write.


REQUIREMENTS

the Podius::Property::ScalarList manpage.