바이트 배열 객체¶
-
PyTypeObject
PyByteArray_Type
¶ 이
PyTypeObject
인스턴스는 파이썬 bytearray 형을 나타냅니다; 파이썬 계층의bytearray
와 같은 객체입니다.
형 검사 매크로¶
직접 API 함수¶
-
PyObject*
PyByteArray_FromObject
(PyObject *o)¶ - Return value: New reference.
버퍼 프로토콜을 구현하는 임의의 객체(o)로부터 써서 새로운 bytearray 객체를 돌려줍니다.
-
PyObject*
PyByteArray_FromStringAndSize
(const char *string, Py_ssize_t len)¶ - Return value: New reference.
Create a new bytearray object from string and its length, len. On failure,
NULL
is returned.
-
PyObject*
PyByteArray_Concat
(PyObject *a, PyObject *b)¶ - Return value: New reference.
바이트 배열 a 와 b를 이어붙여 새로운 bytearray로 반환합니다.
-
Py_ssize_t
PyByteArray_Size
(PyObject *bytearray)¶ Return the size of bytearray after checking for a
NULL
pointer.
매크로¶
이 매크로는 속도를 위해 안전을 희생하며 포인터를 확인하지 않습니다.
-
char*
PyByteArray_AS_STRING
(PyObject *bytearray)¶ PyByteArray_AsString()
의 매크로 버전.
-
Py_ssize_t
PyByteArray_GET_SIZE
(PyObject *bytearray)¶ PyByteArray_Size()
의 매크로 버전.