Pops (removes and outputs) the first element of the sequence variable. Works only on sequences. If the variable is not a sequence or the sequence is empty, an error is thrown.
; ; pop first element from a local sequence
[10 20 30 40] >= seq ; ; create a local sequence
Get(seq) | Log ; ; local sequence => [10, 20, 30, 40]
PopFront(Name: seq) | Log ; ; pops the first element as output => 10
Get(seq) | Log