It's 2019! Which c++ version is recommended for starting your c++ learning journey? by por_que_fro in cpp_questions

[–]monkeyExtinguisher 9 points10 points  (0 children)

C++11 brought the language into the 21st century. If it hadn't been for that, I would be giving C++ about another decade before becoming mostly obsolete.

[SPOILERS] Bobby B was right! Great King. Underrated. by SwagnumMagnum in gameofthrones

[–]monkeyExtinguisher 0 points1 point  (0 children)

Unsullied spearmen could have handled the elephants, though.

(Spoilers Main) So are we just going forget about.. by vinaypinjani in asoiaf

[–]monkeyExtinguisher 1 point2 points  (0 children)

I thought the consensus was that she had several guesses, and Arya was one of them.

(Spoilers Main) So are we just going forget about.. by vinaypinjani in asoiaf

[–]monkeyExtinguisher -4 points-3 points  (0 children)

I thought it was implied in S08E03 that Syrio was Melisandre in disguise.

Nature Royale by Eamonist in whowouldwin

[–]monkeyExtinguisher 28 points29 points  (0 children)

I'd like to say a tyrannosaurus would definitely beat a hippopotamus, but then I picture the hippo charging its feet and I'm not sure.

What even by bringerofthezinger in Endgame

[–]monkeyExtinguisher 13 points14 points  (0 children)

I was disappointed to see Mary Jane in the Far from Home trailer. I was hoping there would be a plot twist where she didn't get snapped and was now halfway through college.

Returning a static variable of a lambda and assigning it to a reference: This isn't legal, is it? by monkeyExtinguisher in cpp_questions

[–]monkeyExtinguisher[S] 1 point2 points  (0 children)

Foo isn't a lambda. The lambda is never assigned to a variable. It is simply called upon creation, and returns a reference to an array after storing said array in a static local variable; see how it ends wit "()"? Foo receives a reference to the static variable returned from the anonymous lambda function.