Using Vectors in Move
Vectors in Move are dynamic lists that can grow or shrink as needed, making them essential for managing collections of data, including structs.
Vectors
When you want a list of values, use vectors. A vector
in Move is dynamic by default and has no fixed size. It can get larger or smaller as needed. Vector in Supra and Aptos are available to import and use at std::vector
.
You just need to do “use std::vector
” at the top of your module to be able to access it.
You can also store structs in vectors, Note that for structs that are stored in a resource struct, you need to add the store attribute to the struct:
When creating an empty vector you can use the following syntax: let empty_vector = vector[];
We need to track all the Dinosaurs created from Dinosaur_nest, We can do this by declaring two new structs:
Dinosaur
Struct having Key and a new resource struct named DinosaurSwarm
which has a vector of Dinosaur structs, this resource needs to be stored at 0xcafe
in init_module
with an empty vector of Dinosaurs to start with.
Code Follows Like:
We've only been using the init_module
function, which is called when the module is deployed to initialize default values. we'll create one more function that will later be called by the user to create a new Dinosaur.
Let’s create a new function named spawn_Dinosaur
that takes one argument of type u64
named Gendna
and returns a Dinosaur struct with that Gendna:
Last updated