(&self, output_type: Type)
| 2362 | /// ``` |
| 2363 | #[doc(hidden)] |
| 2364 | pub fn random(&self, output_type: Type) -> Result<Node> { |
| 2365 | self.add_node(vec![], vec![], Operation::Random(output_type)) |
| 2366 | } |
| 2367 | |
| 2368 | /// Adds a node creating a random permutation map of a one-dimensional array of length `n`. |
| 2369 | /// |