numpy 2.0.0
src/multiarray/convert_datatype.h
Go to the documentation of this file.
00001 #ifndef _NPY_ARRAY_CONVERT_DATATYPE_H_
00002 #define _NPY_ARRAY_CONVERT_DATATYPE_H_
00003 
00004 NPY_NO_EXPORT PyArray_VectorUnaryFunc *
00005 PyArray_GetCastFunc(PyArray_Descr *descr, int type_num);
00006 
00007 NPY_NO_EXPORT int
00008 PyArray_ObjectType(PyObject *op, int minimum_type);
00009 
00010 NPY_NO_EXPORT PyArrayObject **
00011 PyArray_ConvertToCommonType(PyObject *op, int *retn);
00012 
00013 NPY_NO_EXPORT int
00014 PyArray_ValidType(int type);
00015 
00016 #endif