Search

April 20, 2022
Learn »
...FILE* file;
  const char* name;
  size_t ln, cn, size;
  str identifier, type_buffer, type...
April 17, 2022
General »
...in `@safe` code:

```d
int* stack_allocate(size_t) @safe;

void test() @safe
{
    scope int...
April 17, 2022
Learn »
...blitting big structs. I still don't know size of a struct should be considered...
April 17, 2022
Issues »
...data;

extern(C) void main() {
        foreach (immutable size_t i; 0 .. data.length) {
                printf("Write...
April 16, 2022
Genel »
...dosya = __FILE__,    // Yararlı bilgiler
            string işlev = __FUNCTION__,
            size_t satır = __LINE__)() {
  try {
    dg();

  } catch (Exception...
April 11, 2022
General »
...T)
{
    private T* subject;
    private size_t* counter;

    this(T* subject)
    {
        this.counter = new size...
April 10, 2022
Duyuru »
...ptr);
  // ...
  return result;
}

struct __string(T) {
  size_t length;
  immutable(T) * ptr;
}
+/





/+
struct S {
  int...
April 10, 2022
Issues »
...d:251
251             array(ci.type,
cast(size_t)ci.type.isTypeSArray().dim.toInteger());
(gdb...
April 07, 2022
Learn »
...cast(T*)result;
}

void * nextAlignedAddress(T)(void * candidateAddr) {
  return nextAlignedAddress(cast(T*)candidateAddr);
}

size_t...
April 05, 2022
Learn »
...d
auto dropSlice(T)(T[] array, T which)
{
  T[] result;

  size_t i;                      // old index...
94 95 96 97 98 99 100 101 102 103 104 105
Next ›   Last »