Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Stack/IPrintStack.cs @ 15334

Last change on this file since 15334 was 15334, checked in by pkimmesw, 7 years ago

#2665 Testet Problems, Testet error functions, Small fixes, Created HL files

File size: 426 bytes
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis.Push.Stack {
2  using System.Collections.Generic;
3
4  public interface IPrintStack : IPushStack {
5    bool IsCurrentLineEmpty { get; }
6    IReadOnlyList<string> Lines { get; }
7
8    void NewLine();
9    void Push<T>(T item);
10    void Push(double item);
11    void Push(long item);
12    void Push(int item);
13    void Push(char item);
14    void Push(bool item);
15  }
16}
Note: See TracBrowser for help on using the repository browser.