std::vector<int> NumbersExtractor::convertToInts(
  const std::vector<std::string> & numbersStrings) const {
  return VectorUtils::map<int, std::string>(numbersStrings, StringUtils::convertToInt);
}