Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/29/19 13:53:26 (5 years ago)
Author:
mkommend
Message:

#2521: Integrated changes of #2943 into problem refactoring branch.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Data/3.3/Interfaces/IValueTypeArray.cs

    r16723 r17225  
    11#region License Information
    2 
    32/* HeuristicLab
    43 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    1918 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
    2019 */
    21 
    2220#endregion
    2321
     
    4745
    4846  [StorableType("f9db5740-1c4f-4f62-a9a8-84b32a461ea8")]
    49   public interface IValueTypeArray<T> : IValueTypeArray, IEnumerable<T> where T : struct {
    50     T this[int index] { get; set; }
     47  public interface IValueTypeArray<out T> : IValueTypeArray, IReadOnlyList<T> where T : struct {
     48    //T this[int index] { get; set; }
    5149  }
    5250}
    53 
    54 
Note: See TracChangeset for help on using the changeset viewer.