diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-01-30 04:37:19 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-01-30 04:37:19 +0200 |
commit | c1d9bbc3453454aceb28f51e72e4aeb8ef1c12eb (patch) | |
tree | db7cd93c99583a858ef94b3dab95b882832da251 /py/objarray.c | |
parent | cdd2c62e07549e36dba00bc37d7ba7a4cd41ad50 (diff) |
Implement __bool__ and __len__ via unary_op virtual method for all types.
__bool__() and __len__() are just the same as __neg__() or __invert__(),
and require efficient dispatching implementation (not requiring search/lookup).
type->unary_op() is just the right choice for this short of adding
standalone virtual method(s) to already big mp_obj_type_t structure.
Diffstat (limited to 'py/objarray.c')
-rw-r--r-- | py/objarray.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/py/objarray.c b/py/objarray.c index 42dbfcda0..c595d217c 100644 --- a/py/objarray.c +++ b/py/objarray.c @@ -189,6 +189,15 @@ static mp_obj_t mp_builtin_bytearray(mp_obj_t arg) { } MP_DEFINE_CONST_FUN_OBJ_1(mp_builtin_bytearray_obj, mp_builtin_bytearray); +static mp_obj_t array_unary_op(int op, mp_obj_t o_in) { + mp_obj_array_t *o = o_in; + switch (op) { + case RT_UNARY_OP_BOOL: return MP_BOOL(o->len != 0); + case RT_UNARY_OP_LEN: return MP_OBJ_NEW_SMALL_INT(o->len); + default: return MP_OBJ_NULL; // op not supported + } +} + static mp_obj_t array_binary_op(int op, mp_obj_t lhs, mp_obj_t rhs) { mp_obj_array_t *o = lhs; switch (op) { @@ -245,6 +254,7 @@ const mp_obj_type_t array_type = { .print = array_print, .make_new = array_make_new, .getiter = array_iterator_new, + .unary_op = array_unary_op, .binary_op = array_binary_op, .store_item = array_store_item, .methods = array_type_methods, |