[Nice-commit] Nice NEWS,1.48,1.49
Brought to you by:
bonniot
From: Arjan B. <ar...@us...> - 2004-09-13 22:09:36
|
Update of /cvsroot/nice/Nice In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1958/Nice Modified Files: NEWS Log Message: Multi-argument indexing. Index: NEWS =================================================================== RCS file: /cvsroot/nice/Nice/NEWS,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** NEWS 4 Sep 2004 19:17:48 -0000 1.48 --- NEWS 13 Sep 2004 22:09:24 -0000 1.49 *************** *** 26,29 **** --- 26,31 ---- * Underscores are allowed and ignored in literal numbers. example: long x = 1_000_123_000_456; + * The indexing operator supports multiple arguments now. For instance + 'a[x,y]' is syntactic sugar for 'a.get(x,y)'. * Lists now support a wide array of slicing and indexing operations. There is a new bit of syntax, '@', which indicates |