ffi
Here are 440 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
Nov 24, 2020 - C
-
Updated
Jul 12, 2020 - Rust
-
Updated
Oct 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.
Probably we should take a look at how UTF-8 encoding is implemented in https://www.stackage.org/haddock/lts-16.19/base-4.13.0.0/System-IO.html#v:utf8 and https:
-
Updated
Nov 8, 2020 - Rust
-
Updated
May 18, 2020 - Lua
-
Updated
Nov 25, 2020 - Haskell
-
Updated
Oct 19, 2020 - Python
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__
->PyNumberProtocol
etc.)