[pure-lang-svn] SF.net SVN: pure-lang:[804] pure/trunk/lib/primitives.pure
Status: Beta
Brought to you by:
agraef
|
From: <ag...@us...> - 2008-09-20 09:24:41
|
Revision: 804
http://pure-lang.svn.sourceforge.net/pure-lang/?rev=804&view=rev
Author: agraef
Date: 2008-09-20 09:24:14 +0000 (Sat, 20 Sep 2008)
Log Message:
-----------
Comment change.
Modified Paths:
--------------
pure/trunk/lib/primitives.pure
Modified: pure/trunk/lib/primitives.pure
===================================================================
--- pure/trunk/lib/primitives.pure 2008-09-20 09:21:34 UTC (rev 803)
+++ pure/trunk/lib/primitives.pure 2008-09-20 09:24:14 UTC (rev 804)
@@ -470,8 +470,7 @@
extern expr* matrix_rows(expr *x) = rowcat;
extern expr* matrix_columns(expr *x) = colcat;
-/* Combinations of rowcat/colcat and map, to be used in matrix
- comprehensions. */
+/* Combinations of rowcat/colcat and map. */
rowcatmap f [] = {};
rowcatmap f xs@(_:_) = rowcat (map f xs);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|