We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ArrayTiler
1 parent fa30e3e commit da560f5Copy full SHA for da560f5
substrate/src/layout/placement/array.rs
@@ -42,12 +42,24 @@ impl<'a> ArrayTilerBuilder<'a> {
42
self
43
}
44
45
+ #[inline]
46
+ pub fn space(&mut self, space: i64) -> &mut Self {
47
+ self.space = space;
48
+ self
49
+ }
50
+
51
#[inline]
52
pub fn alt_mode(&mut self, mode: impl Into<AlignMode>) -> &mut Self {
53
self.alt_mode = Some(mode.into());
54
55
56
57
58
+ pub fn alt_space(&mut self, alt_space: i64) -> &mut Self {
59
+ self.alt_space = alt_space;
60
61
62
63
64
pub fn push<'b>(&mut self, tile: impl Into<Tile<'b>>) -> &mut Self
65
where
0 commit comments