Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoisSestier authored Jul 31, 2021
1 parent 94bd1e9 commit e0e543a
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 e0e543a

Please sign in to comment.