September 27, 2004 General » Re: UTF-8 char[] consistency | |||
|---|---|---|---|
| |||
...ICUString {
enum Encoding {UTF8, UTF16, UTF32,...};
uint len;
void* data;
Encoding encoding;
... member functions like... | |||
September 24, 2004 General » Re: DStress / regression tests | |||
|---|---|---|---|
| |||
...is more like char* str = "C"; int len = 1; The FAQ I referenced has more... | |||
September 24, 2004 General » Re: char[] vs. ubyte[] | |||
|---|---|---|---|
| |||
...char* source); # ubyte* gets(ubyte* dest, int len, FILE* stream); because strcat() works fine in... | |||
September 11, 2004 General » Re: help: strange problem with D | |||
|---|---|---|---|
| |||
...player.read(file); textureManager.read(file); int len = textureManager.textures.length; // dunno why this is... | |||
September 01, 2004 Issues » Re: std.zlib.decompress may have flawed logic for allocating buffer | |||
|---|---|---|---|
| |||
...for (int len = 6; len <= 10000000; len += len) {
# char[] buf = new char[len];
#
# for (int... | |||
August 22, 2004 Issues » -O is evil | |||
|---|---|---|---|
| |||
...are used).
<code1>
import std.stdio;
void len(float x, float y, float z)
{
writefln... | |||
August 20, 2004 General » Re: DMD 0.99 release | |||
|---|---|---|---|
| |||
...ve been lazy in naming my variables len instead of length. Perhaps it should be... | |||
August 10, 2004 General » Re: default parameters in interface, does it make sense | |||
|---|---|---|---|
| |||
...void write(ubyte[] buf, uint len) {
return write(buf, len, 0);
}
void write(ubyte[] buf... | |||
August 10, 2004 General » Re: default parameters in interface, does it make sense | |||
|---|---|---|---|
| |||
...uint len = 0, uint off = 0 );
}
class weirdOne : DataSink {
void write( ubyte[] buf, uint len... | |||
August 10, 2004 General » Re: default parameters in interface, does it make sense | |||
|---|---|---|---|
| |||
Regan Heath wrote:
interface DataSink {
write( ubyte buf, uint len = 0, uint off = 0 );
}
:)
| |||
Copyright © 1999-2021 by the D Language Foundation