示例#1
0
 private static Task <ImmutableArray <Resource> > GatherExplicitDependenciesAsync(InputList <Resource> resources)
 => resources.ToOutput().GetValueAsync();
示例#2
0
文件: InputList.cs 项目: t0yv0/pulumi
 public void AddRange(InputList <T> inputs)
 {
     _outputValue = Concat(inputs);
 }
示例#3
0
文件: InputList.cs 项目: t0yv0/pulumi
 /// <summary>
 /// Concatenates the values in this list with the values in <paramref name="other"/>,
 /// returning the concatenated sequence in a new <see cref="InputList{T}"/>.
 /// </summary>
 public InputList <T> Concat(InputList <T> other)
 => Output.Concat(_outputValue, other._outputValue);
示例#4
0
文件: InputList.cs 项目: t0yv0/pulumi
 /// <summary>
 /// Note: this is non-standard convenience for use with collection initializers.
 /// </summary>
 public void Add(InputList <T> inputs)
 {
     AddRange(inputs);
 }