hash.h 291 B

12345678910111213
  1. #pragma once
  2. #include <yql/essentials/public/udf/udf_types.h>
  3. #include <yql/essentials/public/udf/udf_type_ops.h>
  4. namespace NYql::NDom {
  5. NUdf::THashType HashDom(const NUdf::TUnboxedValuePod value);
  6. bool EquateDoms(const NUdf::TUnboxedValuePod lhs, const NUdf::TUnboxedValuePod rhs);
  7. }