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

AggregateHistory_SSF_SourceEmpty() private method

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