Search

May 26, 2022
Genel »
...ConList(T) {  // v2.2
  struct Node {
    T item; alias item this;
    Node * next;
    size_t...
May 24, 2022
General »
...pseudocode, didn't test this):

```D
foreach (i; 0..10)
{ auto makeDelegate(size_t closureVar...
May 24, 2022
Learn »
...fakePureMalloc(size_t) @safe;
    pragma(mangle, "calloc") void* fakePureCalloc(size_t nmemb, size_t size...
May 24, 2022
Genel »
...main()
{
  struct BirYapı
  {
    int[] i;
    int opIndex(size_t index) { return i[index]; }
  }
  auto b...
May 24, 2022
Learn »
...T NEW(T, Args...)(auto ref Args args) /*@nogc*/ if (is(T == class)) {
	enum size...
May 23, 2022
Learn »
...size_t line = __LINE__) {
        super(msg, file, line);
    }

    this(string[] messages, string file = __FILE__, size...
May 23, 2022
Genel »
...std.algorithm;
import std.range;

void main() {
  size_t hesapAdedi = 0;

  auto r = iota(10...
May 19, 2022
General »
...didn't vectorize things. If they couldn't...lower bound on their size.

The RISC-V...
May 19, 2022
General »
...ref assumeNonScope(T)(auto ref scope T arg)
{
    return *(cast(T*) cast(size_t) &arg...
May 19, 2022
General »
...T)
{
    size_t length;
    private @system T* _ptr;

    // `@safe` read-only access to _ptr
    T...
88 89 90 91 92 93 94 95 96 97 98 99
Next ›   Last »