February 06, 2011 Issues » [Issue 5530] New: std.algorithm.len() | |||
|---|---|---|---|
| |||
...m','n'],['o']];
schwartzSort!len(l);
writeln(l);
}
In Python the "len()" function is a... | |||
February 05, 2011 General » Re: buffered input | |||
|---|---|---|---|
| |||
...range = "Hello, World";
auto len = countUntil(range, ",");
assert(range[0..len] == "Hello");
where range is... | |||
January 31, 2011 Issues » [Issue 5511] std.regex optional capture with no-match cause error | |||
|---|---|---|---|
| |||
...lines 2404-2405:
if (!trymatch(pop, pop + len))
goto Lnomatch;
by:
if (!psave)
{
psave = cast... | |||
January 31, 2011 Issues » [Issue 5511] New: std.regex optional capture with no-match cause error | |||
|---|---|---|---|
| |||
...engine.REparen:
// ... pass
if (!trymatch(pop, pop + len))
goto Lnomatch;
pmatch[n + 1].startIdx = ss... | |||
January 30, 2011 c++.stlsoft » STLSoft 1.9.107 released | |||
|---|---|---|---|
| |||
...wide2multibyte * improved performance of of c_str_len(_a|_w)() shim overloads of stlsoft::multibyte2wide... | |||
January 24, 2011 General » Re: Encoding problems with dsss.exe and implib.exe | |||
|---|---|---|---|
| |||
...result)
{
assert(isValidDchar(result));
}
body
{
size_t len = s.length;
dchar V;
size_t i... | |||
January 21, 2011 Issues » [Issue 1914] Array initialisation from const array yeilds memory trample | |||
|---|---|---|---|
| |||
...e->op == TOKstring) + len /= ((StringExp *)e)->len; + if (e->op == TOKarrayliteral) + len /= ((ArrayLiteralExp *)e)->elements... | |||
January 17, 2011 Issues » [Issue 5457] New: DLL startup code is out of order; gc proxy not set properly | |||
|---|---|---|---|
| |||
...onOutOfMemoryError();
r[nranges].pos = p;
r[nranges].len = sz;
ranges = r;
++nranges;
return;
}
return proxy... | |||
January 17, 2011 General » Re: VLERange: a range in between BidirectionalRange and RandomAccessRange | |||
|---|---|---|---|
| |||
...discussed before).
But something like
size_t len = uniLen("sdfüñẫ"); // 6
string s = uniSlice(str... | |||
January 13, 2011 General » [review] new string type (take 2) | |||
|---|---|---|---|
| |||
...0;
immutable len = _data.length;
int result = 0;
while(result == 0 && idx < len)
{
d = std... | |||
Copyright © 1999-2021 by the D Language Foundation