Cadenza.Collections.Tests.EnumerableTest.AggregateReverseHistory_SSFR_SourceEmpty C# (CSharp) Метод

AggregateReverseHistory_SSFR_SourceEmpty() приватный Метод

private AggregateReverseHistory_SSFR_SourceEmpty ( ) : void
Результат void
		public void AggregateReverseHistory_SSFR_SourceEmpty ()
		{
			IEnumerable<int>  s = new int[]{};
			Func<int,int,int> f = (a,b) => a-b;
			Func<int,int>     r = x => x;
			s.AggregateReverseHistory (0, f, r);
		}
EnumerableTest