some-flower-64874
10/28/2020, 10:15 AMpublic static implicit operator InputList<T>(Output<IEnumerable<T>> values)
=> values.Apply(a => ImmutableArray.CreateRange(a));
asking the question got me closer...let inputListFromSeq<'a> (values: Output<seq<'a>>) =
values
|> Outputs.apply System.Collections.Immutable.ImmutableArray.CreateRange
|> InputList<'a>.op_Implicit
Naming is a bit meh but it achieves the desired result for me.