This Rust library allows you to use the arrow operator ->
to access the field of the row pointer, just like C/C++.
pt![
\]
get a mutable reference of the pointed field.
pt![
\= \
assign expression to the pointed field.
pt![
\= \];
assign the pointed field to the other pointed field.
| Objects | Explanations |
| :---: | :---- |
| \ ```rust
let mut stack: Stack use carrow::{ pt, refpt };
let topback = pt![stack.top->back];
pt![backof(topback)->back->data = 'x'];
pt![stack.top->backs(4)->data = stack.backof_top()->data];
```.
)(\Example