autowrap icon indicating copy to clipboard operation
autowrap copied to clipboard

Wrap existing D code for use in Python, Excel, C#

Results 53 autowrap issues
Sort by recently updated
recently updated
newest added

This function doesn't mutate the Python arguments: ```d export void outArrayParam(out int[] ints) { ints ~= 42; } ```

```d struct Socket { void send(const(void)[]); } ```

Python
pyd

Due to the `toString` overload that takes a sink delegate.

https://github.com/ariovistus/pyd/blob/master/infrastructure/pyd/embedded.d The above is pyd code that enables this ``` ; --   |     | /+   | + Things we want to do:   | + * run python code in D...

Python
pynih

I want to replace step by step a large c sharp codebase. 800k sloc! I need to be able to take csharp classes and interfaces as parameters and return type....

enhancement
C#

Ref is always really const ref in xenon. Its very annoying, but he didn't want to listen. Too much and too difficult to change right now.

bug
Python
C#
pyd
SIL

Typically you either want to wrap custom code and if it fails then fail hard. Or you want to do best efforts on a large piece of code you don't...

enhancement
C#

With pyd, this D code: ```d void fun(int i, int j, int k=2, int l=3) { } ``` Is callable in Python with any of: ```python fun(0, 1) fun(0, 1,...

Python
pynih