GraphEngine icon indicating copy to clipboard operation
GraphEngine copied to clipboard

constructors for TSL types should consume IEnumerable instead of List

Open yatli opened this issue 8 years ago • 0 comments

for example:

cell C {
List<int> list;
}

Currently constructors of this cell are generated so that they take List to initialize the cell. This is inconvenient when we want to pass in some container/coroutine that is not a List (int[], for example).

yatli avatar Feb 25 '17 12:02 yatli