Example #1
0
 public IteratorAnonymousInnerClass(ListValue outerInstance)
 {
     this.outerInstance = outerInstance;
 }
Example #2
0
 internal PrependList(ListValue @base, AnyValue[] prepended)
 {
     this.Base      = @base;
     this.Prepended = prepended;
 }
Example #3
0
 internal DropNoValuesListValue(ListValue inner)
 {
     this.Inner = inner;
 }
Example #4
0
 internal AppendList(ListValue @base, AnyValue[] appended)
 {
     this.Base     = @base;
     this.Appended = appended;
 }
Example #5
0
 internal ReversedList(ListValue inner)
 {
     this.Inner = inner;
 }