Adds a node that extracts an element of a tuple associated with the node. Applies [Graph::tuple_get] to the parent graph, `this` node and `index`. # Example ``` # use ciphercore_base::data_types::{INT32, array_type}; # use ciphercore_base::graphs::create_context; let c = create_context().unwrap(); let g = c.create_graph().unwrap(); let t1 = array_type(vec![3, 2, 3], INT32); let t2 = array_type(
(&self, index: u64)
| 1096 | /// let n4 = n3.tuple_get(1).unwrap(); |
| 1097 | /// ``` |
| 1098 | pub fn tuple_get(&self, index: u64) -> Result<Node> { |
| 1099 | self.get_graph().tuple_get(self.clone(), index) |
| 1100 | } |
| 1101 | |
| 1102 | /// Adds a node to the parent graph that extracts an element of a named tuple associated with the node. |
| 1103 | /// |