[Nice-commit] Nice/stdlib/nice/lang range.nice,1.4,1.5
Brought to you by:
bonniot
|
From: Daniel B. <bo...@us...> - 2005-04-01 16:02:31
|
Update of /cvsroot/nice/Nice/stdlib/nice/lang In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8695/stdlib/nice/lang Modified Files: range.nice Log Message: Added missing List method implementations. Index: range.nice =================================================================== RCS file: /cvsroot/nice/Nice/stdlib/nice/lang/range.nice,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** range.nice 13 Aug 2004 12:44:04 -0000 1.4 --- range.nice 1 Apr 2005 16:02:21 -0000 1.5 *************** *** 50,53 **** --- 50,54 ---- add(elem) = throw new UnsupportedOperationException(); + add(index, elem) = throw new UnsupportedOperationException(); contains(elem) = begin.index <= cast(elem) <= end.index; *************** *** 60,63 **** --- 61,65 ---- remove(elem) = throw new UnsupportedOperationException(); + removeAt(index) = throw new UnsupportedOperationException(); removeAll(elems) = throw new UnsupportedOperationException(); } |