HistoryStack

class HistoryStack<T>(var maxLength: Int = Int.MAX_VALUE - 10, initialCapacity: Int = 7)

Constructors

Link copied to clipboard
constructor(maxLength: Int = Int.MAX_VALUE - 10, initialCapacity: Int = 7)

Properties

Link copied to clipboard

Functions

Link copied to clipboard
fun current(): T?
Link copied to clipboard
fun push(value: T)
Link copied to clipboard
fun redo(): T?
Link copied to clipboard
fun undo(): T?