diff options
author | Damien George <damien.p.george@gmail.com> | 2015-02-21 14:47:02 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-02-21 14:47:02 +0000 |
commit | eff359e114bc41ea1278f01a18ab50ac896f8cf0 (patch) | |
tree | d03a3e6196b993b54abfb16a0634c302fbdf24e0 /py/obj.h | |
parent | 59d14914cd68c5bc677af97ee3edfb164f8067b4 (diff) |
py: Expose mp_obj_list_remove as a public function.
Diffstat (limited to 'py/obj.h')
-rw-r--r-- | py/obj.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -533,6 +533,7 @@ mp_int_t mp_obj_tuple_hash(mp_obj_t self_in); struct _mp_obj_list_t; void mp_obj_list_init(struct _mp_obj_list_t *o, mp_uint_t n); mp_obj_t mp_obj_list_append(mp_obj_t self_in, mp_obj_t arg); +mp_obj_t mp_obj_list_remove(mp_obj_t self_in, mp_obj_t value); void mp_obj_list_get(mp_obj_t self_in, mp_uint_t *len, mp_obj_t **items); void mp_obj_list_set_len(mp_obj_t self_in, mp_uint_t len); void mp_obj_list_store(mp_obj_t self_in, mp_obj_t index, mp_obj_t value); |