Codebox Operators list.ecils

list.ecils

Slices a list in reverse order. (similar to zl.ecils)

list.ecils(input, size): [out1, out2]

Arguments:

Arguments

NameTypeDefaultDescription
inputlist

The input list to split into two slices.

sizenumber

The size in number of items of the right slice.

Returns

NameTypeDescription
out1list

A list composed of all of the items in the second slice of the list.

out2list

A list of up to length size composed of the first items in the input list.