cpython/Include/listobject.h

36 lines
1.2 KiB
C
Raw Normal View History

1990-10-14 09:07:46 -03:00
/* List object interface */
/*
123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
Another generally useful object type is an list of object pointers.
This is a mutable type: the list items can be changed, and items can be
added or removed. Out-of-range indices or non-list objects are ignored.
*** WARNING *** setlistitem does not increment the new item's reference
count, but does decrement the reference count of the item it replaces,
if not nil. It does *decrement* the reference count if it is *not*
inserted in the list. Similarly, getlistitem does not increment the
returned item's reference count.
*/
1990-12-20 11:06:42 -04:00
typedef struct {
OB_VARHEAD
object **ob_item;
} listobject;
1990-10-14 09:07:46 -03:00
extern typeobject Listtype;
#define is_listobject(op) ((op)->ob_type == &Listtype)
extern object *newlistobject PROTO((int size));
extern int getlistsize PROTO((object *));
extern object *getlistitem PROTO((object *, int));
extern int setlistitem PROTO((object *, int, object *));
extern int inslistitem PROTO((object *, int, object *));
extern int addlistitem PROTO((object *, object *));
1990-10-30 09:32:39 -04:00
extern int sortlist PROTO((object *));
1990-12-20 11:06:42 -04:00
/* Macro, trading safety for speed */
#define GETLISTITEM(op, i) ((op)->ob_item[i])