摘要:
MSDN上的解释:any_of Visual Studio 2010 Returns true when a condition is present at least once in the specified range of elements.template bool any_of( ... 阅读全文
摘要:
all_of Visual Studio 2010 Returns true when a condition is present at each element in the given range.当所有在指定的范围内所有元素都满足指定条件的时候返回true。template bool ... 阅读全文
摘要:
从MSDN下查阅得到:adjacent_findVisual Studio 2010 Searches for two adjacent elements that are either equal or satisfy a specified condition.找到两个相邻的元素,这两个相邻的元... 阅读全文