pyquibbler.can_redo

pyquibbler.can_redo() bool

Indicates whether an assignment redo exists.

Return type:

bool

See also

can_undo, undo, redo

Examples

>>> a = iquib([1, 2, 3])
>>> a[1] = 10
>>> qb.undo()
>>> qb.can_redo()
True
>>> qb.redo()
>>> qb.can_redo()
False