Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3040_VectorBasedGP/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/IVector.cs @ 17365

Last change on this file since 17365 was 17365, checked in by pfleck, 4 years ago

#3040 Added explicit vector types to avoid type-missmatches when representing vectors as IList<T>, List<T> or IReadOnlyList<T>.

File size: 372 bytes
Line 
1using System.Collections;
2using System.Collections.Generic;
3using HEAL.Attic;
4
5namespace HeuristicLab.Problems.DataAnalysis {
6  [StorableType("E6B5D191-F094-4A6C-91C1-011191C13A16")]
7  public interface IVector : IEnumerable {
8  }
9
10  [StorableType("FAAFAE70-9240-49FF-9614-EE4A2C17A3C7")]
11  public interface IVector<out T> : IVector, IReadOnlyList<T> {
12  }
13}
Note: See TracBrowser for help on using the repository browser.