본문으로 이동

모듈:Curry/tag

리버티게임, 모두가 만들어가는 자유로운 게임
Hsl0 (토론 | 기여)님의 2024년 10월 5일 (토) 17:59 판 (새 문서: local bind = require('모듈:Curry/base').bind local tf = require('모듈:TemplateFunction') return setmetatable({}, { __index = function(tbl, name) return function(frame) local func = tf.importTag(name) return bind(func, frame) end end }))
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

이 모듈에 대한 설명문서는 모듈:Curry/tag/설명문서에서 만들 수 있습니다

local bind = require('모듈:Curry/base').bind
local tf = require('모듈:TemplateFunction')

return setmetatable({}, {
	__index = function(tbl, name)
		return function(frame)
			local func = tf.importTag(name)
			
			return bind(func, frame)
		end
	end
})