(&self, store: &'a mut Store)
| 174 | /// Available with the `std` feature enabled. |
| 175 | #[cfg(feature = "std")] |
| 176 | pub fn cursor<'a>(&self, store: &'a mut Store) -> Result<MemoryCursor<'a>> { |
| 177 | self.cursor_at(store, 0) |
| 178 | } |
| 179 | |
| 180 | /// Creates a cursor positioned at `position` bytes from the start of this memory. |
| 181 | /// |