File tree 2 files changed +14
-6
lines changed
astro/content/docs/clients
2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -65,6 +65,10 @@ export default defineConfig({
65
65
label : 'LuaJIT client' ,
66
66
slug : 'clients/luajit' ,
67
67
} ,
68
+ {
69
+ label : 'D client' ,
70
+ slug : 'clients/d' ,
71
+ } ,
68
72
] ,
69
73
} ,
70
74
] ,
Original file line number Diff line number Diff line change @@ -20,19 +20,21 @@ Modules hierarchy:
20
20
``` bash
21
21
.
22
22
└── source
23
- ├── c
24
- │ ├── ada.d # low-level C bindings - @nogc, nothrow, @safe and betterC compatible
25
- │ └── wrapper.d # D (mangled) RAII - nothrow, @safe and betterC compatible
26
- └── package.d # by default set public wrapper.d in 'import ada_url'
27
- # (for low-level C bindings use 'import c.ada')
23
+ └── ada
24
+ ├── c
25
+ │ ├── ada.d # low-level C bindings - @nogc, nothrow, @safe and betterC compatible
26
+ │ └── wrapper.d # D (mangled) RAII - @nogc, nothrow, @safe and betterC compatible
27
+ └── url
28
+ └── package.d # by default set public wrapper.d in 'import ada.url'
29
+ # (for low-level C bindings use 'import ada.c.ada')
28
30
```
29
31
30
32
## Usage
31
33
32
34
Here is an example illustrating a common usage:
33
35
34
36
``` d
35
- import ada_url : AdaUrl, ParseOptions; // @safe, nothrow and betterC compatible
37
+ import ada.url : AdaUrl, ParseOptions; // @safe, nothrow and betterC compatible
36
38
import std.stdio : writeln; // need GC and throw exception
37
39
38
40
void main() @safe {
@@ -46,6 +48,8 @@ void main() @safe {
46
48
}
47
49
```
48
50
51
+ full example: [ here] ( https://github.com/kassane/ada-d/tree/main/example )
52
+
49
53
## Resources
50
54
51
55
- [ Source code] [ source-code ]
You can’t perform that action at this time.
0 commit comments