List concatenation
Posted: Mon May 25, 2009 11:04 am
I've added support for "a + b" for lists. This will work for anything IList<of T>. The two operands are left unmodified and a new list instance is created using a's type.
Haven't gotten to "a += b" yet.
a = [1, 2]
b = [3, 4]
assert a + b == [1, 2, 3, 4]
Haven't gotten to "a += b" yet.