(self, other: Self, func: B)
| 3820 | } |
| 3821 | |
| 3822 | pub fn call_binary<B: Into<BinaryFunc>>(self, other: Self, func: B) -> Self { |
| 3823 | HirScalarExpr::CallBinary { |
| 3824 | func: func.into(), |
| 3825 | expr1: Box::new(self), |
| 3826 | expr2: Box::new(other), |
| 3827 | name: NameMetadata::default(), |
| 3828 | } |
| 3829 | } |
| 3830 | |
| 3831 | pub fn call_unmaterializable(func: UnmaterializableFunc) -> Self { |
| 3832 | HirScalarExpr::CallUnmaterializable(func, NameMetadata::default()) |
no outgoing calls
no test coverage detected