summaryrefslogtreecommitdiffstats
path: root/yql/essentials/minikql/computation/mkql_custom_list.h
diff options
context:
space:
mode:
authorvvvv <[email protected]>2025-10-09 12:25:18 +0300
committervvvv <[email protected]>2025-10-09 12:57:17 +0300
commitcb77d014972b2cdb27d2e6d979fc3a2772b27ad4 (patch)
tree7f3bcd8ce71c6bd0f3ccc11e31b9f665475b819e /yql/essentials/minikql/computation/mkql_custom_list.h
parentd58a8990d353b051c27e1069141117fdfde64358 (diff)
YQL-20086 minikql
commit_hash:e96f7390db5fcbe7e9f64f898141a263ad522daa
Diffstat (limited to 'yql/essentials/minikql/computation/mkql_custom_list.h')
-rw-r--r--yql/essentials/minikql/computation/mkql_custom_list.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/yql/essentials/minikql/computation/mkql_custom_list.h b/yql/essentials/minikql/computation/mkql_custom_list.h
index 56060c0a832..19eb2f2f30e 100644
--- a/yql/essentials/minikql/computation/mkql_custom_list.h
+++ b/yql/essentials/minikql/computation/mkql_custom_list.h
@@ -5,7 +5,7 @@
namespace NKikimr {
namespace NMiniKQL {
-class TCustomListValue : public TComputationValue<TCustomListValue> {
+class TCustomListValue: public TComputationValue<TCustomListValue> {
public:
TCustomListValue(TMemoryUsageInfo* memInfo)
: TComputationValue(memInfo)
@@ -59,14 +59,14 @@ protected:
mutable std::optional<bool> HasItems_;
mutable NUdf::TUnboxedValue Iterator_;
- //FIXME Remove
- std::optional<ui64>& Length; // NOLINT(readability-identifier-naming)
+ // FIXME Remove
+ std::optional<ui64>& Length; // NOLINT(readability-identifier-naming)
std::optional<bool>& HasItems; // NOLINT(readability-identifier-naming)
};
-class TForwardListValue : public TCustomListValue {
+class TForwardListValue: public TCustomListValue {
public:
- class TIterator : public TComputationValue<TIterator> {
+ class TIterator: public TComputationValue<TIterator> {
public:
TIterator(TMemoryUsageInfo* memInfo, NUdf::TUnboxedValue&& stream);
@@ -84,9 +84,9 @@ private:
mutable NUdf::TUnboxedValue Stream_;
};
-class TExtendListValue : public TCustomListValue {
+class TExtendListValue: public TCustomListValue {
public:
- class TIterator : public TComputationValue<TIterator> {
+ class TIterator: public TComputationValue<TIterator> {
public:
TIterator(TMemoryUsageInfo* memInfo, TUnboxedValueVector&& iters);
~TIterator();
@@ -111,7 +111,7 @@ private:
const TUnboxedValueVector Lists_;
};
-class TExtendStreamValue : public TComputationValue<TExtendStreamValue> {
+class TExtendStreamValue: public TComputationValue<TExtendStreamValue> {
public:
using TBase = TComputationValue<TExtendStreamValue>;
@@ -126,5 +126,5 @@ private:
ui32 Index_ = 0;
};
-}
-}
+} // namespace NMiniKQL
+} // namespace NKikimr