()
| 27 | |
| 28 | impl SumDoublesFunction { |
| 29 | pub(super) fn new() -> Rc<Self> { |
| 30 | Rc::from(Self { |
| 31 | metadata: CallableMetadataBuilder::new("SUM_DOUBLES") |
| 32 | .with_return_type(ExprType::Double) |
| 33 | .with_syntax(&[( |
| 34 | &[], |
| 35 | Some(&RepeatedSyntax { |
| 36 | name: Cow::Borrowed("arg"), |
| 37 | type_syn: RepeatedTypeSyntax::AnyValue, |
| 38 | sep: ArgSepSyntax::Exactly(ArgSep::Long), |
| 39 | require_one: false, |
| 40 | allow_missing: true, |
| 41 | }), |
| 42 | )]) |
| 43 | .test_build(), |
| 44 | }) |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | impl Callable for SumDoublesFunction { |
nothing calls this directly
no test coverage detected