Search

September 27, 2004
General »
...ICUString {
  enum Encoding {UTF8, UTF16, UTF32,...};
  uint len;
  void* data;
  Encoding encoding;
  ... member functions like...
September 24, 2004
General »
...is more like
 char* str = "C";
 int len = 1;

The FAQ I referenced has more...
September 24, 2004
General »
...char* source);
#    ubyte* gets(ubyte* dest, int len, FILE* stream);

because strcat() works fine in...
September 11, 2004
General »
...player.read(file);
  textureManager.read(file);
		
  int len = textureManager.textures.length; // dunno why this is...
September 01, 2004
Issues »
...for (int len = 6; len <= 10000000; len += len) {
#        char[] buf = new char[len];
#
#        for (int...
August 22, 2004
Issues »
...are used).

<code1>
import std.stdio;

void len(float x, float y, float z)
{
	writefln...
August 20, 2004
General »
...ve been lazy in naming my variables len instead of length. Perhaps it should be...
August 10, 2004
General »
...void write(ubyte[] buf, uint len) {
            return write(buf, len, 0);
        }
        void write(ubyte[] buf...
August 10, 2004
General »
...uint len = 0, uint off = 0 );
}

class weirdOne : DataSink {
  void write( ubyte[] buf, uint len...
August 10, 2004
General »
Regan Heath wrote:

interface DataSink {
    write( ubyte buf, uint len = 0, uint off = 0 );
}

:)
139 140 141 142 143 144 145 146 147 148 149
Next ›   Last »