WSPutInteger32 (C 関数)

int WSPutInteger32(WSLINK link,int i)

32ビットの整数ilink で指定されたWSTP接続に置く.

詳細

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

例題

  (1)

#include "wstp.h"

/* send the expression Times[10,30] to a link */

void f(WSLINK lp)
{
    if(! WSPutFunction(lp, "Times", 2))
        { /* unable to send the function to lp */ }

    if(! WSPutInteger32(lp, 10))
        { /* unable to send the integer to lp */ }

    if(! WSPutInteger32(lp, 30))
        { /* unable to send the integer to lp */ }

    if(! WSEndPacket(lp))
        { /* unable to send the end-of-packet sequence to lp */ }

    if(! WSFlush(lp))
        { /* unable flush any buffered outgoing data in lp */ }
}