ailiaTokenizerGetTextLength method

int ailiaTokenizerGetTextLength(
  1. Pointer<AILIATokenizer> net,
  2. Pointer<UnsignedInt> len
)

~japanese @brief テキストの長さを取得します。(NULL文字含む) @param net トークナイザオブジェクトポインタ @param len テキストの長さ @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。

~english @brief Gets the size of text. (Include null) @param net A tokenizer instance pointer @param len The length of text @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise.

Implementation

int ailiaTokenizerGetTextLength(
  ffi.Pointer<AILIATokenizer> net,
  ffi.Pointer<ffi.UnsignedInt> len,
) {
  return _ailiaTokenizerGetTextLength(
    net,
    len,
  );
}