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

NAME

SPVM::List - List in SPVM | Dynamic object array

SYNOPSYS

  use List;
  
  # Create a object list
  my $object_list = List->new([(object)Byte->new(1), Int->new(2), Long->new(3)]);

  # Create a Int list
  my $object_list = List->new([Byte->new(1), Int->new(2), Int->new(3)]);
  
  # Create a object list with length
  my $object_list = List->new_len([], 3);

  # Create a Int list with length
  my $object_list = List->new_len(new Int[0], 3);

  # Get list length
  my $length = $object_list->length;
  
  # Push object value
  $object_list->push(Int->new(3));

  # Pop object value.
  my $object_value = $object_list->pop;

  # Unshift object value.
  $object_list->unshift(Int->new(3));
  
  # Shift object value.
  my $object_value = $object_list->shift;
  
  # Set object value.
  $object_list->set(2, Int->new(3));
  
  # Get object value.
  my $object_value = $object_list->get(2);

  # Insert object value
  $object_list->insert(1, Int->new(3));

  # Remove object value
  my $object_value = $object_list->remove(1);

  # Convert List to object array.
  my $int_array = $object_list->to_array;

  # Convert List to Int array.
  my $int_array = (Int[])$object_list->to_array;

DESCRIPTION

List is dynamic object array.

CLASS METHODS

new

    static method new : List ($objects : oarray)

Create a new List object with specific object 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 : List ($proto_array : oarray, $length : int)

Create a new List object with prototype array and array length. Prototype array is used to decide the array type of internal values.

INSTANCE METHODS

get

  method get : object ($index : int)

Get the value with index.

insert

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

Insert a element to the specific index.

length

  static method length : int ()

Get list length.

pop

  method pop : object ()

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 : object)

Appending the value to the end of list.

remove

  method remove : object ($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 : object)

Set the value with index.

set_array

  method set_array : void ($array : oarray)

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.

to_array

  method to_array : oarray ()

Convert List to object array.

shift

  method shift : object ()

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.

unshift

  method unshift : void ($value : object)

Appending the value to the top of list.