mirror of
https://git.freebsd.org/ports.git
synced 2025-06-05 12:56:28 -04:00
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
13 lines
556 B
Text
13 lines
556 B
Text
This module tries to find middle ground between one at a time and all at
|
|
once processing of data sets.
|
|
|
|
The purpose of this module is to avoid the overhead of implementing an
|
|
iterative api when this isn't necessary, without breaking forward
|
|
compatibility in case that becomes necessary later on.
|
|
|
|
The API optimizes for when a data set typically fits in memory and is
|
|
returned as an array, but the consumer cannot assume that the data set is
|
|
bounded.
|
|
|
|
The API is destructive in order to minimize the chance that resultsets are
|
|
leaked due to improper usage.
|