On Thursday, 17 September 2020 at 01:57:39 UTC, Mike Parker wrote:
On Thursday, 17 September 2020 at 00:32:40 UTC, Cecil Ward
So can the result of declaring certain things with enum ever
have an _address_ then? (According to legit D code that is,
never mind the underlying implementation detai
Suppose I have a data structure encoding sequence lengths:
seq1: 0 1 2 ... N
seq2: 0 1 2 3 4 ... M
seq3: 0 1 ... P
I would like to write opIndex and opDollar to support the notation
obj[seq, x .. $] to retrieve sequences.
However, given that opDollar is templated on dimension (always 1 in thi
On Thursday, 1 October 2020 at 21:35:42 UTC, WhatMeWorry wrote:
On Thursday, 1 October 2020 at 20:28:58 UTC, kinke wrote:
[...]
Thanks all. I've gotten it to work with:
[...]
[...]
[...]
total = 12
[...]
1) try running your commands in Visual Studio Native x64 CMD.
2) try link wit
On Thursday, 1 October 2020 at 20:28:58 UTC, kinke wrote:
On Thursday, 1 October 2020 at 20:03:19 UTC, WhatMeWorry wrote:
Yes, but shouldn't the /NOENTRY option take care of that. Say,
I just want to make a DLL of simple functions.
Your little example has 2 problems, the first being an
incomp
On Thursday, 1 October 2020 at 20:03:19 UTC, WhatMeWorry wrote:
Yes, but shouldn't the /NOENTRY option take care of that. Say,
I just want to make a DLL of simple functions.
Your little example has 2 problems, the first being an
incompatible extern(D) ex/import (mydll.myAddSeven vs.
user.myAd
On Thursday, 1 October 2020 at 09:22:29 UTC, user1234 wrote:
On Wednesday, 30 September 2020 at 11:45:53 UTC, Ferhat
Kurtulmuş wrote:
On Tuesday, 29 September 2020 at 21:22:21 UTC, WhatMeWorry
wrote:
module user;
export { int myAddSeven(int a, int b); }
[...]
it is better to use this templa
On Thursday, 1 October 2020 at 14:12:24 UTC, Ola Fosheim Grøstad
wrote:
Also, atomic operations on members do not ensure the integrity
of the struct. For that you need something more powerful
(complicated static analysis or transactional memory).
I'm very wary of being able to cast away shar
On Thursday, 1 October 2020 at 00:13:41 UTC, IGotD- wrote:
For example completely lockless algorithms can often be a
combination of atomic operations and also non-atomic operations
on data members.
Also, atomic operations on members do not ensure the integrity of
the struct. For that you need
On Thursday, 1 October 2020 at 06:32:23 UTC, Robert M. Münch
wrote:
Hi, we are currently using vibe.d for a prototype and I want to
post some experiences. I know one shouldn't only address the
problems but provide some solutions.
[...]
I've been in a similar position once... when it slows y
On Thursday, 1 October 2020 at 08:24:42 UTC, ab wrote:
On Thursday, 1 October 2020 at 06:32:23 UTC, Robert M. Münch
wrote:
3. Vibe can't handle GET & POST on the same URL...
we solved this one as well: fortunately (and: of course) vibe
can handle this.
what lead us to believe otherwise, was
On Tuesday, 29 September 2020 at 21:22:21 UTC, WhatMeWorry wrote:
module user;
export { int myAddSeven(int a, int b); }
[...]
As example, DLL: https://github.com/vitalfadeev/dlang-dll
On Wednesday, 30 September 2020 at 11:45:53 UTC, Ferhat Kurtulmuş
wrote:
On Tuesday, 29 September 2020 at 21:22:21 UTC, WhatMeWorry
wrote:
module user;
export { int myAddSeven(int a, int b); }
[...]
it is better to use this template
https://github.com/dlang/dmd/tree/master/samples/mydll
Y
On Thursday, 1 October 2020 at 06:32:23 UTC, Robert M. Münch
wrote:
3. Vibe can't handle GET & POST on the same URL...
we solved this one as well: fortunately (and: of course) vibe can
handle this.
what lead us to believe otherwise, was that, unfortunately, one
of the handlers crashed (effe
On Thursday, 1 October 2020 at 06:39:39 UTC, mipri wrote:
On Thursday, 1 October 2020 at 06:32:23 UTC, Robert M. Münch
wrote:
5. One can't access the raw HTTP request body, things must be
go through Vibe's JSON parser. To get access to the raw body,
a lot of workarounds are necessary.
given a
14 matches
Mail list logo