Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 0 additions & 54 deletions MEOS.NET/Internal/MEOSExposedFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11273,60 +11273,6 @@ public static IntPtr jsonbfunc_jsonbset_jsonb(IntPtr s, IntPtr jb, IntPtr func,
public static IntPtr jsonbfunc_jsonbset_text(IntPtr s, IntPtr txt, IntPtr func)
=> SafeExecution<IntPtr>(() => MEOSExternalFunctions.jsonbfunc_jsonbset_text(s, txt, func));

public static bool meos_temporal_to_arrow(IntPtr temp, IntPtr out_schema, IntPtr out_array)
=> SafeExecution<bool>(() => MEOSExternalFunctions.meos_temporal_to_arrow(temp, out_schema, out_array));

public static IntPtr meos_temporal_from_arrow(IntPtr schema, IntPtr array)
=> SafeExecution<IntPtr>(() => MEOSExternalFunctions.meos_temporal_from_arrow(schema, array));

public static IntPtr meos_temporal_arrow_roundtrip(IntPtr temp)
=> SafeExecution<IntPtr>(() => MEOSExternalFunctions.meos_temporal_arrow_roundtrip(temp));

public static bool meos_set_to_arrow(IntPtr s, IntPtr out_schema, IntPtr out_array)
=> SafeExecution<bool>(() => MEOSExternalFunctions.meos_set_to_arrow(s, out_schema, out_array));

public static IntPtr meos_set_from_arrow(IntPtr schema, IntPtr array)
=> SafeExecution<IntPtr>(() => MEOSExternalFunctions.meos_set_from_arrow(schema, array));

public static IntPtr meos_set_arrow_roundtrip(IntPtr s)
=> SafeExecution<IntPtr>(() => MEOSExternalFunctions.meos_set_arrow_roundtrip(s));

public static bool meos_span_to_arrow(IntPtr s, IntPtr out_schema, IntPtr out_array)
=> SafeExecution<bool>(() => MEOSExternalFunctions.meos_span_to_arrow(s, out_schema, out_array));

public static IntPtr meos_span_from_arrow(IntPtr schema, IntPtr array)
=> SafeExecution<IntPtr>(() => MEOSExternalFunctions.meos_span_from_arrow(schema, array));

public static IntPtr meos_span_arrow_roundtrip(IntPtr s)
=> SafeExecution<IntPtr>(() => MEOSExternalFunctions.meos_span_arrow_roundtrip(s));

public static bool meos_spanset_to_arrow(IntPtr ss, IntPtr out_schema, IntPtr out_array)
=> SafeExecution<bool>(() => MEOSExternalFunctions.meos_spanset_to_arrow(ss, out_schema, out_array));

public static IntPtr meos_spanset_from_arrow(IntPtr schema, IntPtr array)
=> SafeExecution<IntPtr>(() => MEOSExternalFunctions.meos_spanset_from_arrow(schema, array));

public static IntPtr meos_spanset_arrow_roundtrip(IntPtr ss)
=> SafeExecution<IntPtr>(() => MEOSExternalFunctions.meos_spanset_arrow_roundtrip(ss));

public static bool meos_tbox_to_arrow(IntPtr box, IntPtr out_schema, IntPtr out_array)
=> SafeExecution<bool>(() => MEOSExternalFunctions.meos_tbox_to_arrow(box, out_schema, out_array));

public static IntPtr meos_tbox_from_arrow(IntPtr schema, IntPtr array)
=> SafeExecution<IntPtr>(() => MEOSExternalFunctions.meos_tbox_from_arrow(schema, array));

public static IntPtr meos_tbox_arrow_roundtrip(IntPtr box)
=> SafeExecution<IntPtr>(() => MEOSExternalFunctions.meos_tbox_arrow_roundtrip(box));

public static bool meos_stbox_to_arrow(IntPtr box, IntPtr out_schema, IntPtr out_array)
=> SafeExecution<bool>(() => MEOSExternalFunctions.meos_stbox_to_arrow(box, out_schema, out_array));

public static IntPtr meos_stbox_from_arrow(IntPtr schema, IntPtr array)
=> SafeExecution<IntPtr>(() => MEOSExternalFunctions.meos_stbox_from_arrow(schema, array));

public static IntPtr meos_stbox_arrow_roundtrip(IntPtr box)
=> SafeExecution<IntPtr>(() => MEOSExternalFunctions.meos_stbox_arrow_roundtrip(box));

public static IntPtr h3index_from_wkb(IntPtr wkb, IntPtr size)
=> SafeExecution<IntPtr>(() => MEOSExternalFunctions.h3index_from_wkb(wkb, size));

Expand Down
60 changes: 0 additions & 60 deletions MEOS.NET/Internal/MEOSExternalFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10344,66 +10344,6 @@ private partial class MEOSExternalFunctions
[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
public static partial IntPtr jsonbfunc_jsonbset_text(IntPtr s, IntPtr txt, IntPtr func);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
[return: MarshalAs(UnmanagedType.U1)]
public static partial bool meos_temporal_to_arrow(IntPtr temp, IntPtr out_schema, IntPtr out_array);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
public static partial IntPtr meos_temporal_from_arrow(IntPtr schema, IntPtr array);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
public static partial IntPtr meos_temporal_arrow_roundtrip(IntPtr temp);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
[return: MarshalAs(UnmanagedType.U1)]
public static partial bool meos_set_to_arrow(IntPtr s, IntPtr out_schema, IntPtr out_array);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
public static partial IntPtr meos_set_from_arrow(IntPtr schema, IntPtr array);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
public static partial IntPtr meos_set_arrow_roundtrip(IntPtr s);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
[return: MarshalAs(UnmanagedType.U1)]
public static partial bool meos_span_to_arrow(IntPtr s, IntPtr out_schema, IntPtr out_array);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
public static partial IntPtr meos_span_from_arrow(IntPtr schema, IntPtr array);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
public static partial IntPtr meos_span_arrow_roundtrip(IntPtr s);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
[return: MarshalAs(UnmanagedType.U1)]
public static partial bool meos_spanset_to_arrow(IntPtr ss, IntPtr out_schema, IntPtr out_array);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
public static partial IntPtr meos_spanset_from_arrow(IntPtr schema, IntPtr array);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
public static partial IntPtr meos_spanset_arrow_roundtrip(IntPtr ss);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
[return: MarshalAs(UnmanagedType.U1)]
public static partial bool meos_tbox_to_arrow(IntPtr box, IntPtr out_schema, IntPtr out_array);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
public static partial IntPtr meos_tbox_from_arrow(IntPtr schema, IntPtr array);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
public static partial IntPtr meos_tbox_arrow_roundtrip(IntPtr box);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
[return: MarshalAs(UnmanagedType.U1)]
public static partial bool meos_stbox_to_arrow(IntPtr box, IntPtr out_schema, IntPtr out_array);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
public static partial IntPtr meos_stbox_from_arrow(IntPtr schema, IntPtr array);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
public static partial IntPtr meos_stbox_arrow_roundtrip(IntPtr box);

[LibraryImport(DllPath, StringMarshalling = StringMarshalling.Utf8)]
public static partial IntPtr h3index_from_wkb(IntPtr wkb, IntPtr size);

Expand Down
Loading