Skip to content

moonmaster9000/rallod

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rollad

Reverse function application operator for haskell.

Why?

Because if you read left to right, sometimes it's nice to start with the data, then modify with functions.

How?

Built in function application:

map (split '=') $ split '&' $ "x=1&y=2" 

Rallod function application:

"x=1&y=2" ==> split '&' ==> map (split '=')

Install

λ cabal update && cabal install rallod

Import

module MyModule where
import Rallod
.....

About

A reverse function application operator for haskell. (==>)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published