File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
differential-dataflow/src/trace/implementations Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -542,7 +542,10 @@ mod val_batch {
542
542
543
543
/// A builder for creating layers from unsorted update tuples.
544
544
pub struct OrdValBuilder < L : Layout , CI > {
545
- result : OrdValStorage < L > ,
545
+ /// The in-progress result.
546
+ ///
547
+ /// This is public to allow container implementors to set and inspect their container.
548
+ pub result : OrdValStorage < L > ,
546
549
singleton : Option < ( <L :: Target as Update >:: Time , <L :: Target as Update >:: Diff ) > ,
547
550
/// Counts the number of singleton optimizations we performed.
548
551
///
@@ -1038,7 +1041,10 @@ mod key_batch {
1038
1041
1039
1042
/// A builder for creating layers from unsorted update tuples.
1040
1043
pub struct OrdKeyBuilder < L : Layout , CI > {
1041
- result : OrdKeyStorage < L > ,
1044
+ /// The in-progress result.
1045
+ ///
1046
+ /// This is public to allow container implementors to set and inspect their container.
1047
+ pub result : OrdKeyStorage < L > ,
1042
1048
singleton : Option < ( <L :: Target as Update >:: Time , <L :: Target as Update >:: Diff ) > ,
1043
1049
/// Counts the number of singleton optimizations we performed.
1044
1050
///
You can’t perform that action at this time.
0 commit comments