| Server IP : 217.160.0.135 / Your IP : 216.73.217.85 Web Server : Apache System : Linux www 6.18.52-i1-ampere #1203 SMP Mon Sep 14 18:29:59 CEST 2026 aarch64 User : sws1074145052 ( 1074145052) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/lib/python3/dist-packages/pythran/pythonic/include/types/ |
Upload File : |
#ifndef PYTHONIC_INCLUDE_TYPES_RAW_ARRAY_HPP
#define PYTHONIC_INCLUDE_TYPES_RAW_ARRAY_HPP
PYTHONIC_NS_BEGIN
namespace types
{
enum class ownership {
external,
owned,
};
/* Wrapper class to store an array pointer
*
* for internal use only, meant to be stored in a shared_ptr
*/
template <class T>
class raw_array
{
raw_array(raw_array<T> const &) = delete;
public:
using pointer_type = T *;
T *data;
raw_array();
raw_array(size_t n);
raw_array(T *d, ownership o);
raw_array(raw_array<T> &&d);
void forget();
~raw_array();
private:
bool external;
};
}
PYTHONIC_NS_END
#endif