blob: a3962f5f48400d18bb2cfd5f4bd0e201cf92df59 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include <yql/essentials/public/udf/udf_value.h>
namespace NKikimr {
namespace NMiniKQL {
NUdf::TUnboxedValuePod AppendString(const NUdf::TUnboxedValuePod value, const NUdf::TStringRef ref);
NUdf::TUnboxedValuePod PrependString(const NUdf::TStringRef ref, const NUdf::TUnboxedValuePod value);
NUdf::TUnboxedValuePod ConcatStrings(const NUdf::TUnboxedValuePod first, const NUdf::TUnboxedValuePod second);
NUdf::TUnboxedValuePod SubString(const NUdf::TUnboxedValuePod value, ui32 offset, ui32 size);
NUdf::TUnboxedValuePod MakeString(const NUdf::TStringRef ref);
NUdf::TUnboxedValuePod MakeStringNotFilled(ui32 size, ui32 pad = 0U);
}
}
|