Vasily Stepanets

Results 1 comments of Vasily Stepanets

Compare ``` if (@expect(x < 0, false)) ``` with ```c #define likely(x) (__builtin_expect(!!(x), 1)) #define unlikely(x) (__builtin_expect(!!(x), 0)) if unlikely(x < 0) ... ``` The former is too chatty. If...