Really sorry if i am annoying.
Please correct the object
to Object
.
Which IDE do you use?
It's okay but should first test everything.
Really sorry if i am annoying.
Please correct the object
to Object
.
Which IDE do you use?
It's okay but should first test everything.
Thank you for the code that you share @vknow360,
I've tried it and your code 100% works perfectly.
This is the code I've tried :
@SimpleFunction(description="")
public YailList RemoveItem(YailList yailList, int index){
List list = new ArrayList<>();
String[] sArray = yailList.toStringArray();
for (String s:sArray){
list.add(s);
}
list.remove(index - 1);//now you can add and remove items
return YailList.makeList(list);
}
I know it is only an example, but...
Taifun