如何在 Qore 中将长列表拆分成多个部分

How to split long list into pieces in Qore

我想像这样在 Qore 中拆分列表:

list a = (1,2,3,4,5,6);
list pieces = split_list_into_pieces(a, 2);
printf("%y\n", pieces);

期望的输出:

[[1,2], [3,4], [5,6]]

即我想拿一个(据说很长)列表并将其分成给定(最大)长度的片段。

我可以这样做:

list sub split_list_into_pieces(list a, int length)
{
    int i = 0;
    list ret = ();
    list temp = ();
    foreach any x in (a)
    {
        temp += x;
        i++;
        if (i == length)
        {
            push ret, temp;
            temp = ();
            i = 0;
        }
    }
    if (temp)
    {
        push ret, temp;
    }
    return ret;
}

但这不是很优雅,是吗?

有更好的解决方案吗?

你可以这样做:

list sub list_chunk(list a, int length) {
    list result = ();
    while (a)
        push (result, extract (a, 0, length));
    return result;
}