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)
5 lines
317 B
Text
5 lines
317 B
Text
LibFlatArray acts as a highly efficient multi-dimensional array of
|
|
arbitrary objects (array of structs, AoS), but really uses a struct of
|
|
arrays (SoA) memory layout. It's great for writing vectorized code and
|
|
its lightning-fast iterators give you access to neighboring elements
|
|
with zero address generation overhead.
|