Garbage Collection

塵も積もれば山

目次

Blog 利用状況

ニュース

C++とかC#とか数学ネタを投下していく予定です。

[その他のページ]
日々の四方山話を綴った日記出水の日記帳

書庫

日記カテゴリ

[Lua]カリー化ハウス Lua

なんか、カリー化がブームという情報を聞きつけたので、Luaでやってみます。
が、カリー化が何か分からない!

で、Wikipediaを一読しつつ、よくわからないまま具体的な例を出してみます。

・int plus(int a, int b) という関数があって、a+bを返す。
・curry(int a) という関数は、f(int b) というものが返ってくる。
・f(int b) を実行すると、plus(int a, int b) が実行される。

つまり、f = curry(1) とすると、f(2) = 3 と、こうなるわけですね。

ちょっと新しいのは、関数の中に値を隠し持っているところでしょうか。
…もしかして、bind1stとかbind2ndとかかしら。

まぁ、Luaでやってみます。

function plus(a, b)
  return a + b
end

function curry(a)
  local la = a
  return function (b) plus(la, b) end
end

f = curry(1)

-- 3が表示されるはず
print f(2)

Luaでは、localで宣言してreturnで返す値に絡めるという事をよくします。
newのようなメソッドを作りたいときにlocalを使えば、
関数に入るたびに違うインスタンスが作られるので、これを返り値にすればいいのです。

localが外に出せるというのがちょっと抵抗がありますが、これしかないんだから仕方ないというところでしょうか。

投稿日時 : 2009年3月27日 21:24

Feedback

# [C][Lua]Luaの中の迷宮 2009/03/30 0:58 Garbage Collection

[C][Lua]Luaの中の迷宮

# [C][Lua]Luaの中の迷宮 2009/04/07 21:22 Garbage Collection

[C][Lua]Luaの中の迷宮

# XQpxBtcsvAgZS 2011/12/16 2:17 http://www.healthinter.org/health/page/inderal.php

Yeah, now it's clear !... And firstly I did not understand very much where there was the link with the title itself !!...

# aueashNWcIIxNAbZop 2011/12/27 6:53 http://www.hooksandlattice.com

Comrade kill yourself.

# kGhJNmioFeHdsUTd 2011/12/27 18:34 http://www.hooksandlattice.com

Yeah, it is clear now !... From the very beginning I did not understand where was the connection with the title !!...

# KShsLaZWnFYFAR 2012/01/07 8:11 http://www.luckyvitamin.com/c-642-tea-tree-skin-th

Last a few years has been to Ibiza, so met a person there whose style of presentation is very similar to yours. But, unfortunately, that person is too far from the Internet!...

# Its not my first time to pay a visit this web site, i am visiting this web page dailly and obtain pleasant information from here everyday. 2019/05/05 9:48 Its not my first time to pay a visit this web sit

Its not my first time to pay a visit this web site, i am visiting this web page dailly and obtain pleasant information from here
everyday.

# Appreciation to my father who shared with me about this web site, this web site is genuinely amazing. plenty of fish natalielise 2019/08/02 15:38 Appreciation to my father who shared with me about

Appreciation to my father who shared with me about this web site, this
web site is genuinely amazing. plenty of fish natalielise

# This website was... how do you say it? Relevant!! Finally I've found something which helped me. Many thanks! 2019/08/24 22:14 This website was... how do you say it? Relevant!!

This website was... how do you say it? Relevant!!
Finally I've found something which helped me.
Many thanks!

# Hi there, You have done an excellent job. I will certainly digg it and personally recommend to my friends. I am sure they'll be benefited from this web site. 2019/09/07 2:21 Hi there, You have done an excellent job. I will

Hi there, You have done an excellent job. I will certainly
digg it and personally recommend to my friends. I am sure they'll be benefited from this web
site.

# YJEDAdsDVTNYcONujT 2021/07/03 3:53 https://www.blogger.com/profile/060647091882378654

Thanks so much for the blog. Keep writing.

# Illikebuisse enodg 2021/07/04 6:19 pharmacepticacom

can i buy sildenafil over the counter https://www.pharmaceptica.com/

# erectile dysfunction icd 10 2021/07/11 17:50 antimalarial drug hydroxychloroquine

chloroquine phosphate vs hydroxychloroquine https://plaquenilx.com/# hydrchloroquine

# re: [Lua]??????? Lua 2021/07/27 10:03 is hydroxychloroquine the same as quinine

cloroquin https://chloroquineorigin.com/# hydroclorizine

# sersqlmbfmum 2021/11/30 18:32 dwedaybklz

https://chloroquinexrp.com/ chloroquine buy on line

# dspnknretkap 2022/05/09 5:38 moeqfg

hydroxychloroquine safe https://keys-chloroquinehydro.com/

# vrwkjypwzydo 2022/06/03 10:24 mbdzyvmz

https://erythromycin1m.com/# erythromycin ophthalmic ointment side effects

タイトル
名前
Url
コメント