(g: &Graph, v: TypedValue)
| 137 | } |
| 138 | |
| 139 | pub fn constant(g: &Graph, v: TypedValue) -> Result<Node> { |
| 140 | g.constant(v.t, v.value) |
| 141 | } |
| 142 | |
| 143 | pub fn constant_scalar<T: TryInto<u128> + Not<Output = T> + TryInto<u8> + Copy>( |
| 144 | g: &Graph, |
no test coverage detected