The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

SPVM::StringList - Dynamic string array

SYNOPSYS

  use StringList;
  
  # Create a string list
  my $string_list = StringList->new_len(10);

  # Create a string list with array
  my $string_list = StringList->new(["abc", "def", "ghi"]);
  
  # Get list length
  my $length = $string_list->length;
  
  # Push string value
  $string_list->push("abc");

  # Pop string value.
  my $string_value = $string_list->pop;

  # Unshift string value.
  $string_list->unshift("abc");
  
  # Shift string value.
  my $string_value = $string_list->shift;
  
  # Set string value.
  $string_list->set(2, "abc");

  # Get string value.
  my $string_value = $string_list->get(2);

  # Insert string value
  $string_list->insert(1, "abc");

  # Remove string value
  my $string_value = $string_list->remove(1);

  # Convert StringList to string array.
  my $string_array = $string_list->to_array;

DESCRIPTION

StringList is dynamic string array.

CLASS METHODS

new

    static method new : StringList ($array : string[])

Create a new StringList object with specific string array.

Internally, new array is created, and each element of argument array is copied to internal array.

If array is undef, 0-length internal array is created.

new_len

    static method new_len : StringList ($length : int)

Create a new StringList object with array length.

INSTANCE METHODS

get

  method get : string ($index : int)

Get the value with index.

length

  static method length : int ()

Get list length.

insert

  method insert : void ($index : int, $value : string)

Insert a element to the specific index.

pop

  method pop : string ()

Pops and returns the last value of the list, shortening the array by one element If there are no elements in the list, exception occur.

push

  method push : void ($value : string)

Appending the value to the end of list.

remove

  method remove : string ($index : int)

Remove and return the element which is specified by the index.

resize

  method resize : void ($new_length : int)

Resize this list. If the new length is shorter than the current length, the list is truncated to the new length. If the new length is shorter than the current length, the list is truncated to the new length. If the new length is same as the current length, there is nothing to do. If the new length is longer than the current length, the list grows to the new length, and the values of the added elements are set to undef.

New length must be more than or equals to 0, otherwise a exception occur.

set

  method set : void ($index : int, $value : string)

Set the value with index.

set_array

  method set_array : void ($array : string[])

Set a array. Each elements of the array is copied to the correspoinding index of the array this list has. Note that this copy is address copy. Array must be defined, otherwise a exception occurs.

The length of argument array must be same as the length of current list array, otherwise a exception occures.

shift

  method shift : string ()

Shifts the first value of the list off and returns it, shortening the array by 1 and moving everything down. If there are no elements in the list, exception occur.

to_array

  method to_array : string[] ()

Convert StringList to string array.

unshift

  method unshift : void ($value : string)

Appending the value to the top of list.