flattenString


Description:

public static ArrayList<string> flattenString (ArrayList<ArrayList<string>> nested)

Flattens a nested list of string lists into a single list.

Example:

    var flat = Lists.flattenString (nested);

Parameters:

nested

the nested list.

Returns:

a flat ArrayList.