龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2022-11-1 13:34

【emulate_dictionary__move_right】

[code]
inputs:
        KeyArray[MaxSize1](NumericArrayRef),
        ValueArray[MaxSize2](NumericArrayRef),

        FromIndex(NumericSimple);

variables: idx(0);


for idx = MaxSize1 downto FromIndex + 1 begin
        KeyArray[idx] = KeyArray[idx - 1];
        ValueArray[idx] = ValueArray[idx - 1];
end;
[/code]

页: [1]