[Nice-commit] Nice/stdlib/nice/lang collections.nice,1.60,1.61
Brought to you by:
bonniot
From: <bo...@us...> - 2004-02-27 15:38:39
|
Update of /cvsroot/nice/Nice/stdlib/nice/lang In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5836/stdlib/nice/lang Modified Files: collections.nice Log Message: Corrected nicedoc comment for filter. Index: collections.nice =================================================================== RCS file: /cvsroot/nice/Nice/stdlib/nice/lang/collections.nice,v retrieving revision 1.60 retrieving revision 1.61 diff -C2 -d -r1.60 -r1.61 *** collections.nice 24 Feb 2004 16:04:56 -0000 1.60 --- collections.nice 27 Feb 2004 15:29:52 -0000 1.61 *************** *** 36,44 **** <Collection C, T> C<T> filter(C<T>, T->boolean); ! /** Return a collection containing all elements for which converter returns a non-null value. - It is possible to retain only elemnts with a subtype of the original - element type, in which case the returned collection has that - element type. */ <Collection C, T, U> C<!U> filter(C<T> source, T->?U converter) --- 36,41 ---- <Collection C, T> C<T> filter(C<T>, T->boolean); ! /** Return a collection containing all the elements for which converter returns a non-null value. */ <Collection C, T, U> C<!U> filter(C<T> source, T->?U converter) |