VectorInt::StringsToValues Method

Overload List

#SignatureDescription
1void StringsToValues(tStrings *aList) const;Convert strings in aList to integers.
2TVecInt *StringsToValues(tStrings *aList, const int ListIndex, const int Index = 0, const int Len = MtxVecEOA) const;Convert strings in aList to integers starting at ListIndex.
3TVecInt *StringsToValues(const DewArray<DewString> &aList) const;
4TVecInt *StringsToValues(const DewArray<DewString> &aList, int ListIndex, int Index = 0, int Len = MtxVecEOA) const;

Overload 1: void StringsToValues(tStrings *aList) const;

Convert strings in aList to integers.

#NameTypeDescription
1aListtStrings *
Remarks:

Convert strings in aList to integers according to the IntPrecision property and store them in the Values array of the calling vector. The TMtxVecBase::Length of the calling vector is set to aList.Count.

See Also: VectorInt::ValuesToStrings
Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler

Overload 2: TVecInt *StringsToValues(tStrings *aList, const int ListIndex, const int Index = 0, const int Len = MtxVecEOA) const;

Convert strings in aList to integers starting at ListIndex.

#NameTypeDescription
1aListtStrings *
2ListIndexconst int
3Index = 0const int
4Len = MtxVecEOAconst int
Remarks:

Store them in the Values array of the calling vector from Index to Index+Len-1. The Length property of the calling vector is not changed. If array bounds are overrun and exception is raised.

Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler

Overload 3: TVecInt *StringsToValues(const DewArray<DewString> &aList) const;

#NameTypeDescription
1aListconst DewArray<DewString> &
Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler

Overload 4: TVecInt *StringsToValues(const DewArray<DewString> &aList, int ListIndex, int Index = 0, int Len = MtxVecEOA) const;

#NameTypeDescription
1aListconst DewArray<DewString> &
2ListIndexint
3Index = 0int
4Len = MtxVecEOAint
Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler