Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoisSestier committed Aug 2, 2021
2 parents 72cded2 + e0e543a commit a90131e
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,14 @@ represent and access a 2d grid of heterogeneous type easily
chunk ck;


// access
// access

auto [elevation_, tile_id_] = ck.get<elevation, tile_id>(10, 30);
auto [elevation_, tile_id_] = ck.get<elevation, tile_id>(10, 30);

// modify
// modify

elevation_ = 50;
tile_id_ = 10;
}
elevation_ = 50;
tile_id_ = 10;

```

0 comments on commit a90131e

Please sign in to comment.