Skip to content
Snippets Groups Projects
Commit 4acdcb3f authored by Fredrik Noring's avatar Fredrik Noring
Browse files

Flipped argument order.

Rev: lib/modules/ADT.pmod/Table.pmod:1.6
parent bc8bfd03
No related branches found
No related tags found
No related merge requests found
// Table.pmod by Fredrik Noring, 1998 // Table.pmod by Fredrik Noring, 1998
// $Id: Table.pmod,v 1.5 1998/05/09 22:13:58 noring Exp $ // $Id: Table.pmod,v 1.6 1998/05/09 22:38:58 noring Exp $
#define TABLE_ERR(msg) throw(({ "(Table) "+msg+"\n", backtrace() })) #define TABLE_ERR(msg) throw(({ "(Table) "+msg+"\n", backtrace() }))
...@@ -153,7 +153,7 @@ class table { ...@@ -153,7 +153,7 @@ class table {
return select(@remap(fields) - remap(cs, 1)); return select(@remap(fields) - remap(cs, 1));
} }
object where(function f, array(int|string)|int|string cs, mixed ... args) object where(array(int|string)|int|string cs, function f, mixed ... args)
{ {
array t = ({}); array t = ({});
cs = remap(arrayp(cs)?cs:({ cs })); cs = remap(arrayp(cs)?cs:({ cs }));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment