October 10 General » Re: Move Constructor Syntax | |||
|---|---|---|---|
| |||
...libmir: ``` source/mir/rc/ptr.d(395,15): Error: `mir.rc.ptr.castTo` called with... | |||
October 07 General » One of the thing I like in D | |||
|---|---|---|---|
| |||
...auto ptr = &(c ? a : b);
*ptr = 8;
assert(a == 8);
ptr = &(c ? b : a);
*ptr... | |||
October 07 Learn » Re: Wrapper for PAM | |||
|---|---|---|---|
| |||
...response **resp, void *appdata_ptr) {
PAMdata *data = cast(PAMdata*)appdata_ptr;
pam_response *responses = cast... | |||
October 07 Learn » Re: Wrapper for PAM | |||
|---|---|---|---|
| |||
...message**) msg, pam_response** resp, void* appdata_ptr) to extern (C) int function(int, const... | |||
October 04 DIP Development » Re: Safer D first draft | |||
|---|---|---|---|
| |||
...index)
{ if(index >= length) assert(0);
return ptr[index];
}
// With this DIP, it has to... | |||
October 04 DIP Development » Re: Safer D first draft | |||
|---|---|---|---|
| |||
...of code complies. When you have `someString.ptr`, It might be that compiler A figures... | |||
October 03 Learn » Re: Wrapper for PAM | |||
|---|---|---|---|
| |||
...resp, void *appdata_ptr)
{
pam_data *data = cast(pam_data*)appdata_ptr;
*resp = cast(pam... | |||
October 03 Learn » Wrapper for PAM | |||
|---|---|---|---|
| |||
...resp, void *appdata_ptr);
struct pam_conv {
conversation *conv;
void *appdata_ptr;
}
struct pam_handle... | |||
September 25 DIP Ideas » Re: Symbol Registration | |||
|---|---|---|---|
| |||
...Handler found: {} {}", attr, member.ptr);
// LINFO("Param: {}", params[0].stringof.ptr);
// get type of the... | |||
September 24 DIP Development » Re: Safer D first draft | |||
|---|---|---|---|
| |||
Maybe `Expression.ptr` can be `@safe` if the compiler can statically prove that `Expression` has... | |||
Copyright © 1999-2021 by the D Language Foundation