We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cfcc58 commit f291a39Copy full SHA for f291a39
CHANGELOG.md
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
7
8
## [Unreleased]
9
10
+- Add iterators for register/cluster/field arrays
11
+
12
## [v0.31.1] - 2023-11-27
13
14
- Fix cluster arrays
src/generate/register.rs
@@ -920,7 +920,7 @@ pub fn fields(
920
#reader_ty::new ( #value )
921
}
922
#[doc = "Iterator for array of:"]
923
- #[doc = #array_doc]
+ #[doc = #doc]
924
#inline
925
pub fn #name_snake_case_iter(&self) -> impl Iterator<Item = #reader_ty> + '_ {
926
(0..#dim).map(|n| #reader_ty::new ( #value ))
0 commit comments