repo.or.cz
/
rootstock.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Split maybeOfferCreate from makeTransactions
[rootstock.git]
/
Util
/
Function.hs
blob
04cbc4565f02046a2a95e8b0db3cfa99a4802484
1
module
Util
.
Function
where
2
3
infixr
9
.!, ..., ....
4
5
(.!) :: (
c
->
d
) -> (
a
->
b
->
c
) ->
a
->
b
->
d
6
(.!) = (.) . (.)
7
8
(...) :: (
d
->
e
) -> (
a
->
b
->
c
->
d
) ->
a
->
b
->
c
->
e
9
(...) = (.!) . (.)
10
11
(....) :: (
e
->
f
) -> (
a
->
b
->
c
->
d
->
e
) ->
a
->
b
->
c
->
d
->
f
12
(....) = (...) . (.)
13