// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT License. // See the LICENSE file in the project root for more information. <#@ template debug="false" hostspecific="false" language="C#" #> <#@ assembly name="System.Core" #> <#@ import namespace="System.Linq" #> <#@ import namespace="System.Text" #> <#@ import namespace="System.Collections.Generic" #> <#@ output extension=".cs" #> // This code was generated by a T4 template at <#=DateTime.Now#>. namespace System.Reactive.Linq { public static partial class Observable { <# Func toUpper = s => char.ToUpper(s[0]) + s.Substring(1); string[] ordinals = new[] { "first", "second", "third", "fourth", "fifth", "sixth", "seventh", "eighth", "ninth", "tenth", "eleventh", "twelfth", "thirteenth", "fourteenth", "fifteenth", "sixteenth" }; for (int i = 3; i <= 16; i++) { var parameters = string.Join(", ", Enumerable.Range(1, i).Select(j => "IObservable source" + j)); var genArgs = string.Join(", ", Enumerable.Range(1, i).Select(j => "TSource" + j)); var sources = string.Join(", ", Enumerable.Range(1, i).Select(j => "source" + j)); var paramRefs = string.Join(" or ", Enumerable.Range(1, i).Select(j => "")); #> /// /// Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. /// <# for (int j = 0; j < i; j++) { #> /// The type of the elements in the <#=ordinals[j]#> source sequence. <# } #> /// The type of the elements in the result sequence, returned by the selector function. <# for (int j = 0; j < i; j++) { #> /// <#=toUpper(ordinals[j])#> observable source. <# } #> /// Function to invoke for each series of elements at corresponding indexes in the sources. /// An observable sequence containing the result of combining elements of the sources using the specified result selector function. /// <#=paramRefs#> or is null. public static IObservable Zip<<#=genArgs#>, TResult>(this <#=parameters#>, Func<<#=genArgs#>, TResult> resultSelector) { <# for (int j = 0; j < i; j++) { #> if (source<#=j + 1#> == null) { throw new ArgumentNullException(nameof(source<#=j + 1#>)); } <# } #> if (resultSelector == null) { throw new ArgumentNullException(nameof(resultSelector)); } return s_impl.Zip(<#=sources#>, resultSelector); } <# } #> } public static partial class ObservableEx { <# for (int i = 2; i <= 8; i++) { var parameters = string.Join(", ", Enumerable.Range(1, i).Select(j => "IObservable " + ordinals[j - 1])); var genArgs = string.Join(", ", Enumerable.Range(1, i).Select(j => "T" + toUpper(ordinals[j - 1]))); var sources = string.Join(", ", Enumerable.Range(1, i).Select(j => ordinals[j - 1])); var paramRefs = string.Join(" or ", Enumerable.Range(1, i).Select(j => "")); var tuple = "(" + string.Join(", ", Enumerable.Range(1, i).Select(j => "T" + toUpper(ordinals[j - 1]) + " " + toUpper(ordinals[j - 1]))) + ")"; var vals = string.Join(", ", Enumerable.Range(1, i).Select(j => "t" + j)); #> /// /// Merges the specified observable sequences into one observable sequence of tuple values whenever all of the observable sequences have produced an element at a corresponding index. /// <# for (int j = 0; j < i; j++) { #> /// The type of the elements in the <#=ordinals[j]#> source sequence. <# } #> <# for (int j = 0; j < i; j++) { #> /// <#=toUpper(ordinals[j])#> observable source. <# } #> /// An observable sequence containing the result of combining elements of the sources using tuple values. /// <#=paramRefs#> is null. public static IObservable<<#=tuple#>> Zip<<#=genArgs#>>(this <#=parameters#>) { <# for (int j = 0; j < i; j++) { #> if (<#=ordinals[j]#> == null) throw new ArgumentNullException(nameof(<#=ordinals[j]#>)); <# } #> return s_impl.Zip(<#=sources#>); } <# } #> } }