Git Product home page Git Product logo

functional's Issues

.d.tl enhancements

Add missing functions under lax typing, e.g. function(any...): any...

'lambda' suggestion

Hi, evilbadmad from reddit.

On string lambda, may consider a specific form that match more lambda calculus? eg.

(parameter-list)=>lua-or-lambda-expression instead of lua-expression

This allow not predefined variable name and making some functional handy, eg The currying function for 2 parameters function

local function add2(a,b)return a+b end 
local curry2 = _lambda'(f)=>(x)=>(y)=>f(x,y)' 
print(curry2(add2)(1)(3)) -- 4 

Some memorization may help save some overhead too.

This my expandLambda function to transform before eval by loadstring/load

local function expandlambda(expr)
  local params, body = expr:match'^(%b())=>(.*)'
  if not params then return expr end
  return string.format('function %s return %s end', params, expandlambda(body))
end

bye~

Create zip function

Akin to python's zip.

Something like

function zip(...)
  local iter = base_iter(blabla)
  iter.sources = {...}
  return iter
end

It probably won't be able to be used in Teal until variadic type arguments is stable.

Doesn't work for LuaJIT

There was an issue with the 'table.unpack' api. It wasn't available under LuaJIT or Lua 5.1. The unpack function was available instead. I already fixed it myself with a simple polyfill.

-- LuaJIT polyfill
if not table.unpack then
table.unpack = unpack
end

Create branch() method

This should create two buffered iterators which split the original according to a predicate

Create monad?

Should this be added here or in a separate package?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.