Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/03/17 12:48:46 (7 years ago)
Author:
pkimmesw
Message:

#2665 Added Dictionary of stacks to interperter, clear all stacks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Stack/IPushStack.cs

    r14909 r14914  
    33  using System.Collections.Generic;
    44
    5   public interface IPushStack<T> : ICollection<T>, IPushStackBase {
     5  public interface IPushStack<T> : ICollection<T>, IPushStack {
    66    T Top { get; }
    77    T TopOrDefault { get; }
     
    99    T BottomOrDefault { get; }
    1010    T this[int key] { get; set; }
     11    new int Count { get; }
    1112    void Push(T item);
    1213    void Push(T item1, T item2);
    1314    void Push(T item1, T item2, T item3);
    1415    void Push(T item1, T item2, T item3, T item4);
    15     void Push(IReadOnlyList<T> items, int startIndex = 0);
     16    void Push(IReadOnlyList<T> items, int startIndex);
    1617    void Push(IReadOnlyList<T> items);
    1718    void Push(IEnumerable<T> items);
     19    new void Clear();
    1820    T Peek();
    1921    T[] Peek(int count);
Note: See TracChangeset for help on using the changeset viewer.