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

So you can return and take as an argument an ilist, inenumerable etc

enhancement
C#

```d T foo(T t) { return t+1.0; } ``` you should be able to wrap foo!double;

enhancement
C#

I think. Starting from beta DMD Point 14 https://dlang.org/changelog/2.087.0.html#aliasdecly_func

On wrapping function with optional argument And on JSON value from std json

```d version(WrapCSharp) { import autowrap.csharp; immutable Modules modules=Modules(Module("foo")); mixin( wrapCSharp( Modules( Module("foo"), ), OutputFileName("foo.cs"), LibraryName("foo"), RootNamespace("foo"), ), ); } dwave git:(wrapcsharp) ✗ cat source/foo.d struct Foo(T) { T foo; }...

enhancement
C#