August 22, 2003 D » Re: Why is the linker necessary? | |||
|---|---|---|---|
| |||
...int len ); // returns the number of bytes written <0 == error can write less than len } | |||
August 20, 2003 D » Re: constructors | |||
|---|---|---|---|
| |||
...wchar[] s);
using super(char* p, uint len);
// this(pathname f) { super.this(cast(string... | |||
August 19, 2003 D » Re: constructors | |||
|---|---|---|---|
| |||
...s); }
this(char* p, uint len) { super.this(p,len); }
this(pathname f) { super.this... | |||
August 14, 2003 D » Re: Converting struct to ubyte[] array | |||
|---|---|---|---|
| |||
...raw( void * ptr, int len ) {
return (cast(ubyte*)ptr)[0..len];
}
template mystructs( int size... | |||
August 12, 2003 D » Re: c++ style const concept | |||
|---|---|---|---|
| |||
...strcpy( char * dest, char * src, int len ) {
while ( len--> 0 ) *dest++ = *src++;
}
either can be... | |||
July 31, 2003 D » D arrays and COM ?? | |||
|---|---|---|---|
| |||
...myarray = (LPFOO)malloc( sizeof(FOO) + len*sizeof(item)); myarray.length = len; or even (getting OT... | |||
July 20, 2003 D » Re: Unittests - stopping/continuing | |||
|---|---|---|---|
| |||
...argc; i++)
{
int len = strlen(argv[i]);
am[i] = argv[i][0 .. len];
}
args = am... | |||
May 09, 2003 c++ » using Lua | |||
|---|---|---|---|
| |||
...length */ tl += tsvalue(top-n-1)->tsv.len; n++; } /*--- end code ---*/ tl compute the length... | |||
April 22, 2003 c++.announce » Re: wxWndows compiles and links with digital mars | |||
|---|---|---|---|
| |||
...file '\wxwindows\lib\winsock_sc.lib', Typ=xf1, Len=x6d09 C:\wx\dm\bin> Chris | |||
March 05, 2003 D » Re: Concepts, Techniques, and Models of Computer Programming | |||
|---|---|---|---|
| |||
...mylist();
for(int i=0; i<mylist.len(); i++)
{ mylist[i] = myfunction(mylist[i]); }
----------------------------
Lisp... | |||
Copyright © 1999-2021 by the D Language Foundation