or-tools/src/util/string_array.h File Reference
#include <string>
#include "base/integral_types.h"
#include "base/stringprintf.h"
Go to the source code of this file.
|
Namespaces |
namespace | operations_research |
Functions |
template<class T> |
string | operations_research::DebugStringArray (T *const *array, int size, const string &separator) |
| Pretty Print Helpers.
|
template<class T> |
string | operations_research::DebugStringVector (const std::vector< T * > &array, const string &separator) |
| Creates a string from an vector of objects supporting the DebugString() method, and a separator.
|
template<class T> |
string | operations_research::NameArray (T *const *array, int size, const string &separator) |
| Creates a string from an array of objects supporting the name() method, and a separator.
|
string | operations_research::Int64ArrayToString (const int64 *const array, int size, const string &separator) |
| Creates a string from an array of int64, and a separator.
|
string | operations_research::IntArrayToString (const int *const array, int size, const string &separator) |
| Creates a string from an array of int, and a separator.
|
string | operations_research::Int64VectorToString (const std::vector< int64 > &array, const string &separator) |
| Creates a string from an vector of int64, and a separator.
|
string | operations_research::IntVectorToString (const std::vector< int > &array, const string &separator) |
| Creates a string from an vector of int, and a separator.
|