[][src]Function hatter::builtin::pop

pub fn pop(args: Args<'_>) -> Result<Value>

Remove the last Value from a List. Modifies the List.

This example is not tested
a := 1..=3  #=> [1,2,3]
pop(a)      #=> 3
len(a)      #=> 2