Since IEnumerables are starting to be as common as arrays, if not more so, I think it would be very productive to provide a shorthand syntax for IEnumerable of some type. For example:
def DoStuffWithStrings(strings as string*):
pass
Instead of:
def DoStuffWithStrings(strings as IEnumerable of string):
pass
Description
Since IEnumerables are starting to be as common as arrays, if not more so, I think it would be very productive to provide a shorthand syntax for IEnumerable of some type. For example:
def DoStuffWithStrings(strings as string*):
pass
Instead of:
def DoStuffWithStrings(strings as IEnumerable of string):
pass