Closed Pencilcaseman closed 1 year ago
Add support for iterating over Array classes. This includes Array types (CPU and GPU), function types, more complex operations and ArrayViews.
Example:
auto myArr = lrc::fromData({{1, 2, 3}, {4, 5, 6}}); for (const auto &row : myArr) { fmt::print("{}\n", row); } // [1 2 3] // [4 5 6]
Add support for iterating over Array classes. This includes Array types (CPU and GPU), function types, more complex operations and ArrayViews.
Example: