WSPutInteger64 (C 関数)

int WSPutInteger64(WSLINK link,wsint64 i)

ネイティブの64ビットの整数ilink で指定されたWSTP接続に置く.

詳細

  • 任意精度の整数は,まず桁数のリストを与え,次にFromDigitsを使ってそのリストを数字に変換すれば,Wolfram言語に送信することができる.
  • WSPutInteger64()はエラーがあると0を返し,関数が成功すると0以外の値を返す.
  • WSError()を使うと,WSPutInteger64()が不成功の場合にエラーコードを引き出すことができる.
  • WSPutInteger64()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (1)

#include "wstp.h"

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

void f(WSLINK lp)
{
    wsint64 a;

    a = 0x6553600065535;

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