Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Struct Point conversion to tuple (ixmilia#47)
Added tuple conversion for struct Point for one liner extraction of its inner data by introducing method "tuple". This change is just for convenience to downstream user in getting coordinates like the examples below: ```rust let (x, _, z) = p.tuple(); let (_, y, z) = p.tuple(); let (x, y, _) = p.tuple(); ```
- Loading branch information