Adds a node to the parent graph converting an integer array or scalar associated with the node to the binary form. Applies [Graph::a2b] to the parent graph and `this` node. # Example ``` # use ciphercore_base::graphs::create_context; # use ciphercore_base::data_types::{array_type, INT32}; let c = create_context().unwrap(); let g = c.create_graph().unwrap(); let t = array_type(vec![3, 2], INT32)
(&self)
| 1055 | /// let n2 = n1.a2b().unwrap(); |
| 1056 | /// ``` |
| 1057 | pub fn a2b(&self) -> Result<Node> { |
| 1058 | self.get_graph().a2b(self.clone()) |
| 1059 | } |
| 1060 | |
| 1061 | /// Adds a node to the parent graph converting a binary array associated with the node to an array of a given scalar type. |
| 1062 | /// |