WurstScript icon indicating copy to clipboard operation
WurstScript copied to clipboard

Generic tuples

Open Frotty opened this issue 7 years ago • 0 comments

Sort of a precursor of #303 Allow tuples to be generic. Example usage would be iterators that return a key-value pair tuple.

tuple entry<K, V>(K key, V val)

public class MapIterator<K, V>

	function next() returns entry<K, V>

Frotty avatar Nov 14 '18 19:11 Frotty