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 6953d73 commit f6239c0Copy full SHA for f6239c0
src/layout/mod.rs
@@ -25,27 +25,24 @@ impl Layout {
25
pub(crate) fn flag(self) -> u32 {
26
self.0
27
}
28
-}
29
30
-impl Layout {
31
- #[doc(hidden)]
32
#[inline(always)]
33
- pub fn one_dimensional() -> Layout {
+ pub(crate) fn one_dimensional() -> Layout {
34
Layout(CORDER | FORDER)
35
36
+
37
38
- pub fn c() -> Layout {
+ pub(crate) fn c() -> Layout {
39
Layout(CORDER)
40
41
42
43
- pub fn f() -> Layout {
+ pub(crate) fn f() -> Layout {
44
Layout(FORDER)
45
46
47
48
- pub fn none() -> Layout {
+ pub(crate) fn none() -> Layout {
49
Layout(0)
50
51
0 commit comments