References in Move: A Complete Beginner’s Guide
1. What Is a Reference?
A reference in Move is a borrow — a pointer to a value that does not own it.Think of it as a temporary view into data that lives somewhere else.
There are two kinds:
Immutable reference (&T) — lets you read, but not modify.
...
noob6t5.hashnode.dev4 min read