NAME

LimitedScalarList - limited scalar list component property


SYNOPSIS

  use Podius::Property::LimitedScalarList;
  $l = new Podius::Property::LimitedScalarList([123], -3);  # try 3
  $l->push(45);
  print $l->as_string("%d"), "\n";
  $l->push(67, 89);
  print $l->as_string("%d"), "\n";


DESCRIPTION

To write.


REQUIREMENTS

the Podius::Property::ScalarList manpage.