Skip to main content

This is documentation for Caché & Ensemble. See the InterSystems IRIS version of this content.Opens in a new tab

For information on migrating to InterSystems IRISOpens in a new tab, see Why Migrate to InterSystems IRIS?

ObjectScript 関数

ObjectScript には数多くの関数があります。これらすべての詳細は、"Caché ObjectScript リファレンス" を参照してください。他言語と同様に、関数はパラメータを受け取り、結果を返します。 コマンドと同様に関数では、大文字と小文字は区別されません。また、略語を使用でき、名前の先頭文字は $ です。RightTriangle ルーチンでは、平方根の計算に $Zsqr が使用されていました。

SAMPLES>write $zsqr(63)
7.93725393319377177
SAMPLES>write $zlog(100)
2
SAMPLES>
FeedbackOpens in a new tab