| 934 | /// \brief Scalar factory for non-null scalars |
| 935 | template <typename Value> |
| 936 | Result<std::shared_ptr<Scalar>> MakeScalar(std::shared_ptr<DataType> type, |
| 937 | Value&& value) { |
| 938 | return MakeScalarImpl<Value&&>{type, std::forward<Value>(value), NULLPTR}.Finish(); |
| 939 | } |
| 940 | |
| 941 | /// \brief Type-inferring scalar factory for non-null scalars |
| 942 | /// |