toNativeVectorChar method

Pointer<Pointer<Char>> toNativeVectorChar()

General Library Documentation Undocument By General Corporation & Global Corporation & General Developer

Convert

From = List<String> args1 = "hello";

to = std::vector<char> argv1 = {"hello"}

Implementation

Pointer<Pointer<Char>> toNativeVectorChar() {
  return VectorFfiUniverseUtils.fromListStringToVectorChar(strings: this);
}