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