Linklist.setvalue
From OpenEUO
Calling Pattern
Call
local k = sl.linklist() -- later local r = k.setvalue(a)
Arguments
a is a number
Results
r is a number
Example Usage
local k = sl.linklist() local j = k.inserta(0,'one') local j0 = j j = k.inserta(j,'two') j = k.inserta(j,'three') k.setvalue(j0,'uno') print(k.value(k.head()))
--> uno
Description
Calling setvalue replaces the value associated with a valid link pseudo-index a. For all successful calls, setvalue returns a. If the list is empty or a is otherwise an invalid pseudo-index, setvalue returns 0.