
Следить за такой плохо, но можно быстро грепать, что хорошо. Вдруг кому-то пригодится.
https://dev.golang.org/release#Go1.17
Size: a a a
TextVar
который может записать текст в переменную. Вариант с big.Int
прям с жызы снятvar t time.Timehttps://github.com/golang/go/issues/45754
flag.TextVar(&t, "start_time", time.Now(), "Time to start processing at.")
or
var n big.Int
flag.TextVar(&n, "n", big.NewInt(3853882583591558728), "Run integer factorization for this number")
str(...)
macro to handle them all.nt table = 13;
int id = 37;
str test1 = str("SELECT * FROM ", table, " where person_id ", id);
str test2 = str(test1); //copies test1 to test2
str test3 = str(test2, test1); // returns concat of test2 and test1
test2 = test1; // acceptable, but wrong since test2 now points to test1 not copies it.
str(*test1); // returns const char* to use in printf like functions
Ex: puts(str(*test1)); // prints test1;
sync.Mutex
получит TryLock
походу...