Hacker News new | ask | show | jobs
by masfuerte 586 days ago
Nice. Your : operator is roughly the C# null-coalescing operator ??.

    x ?? y == x    // when x is not null

    null ?? y == y