Cadenza.Collections.Tests.EnumerableTest.AggregateHistory_SSFR_SourceEmpty C# (CSharp) Method

AggregateHistory_SSFR_SourceEmpty() private method

private AggregateHistory_SSFR_SourceEmpty ( ) : void
return void
		public void AggregateHistory_SSFR_SourceEmpty ()
		{
			IEnumerable<int>  s = new int[]{};
			Func<int,int,int> f = (a,b) => a-b;
			Func<int,int>     r = x => x;
			s.AggregateHistory (0, f, r);
		}
EnumerableTest