Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,5 @@
|
|||
compose[\A, B, C\](f:A->B, g:B->C, i:Any): A->C = do
|
||||
f(g(i))
|
||||
end
|
||||
|
||||
composed(i:RR64): RR64 = compose(sin, cos, i)
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
alt_compose(f:Number->RR64, g:Number->RR64, i:RR64): ()->RR64 = do
|
||||
f(g(i))
|
||||
end
|
||||
|
||||
alt_composed(i:RR64): RR64 = compose(sin, cos, i)
|
||||
|
|
@ -0,0 +1 @@
|
|||
opr_composed(i:Number): Number->RR64 = (sin COMPOSE cos)(i)
|
||||
Loading…
Add table
Add a link
Reference in a new issue