mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
add notes about the new constructor
This commit is contained in:
@@ -44,6 +44,10 @@ public class StringList implements Iterable<String> {
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Construct a StringList from a random pile of objects. Null values will
|
||||
* stay null, but all the others will be converted to String values.
|
||||
*/
|
||||
public StringList(Object... items) {
|
||||
count = items.length;
|
||||
data = new String[count];
|
||||
|
||||
Reference in New Issue
Block a user