ffi
Here are 421 public repositories matching this topic...
Environment
- Pythonnet version: 2.3.0
- Python version: 2.7
- Operating System: Windows 10
Details
I have a C# class library which I use in Python. I have a Point class (a code snippet):
public Point(double x, double y)
{
this.x = x;
this.y = y;
}
public override string ToString()
{
return $"Point({x}, {y})";
}
-
Updated
Sep 7, 2020 - Python
-
Updated
Jul 12, 2020 - Rust
-
Updated
Sep 23, 2020 - C
-
Updated
Sep 21, 2020 - PHP
-
Updated
Jun 10, 2020 - PHP
-
Updated
Oct 2, 2020 - Python
-
Updated
Nov 24, 2019 - Haskell
We need to make sure that we are converting strings correctly between Java and Haskell.
Strings are converted in the jvm packages in the Reify and Reflect instances of Text, and in the jni package in the Foreign.JNI.String module.
-
Updated
May 18, 2020 - Lua
-
Updated
Jun 13, 2020 - Haskell
Improve this page
Add a description, image, and links to the ffi topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the ffi topic, visit your repo's landing page and select "manage topics."
Just thinking that for the guide it would be nice to add a table to the
#[pyproto]section listing all the dunder methods that can be implemented and the protocols they are a part of (e.g.__int__->PyNumberProtocoletc.)