Euphoria
wordwrap.h
Go to the documentation of this file.
1 #pragma once
2 
3 
4 
5 
6 #include <functional>
7 
8 namespace eu::core
9 {
10  std::vector<std::string>
12  (
13  const std::string& str,
14  std::function<bool (const std::string&)> measure
15  );
16 }
17 
std::vector< std::string > get_word_wrapped(const std::string &str, std::function< bool(const std::string &)> fit)
Definition: wordwrap.cc:62