blob: 870435ff4e99ab0d1ca85871ab74f6aec70b0730 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <yql/essentials/public/udf/udf_types.h>
#include <yql/essentials/public/udf/udf_type_ops.h>
namespace NYql::NDom {
NUdf::THashType HashDom(const NUdf::TUnboxedValuePod value);
bool EquateDoms(const NUdf::TUnboxedValuePod lhs, const NUdf::TUnboxedValuePod rhs);
}
|