LuanTable constructors

Posted by Hugo <Nabble> on
URL: https://old-forum.luan.software/LuanTable-constructors-tp91.html

Shouldn't LuanTable have a constructor that takes a Collection<? extends Object>?

This is what I have to do now as a turnaround:
List<Node> list = ...
List<Object> objects = new ArrayList<Object>(list);
return new LuanTable(objects);