1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Source: r-cran-foreach
Section: gnu-r
Priority: optional
Maintainer: Dirk Eddelbuettel <edd@debian.org>
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.2.2), cdbs, r-cran-codetools, r-cran-iterators
Standards-Version: 3.9.6
Homepage: http://cran.r-project.org/web/packages/foreach/index.html
Package: r-cran-foreach
Architecture: all
Depends: ${R:Depends}, r-cran-codetools, r-cran-iterators
Description: GNU R foreach looping support
This package provides support for the foreach looping construct.
Foreach is an idiom that allows for iterating over elements in a
collection, without the use of an explicit loop counter. This package
in particular is intended to be used for its return value, rather
than for its side effects. In that sense, it is similar to the
standard lapply function, but doesn't require the evaluation of
a function. Using foreach without side effects also facilitates
executing the loop in parallel.
|