^MORRISON, DONALD. Ghost Dad (bk rvw of AS I SAW IT by Dean Rusk, as told to Richard Rusk). Time. 1990-07-30 [2008-02-04]. I won't be around for history's verdict," says Rusk, now 81 and ailing in his Georgia retirement, "and I am perfectly relaxed about it.
^Turner, Arthur Campbell; Francis Carney and Jan Erickson. Transcription of Oral History Audio Interview with ARTHUR CAMPBELL TURNER April 6 and May 28, 1998 (PDF). University of California, Riverside: p.8. 2005-04-05 [2008-02-03].引文使用过时参数coauthors (帮助); 参数|title=值左起第51位存在換行符 (帮助) 引文格式1维护:冗余文本 (link)
^Parks Rusk Collection of Dean Rusk Papers. Richard B. Russell Library for Political Research and Studies. University of Georgia: Biographical Note. [2008-02-04]. (原始内容存档于2008-05-17).
^Henry II, John B.; William Espinosa. The Tragedy of Dean Rusk (fee). Foreign Policy, No. 8, (Carnegie Endowment for International Peace). Autumn 1972: pp. 166–189 [2008-02-04]. doi:10.2307/1147824.引文使用过时参数coauthors (帮助) 引文格式1维护:冗余文本 (link)
^Ogden, Christopher. BOMBS AWAY!. TIME Magazine Volume 146, No. 12. 1995-09-18: pp. 166–189 [2009-02-11]. 引文格式1维护:冗余文本 (link)
^Andrew Roberts addresses The Bruges Group. The Bruges Group. [2009-02-11]. (原始内容存档于2009-07-22).
^Schoenbaum, Thomas J. Waging Peace and War: Dean Rusk in the Truman, Kennedy, and Johnson Years. Ann Arbor, Michigan: Simon and Schuster. 1988: 421. ISBN 0671603515.使用|accessdate=需要含有|url= (帮助)
Rusk, Dean. The winds of freedom; selections from the speeches and statements of Secretary of State Dean Rusk, January 1961- August 1962. Boston, Massachusetts: Beacon Press. 1963. OCLC 1106835.使用|accessdate=需要含有|url= (帮助)
Rusk, Dean; Richard Rusk, ed. Daniel S. Papp. As I Saw It. W. W. Norton & Company. 1990. ISBN 0393026507.引文使用过时参数coauthor (帮助)
外部链接
Interview for WGBH series, War and Peace in the Nuclear Age
10
1
I have a function that searches a vector of iterators and returns the iterator if its names matches a string passed as an argument. koalaGraph::PVertex lookUpByName(std::string Name, std::vector<koalaGraph::PVertex>& Vertices) { for (size_t i = 0; i < Vertices.size(); i++) { if(Vertices[i]->info.name == Name) return Vertices[i]; } } My question is how can I implement this as a lambda, to use it in connection with std::find_if ? I'm trying this: std::vector<koalaGraph::PVertex> V; std::string Name; std::find_if(V.begin(), V.end(), [&Name]() {return Name == V->info.name;}) But it says that V an enclosing-function local variable cannot be referenced in a lambda body unless it is in the capture list.
...