E.g int[] i = [ 1, 2 ]; i = i.remove( 1 );//able to automagically deduce
char[] c = [ 'a', 'b' ]; c = c.remove( 1 ); //unable to deduce what char[] is in range
E.g int[] i = [ 1, 2 ]; i = i.remove( 1 );//able to automagically deduce
char[] c = [ 'a', 'b' ]; c = c.remove( 1 ); //unable to deduce what char[] is in range