WSPutInteger64 (C 函数)

int WSPutInteger64(WSLINK link,wsint64 i)

把一64位整数写入由 link 指定的 WSTP 连接.

更多信息

  • 通过给定数字列表,然后使用 FromDigits 转换成数字,便可以发送任意精度的整数给 Wolfram 语言.
  • 若发生错误,则 WSPutInteger64() 返回0;若函数成功,则返回非零值.
  • 如果 WSPutInteger64() 失败,则使用 WSError() 检索错误代码.
  • WSTP 的标头文件 wstp.h 已对 WSPutInteger64() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* send a 64-bit number to a link */

void f(WSLINK lp)
{
    mlint64 a;

    a = 0x6553600065535;

    if(! WSPutInteger64(lp, a))
        { /* unable to send the 64 bit integer to lp */ }
}