You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <para>Buckets path can be expressed in different ways, and an aggregation may accept some or all of these<br/>forms depending on its type. Please refer to each aggregation's documentation to know what buckets<br/>path forms they accept.</para>
@@ -43,8 +35,8 @@ public enum Kind
43
35
Dictionary
44
36
}
45
37
46
-
privatereadonlyKind_kind;
47
-
privatereadonlyobject_value;
38
+
internalreadonlyKind_kind;
39
+
internalreadonlyobject_value;
48
40
49
41
KindIComplexUnion<Kind>.ValueKind=>_kind;
50
42
@@ -111,12 +103,36 @@ public bool TryGetDictionary([NotNullWhen(true)] out Dictionary<string, string>?
_factories=newDictionary<Type,Func<object,BucketsPath>>{{typeof(string), o =>BucketsPath.Single((string)o)},{typeof(string[]), o =>BucketsPath.Array((string[])o)},{typeof(Dictionary<string,string>), o =>BucketsPath.Dictionary((Dictionary<string,string>)o)}};
0 commit comments