0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

CUE言語のFunctionパターン

Posted at

CUE言語は他の言語のような独自の関数を定義する構文は用意されていません。そのためFunctionパターンと言って、structsを利用して、関数のように振る舞わせることができるテクニックがあります。

cuetorialsを参考に偶数、奇数判定をする関数を作成しました。
cue言語にはif~elseがないので、同じ条件を書きたい時などに使いたいかなと思いました。

#Is_odd_number: {
	in:  int
	out: bool

	out: mod(in, 2) > 0
}

randum_number: 10

if (#Is_odd_number & {in: randum_number}).out {
	result: "奇数です。"
}
if !(#Is_odd_number & {in: randum_number}).out {
	result: "偶数です。"
}

/// $ cue export function.cue 
/// {
///     "randum_number": 10,
///     "result": "偶数です。"
/// }
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?