blob: 6221b80d1f9262d7033aaec0740b4379c89cbc80 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002/* List object interface */
3
4/*
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005Another generally useful object type is an list of object pointers.
6This is a mutable type: the list items can be changed, and items can be
7added or removed. Out-of-range indices or non-list objects are ignored.
8
Guido van Rossumcaa63801995-01-12 11:45:45 +00009*** WARNING *** PyList_SetItem does not increment the new item's reference
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000010count, but does decrement the reference count of the item it replaces,
11if not nil. It does *decrement* the reference count if it is *not*
Guido van Rossumcaa63801995-01-12 11:45:45 +000012inserted in the list. Similarly, PyList_GetItem does not increment the
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000013returned item's reference count.
14*/
15
Fred Drakeea9cb5a2000-07-09 00:20:36 +000016#ifndef Py_LISTOBJECT_H
17#define Py_LISTOBJECT_H
18#ifdef __cplusplus
19extern "C" {
20#endif
21
Guido van Rossum3f5da241990-12-20 15:06:42 +000022typedef struct {
Fred Drakeea9cb5a2000-07-09 00:20:36 +000023 PyObject_VAR_HEAD
24 PyObject **ob_item;
Raymond Hettinger4bb95402004-02-13 11:36:39 +000025 int allocated;
Guido van Rossumcaa63801995-01-12 11:45:45 +000026} PyListObject;
Guido van Rossum3f5da241990-12-20 15:06:42 +000027
Mark Hammond91a681d2002-08-12 07:21:58 +000028PyAPI_DATA(PyTypeObject) PyList_Type;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000029
Tim Peters6d6c1a32001-08-02 04:15:00 +000030#define PyList_Check(op) PyObject_TypeCheck(op, &PyList_Type)
Tim Petersb1c46982001-10-05 20:41:38 +000031#define PyList_CheckExact(op) ((op)->ob_type == &PyList_Type)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000032
Mark Hammond91a681d2002-08-12 07:21:58 +000033PyAPI_FUNC(PyObject *) PyList_New(int size);
34PyAPI_FUNC(int) PyList_Size(PyObject *);
35PyAPI_FUNC(PyObject *) PyList_GetItem(PyObject *, int);
36PyAPI_FUNC(int) PyList_SetItem(PyObject *, int, PyObject *);
37PyAPI_FUNC(int) PyList_Insert(PyObject *, int, PyObject *);
38PyAPI_FUNC(int) PyList_Append(PyObject *, PyObject *);
39PyAPI_FUNC(PyObject *) PyList_GetSlice(PyObject *, int, int);
40PyAPI_FUNC(int) PyList_SetSlice(PyObject *, int, int, PyObject *);
41PyAPI_FUNC(int) PyList_Sort(PyObject *);
42PyAPI_FUNC(int) PyList_Reverse(PyObject *);
43PyAPI_FUNC(PyObject *) PyList_AsTuple(PyObject *);
Guido van Rossum3f5da241990-12-20 15:06:42 +000044
45/* Macro, trading safety for speed */
Barry Warsaw1f2bd071997-01-06 22:42:00 +000046#define PyList_GET_ITEM(op, i) (((PyListObject *)(op))->ob_item[i])
Guido van Rossuma937d141998-04-24 18:22:02 +000047#define PyList_SET_ITEM(op, i, v) (((PyListObject *)(op))->ob_item[i] = (v))
Barry Warsaw1f2bd071997-01-06 22:42:00 +000048#define PyList_GET_SIZE(op) (((PyListObject *)(op))->ob_size)
Guido van Rossuma3309961993-07-28 09:05:47 +000049
50#ifdef __cplusplus
51}
52#endif
53#endif /* !Py_LISTOBJECT_H */