- java.lang.Object
-
- swim.runtime.warp.ListLinkDelta
-
public abstract class ListLinkDelta extends Object
-
-
Method Summary
Modifier and Type Method Description static ListLinkDeltaclear()static ListLinkDeltadrop(int lower)static ListLinkDeltamove(int fromIndex, int toIndex, Value key)static ListLinkDeltaremove(int index, Value key)static ListLinkDeltatake(int upper)abstract ValuetoValue()static ListLinkDeltaupdate(int index, Value key, Value value)
-
-
-
Method Detail
-
update
public static ListLinkDelta update(int index, Value key, Value value)
-
remove
public static ListLinkDelta remove(int index, Value key)
-
move
public static ListLinkDelta move(int fromIndex, int toIndex, Value key)
-
drop
public static ListLinkDelta drop(int lower)
-
take
public static ListLinkDelta take(int upper)
-
clear
public static ListLinkDelta clear()
-
toValue
public abstract Value toValue()
-
-