We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cbf7ae commit 55743deCopy full SHA for 55743de
docs/tutorials/indexTables.md
@@ -71,9 +71,9 @@ The slicing needs to be pre-declared using `Preslice` (or `PresliceUnsorted` if
71
struct Task {
72
Preslice<aod::Tracks> perCol = aod::track::collisionId;
73
void proces(aod::Collisions const & cols, aod::Tracks const& tracks) {
74
- for (auto& col : cols) {
75
- auto groupedTracks = tracks.sliceBy(perCol, col.globalIndex());
76
- }
+ for (auto& col : cols) {
+ auto groupedTracks = tracks.sliceBy(perCol, col.globalIndex());
+ }
77
}
78
79
```
0 commit comments