Last change
on this file 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 | |
---|
1 | namespace 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.