StringList.addFirst Method¶
Module: StringList
Definition¶
Inserts a new string at the beginning of the list, shifting existing elements one position towards the end.
This method is particularly useful for cases where the order of elements is significant, and new entries must be prioritized.
add_first(self, value: str) -> None
Parameters
valuestrin The string to be inserted at the start of the list
Exceptions
An error has occurred during Devices Library execution.
void addFirst(String? value)
Parameters
valueStringin The string to be inserted at the start of the list
Exceptions
An error has occurred during Devices Library execution.
public void AddFirst(string value)
Parameters
valuestringin The string to be inserted at the start of the list
Exceptions
An error has occurred during Devices Library execution.
public void addFirst(String value) throws DevicesException
Parameters
valueStringin The string to be inserted at the start of the list
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesStringList_AddFirst (
    ID3_DEVICES_STRING_LIST hStringList,
    const char * value)
Parameters
hStringListID3_DEVICES_STRING_LISTin Handle to the StringList object.valueconst char *in The string to be inserted at the start of the list
Returns