Search

September 07, 2022
Learn »
...noisy otherwise.)
auto V(size_t size = 1024)() {
    return V_!size();
}

void main() {
    // Start with...
September 07, 2022
Learn »
...char* dst, socklen_t size);

You probably also need:

	alias socklen_t = ...;

The definition can...
September 05, 2022
General »
...string msg,
                                  Data data,
                                  string file = __FILE__,
                                  size_t line = __LINE__) @safe pure nothrow @nogc...
September 05, 2022
GDC »
...threads;
    // Spawn 10 little worker threads.
    for (size_t i = 0; i < 10; ++i) {
        threads...
September 04, 2022
Genel »
...EnumMembers;
  const E[] member = [EnumMembers!E];
  private size_t i;

  enum empty = false;
  auto front...
September 03, 2022
General »
...very skeptical. C doesn't even have struct...give them a speed/size tradeoff.

Everyone making...
September 03, 2022
General »
...by linking the object files yourself. I don't understand why you are still complaining.
September 02, 2022
General »
...additional LTO options to discard unreferenced sections.


T

-- 
The diminished 7th chord is the most...
September 03, 2022
General »
...linux, there is no reason it can't do it on windows, if LDC can...
September 02, 2022
General »
You really shouldn't have structs this big unless absolutely necessary.

The thing being elided...
73 74 75 76 77 78 79 80 81 82 83 84
Next ›   Last »