[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [OT] Swiftly return multiple values
- From: steve donovan <steve.j.donovan@...>
- Date: Thu, 5 Jun 2014 09:50:43 +0200
On Thu, Jun 5, 2014 at 9:44 AM, Dirk Laurie <dirk.laurie@gmail.com> wrote:
> table.sort(some_table, __lt)
>
> would be immediately understandable though not pretty.
There's always the way that Python does it, also supported in PL from
the days when I was still slavishly porting Python modules:
table.sort(some_table,operator.lt)