Add an environment value.
(self, value: E)
| 87 | |
| 88 | /// Add an environment value. |
| 89 | fn env<E: Clone + 'static>(self, value: E) -> SetenvView<Self, E> { |
| 90 | SetenvView::new(self, value) |
| 91 | } |
| 92 | |
| 93 | /// Indicates that this item can expand within a stack. |
| 94 | fn flex(self) -> Flex<Self> { |
no outgoing calls
no test coverage detected