|
Data.List.PointedList.Circular |
|
|
|
Synopsis |
|
|
|
Documentation |
|
module Data.List.PointedList |
|
|
Move the focus to the next element in the list. If the last element is
currently focused, loop to the first element.
|
|
|
Move the focus to the previous element in the list. If the first element is
currently focused, loop to the last element.
|
|
|
An alias of deleteRight.
|
|
|
Possibly delete the element at the focus, then move the element on the
left to the focus. If no element is on the left, focus on the element to
the right. If the deletion will cause the list to be empty, return
Nothing.
|
|
|
Possibly delete the element at the focus, then move the element on the
right to the focus. If no element is on the right, focus on the element to
the left. If the deletion will cause the list to be empty, return
Nothing.
|
|
|
Move
|
|
Produced by Haddock version 2.6.1 |