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 e692372 commit 4a3c970Copy full SHA for 4a3c970
ices/98897.rs
@@ -0,0 +1,3 @@
1
+pub fn main() {
2
+ (|_, ()| ())([return, ()]);
3
+}
ices/98932.rs
@@ -0,0 +1,13 @@
+pub struct EntriesBuffer(Box<[[u8; HashesEntry::LEN]; 5]>);
+
+impl EntriesBuffer {
4
+ pub fn iter_child_buffers(&mut self) -> impl Iterator<Item = &mut [u8; HashesEntry::LEN]> {
5
+ self.0.iter_mut()
6
+ }
7
8
9
+pub struct HashesEntry<'a>(&'a [u8]);
10
11
+impl HashesEntry<'_> {
12
+ pub const LEN: usize = 1;
13
0 commit comments