blob: 6e0dab1002c8ae731c3db5c81a0bb9a22c60743f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include <yql/essentials/public/udf/udf_types.h>
#include <yql/essentials/public/udf/udf_value_builder.h>
namespace NYql::NDom {
template<bool Strict, bool AutoConvert>
NUdf::TUnboxedValuePod PeelDom(const NUdf::ITypeInfoHelper* typeHelper, const NUdf::TType* shape, const NUdf::TUnboxedValuePod value, const NUdf::IValueBuilder* valueBuilder, const NUdf::TSourcePosition& pos);
}
|