(self, data_type: T::DataType)
| 1036 | } |
| 1037 | |
| 1038 | pub fn cast(self, data_type: T::DataType) -> Expr<T> { |
| 1039 | Expr::Cast { |
| 1040 | expr: Box::new(self), |
| 1041 | data_type, |
| 1042 | } |
| 1043 | } |
| 1044 | |
| 1045 | pub fn call(name: T::ItemName, args: Vec<Expr<T>>) -> Expr<T> { |
| 1046 | Expr::Function(Function { |
no outgoing calls
no test coverage detected