Skip to content
 
 

Latest commit

 

History

40 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

Resources

Stars

1 star

Watchers

2 watching

Forks

Releases

Packages

Contributors

Languages