>>Hey mike the "-> bool" specifies a return type?
Yeah, that's the Lambda expression syntax.
It is also a new way to specify return types for normal functions, with the "auto" keyword. As so:
auto my_function() -> int {
//..
};
This is especially useful for function and class templates where the return type can be contingent on the parameter types in a non-trivial way.