Finalize documentation for 3.0.0 release and update version number in CMakeLists.txt

This commit is contained in:
Jason Turner
2011-05-20 13:44:34 -06:00
parent e5f9dbb93b
commit 2786156086
6 changed files with 469 additions and 52 deletions

View File

@@ -131,11 +131,11 @@ def product(container) { foldl(container, `*`, 1.0) } \n\
# Returns a new container with the elements of the first value concatenated with the elements of the second value\n\
def concat(x, y) : call_exists(clone, x) { \n\
var retval = x; \n\
var len = y.size(); \n\
var i = 0; \n\
while (i < len) { \n\
retval.push_back(y[i]); \n\
++i; \n\
var inserter = back_inserter(retval); \n\
var range = range(y); \n\
while (!range.empty()) { \n\
inserter(range.front()); \n\
range.pop_front(); \n\
} \n\
retval; \n\
} \n\