-
Scheme Review 1
https://courses.cs.washington.edu/courses/cse341/04wi/lectures/14-scheme-quote.html Quote Scheme has a convenient syntax for representing data literals: prefix any expression with ’ (single quote) and the expression, rather than being evaluated, will be returned as data:
Read more… -
In archlinux, chrome cannot be displayed normally under AMD.
Solution: 1rm -rf .
Read more… -
Value_categories_in_Cpp
Intro 1#define IS_XVALUE(expr) \ 2(is_rvalue_reference<decltype((expr))>{}) 3#define IS_PRVALUE(expr) \ 4(!
Read more…