akfidjeland / lua-fn

Some functional programming tools for Lua and Torch.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A collection of functional programming tools for Lua and Torch

Originally started with functional.lua, but slowly expanding as needed.

Usage

require 'fn'
function mul(x, y) return x * y end
double = fn.partial(mul, 2)
double(10)  --> 20

fn.map(double, {1,2,3}) --> {2, 4, 6}

~

About

Some functional programming tools for Lua and Torch.

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Lua 100.0%