Re: Composable mutual recursive function composition

2013-03-11 Thread Brent Millare
I just added aliasing support. This way you can have interface keywords 
and depend on those. Then instead of redefining all functions to use a 
different key, you just change the alias.

-- 
-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Clojure group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Composable mutual recursive function composition

2013-03-10 Thread Catonano
What´s Prismatic for ?

Why do you build graphs of computation ?

Thanks


2013/3/10 Brent Millare brent.mill...@gmail.com

 I recently asked about mutual referenced support in the prismatic library
 plumbing

 https://github.com/Prismatic/plumbing

 and currently its an open question about how to implement that.

 So I made a proof-of-concept version of a graph-like library that
 supports mutual recursion.

 https://github.com/bmillare/dj.compose

 Note some differences:
 * fnb are higher order functions, so its expected you use it to wrap an
 existing anonymous function
 * functions in the bind-map are just plain functions and accept any number
 of arguments. They are not map oriented.

 I encourage those interested to the read the sources, its only 1 macro,
 and 1 function. Feedback appreciated.

 --
 --
 You received this message because you are subscribed to the Google
 Groups Clojure group.
 To post to this group, send email to clojure@googlegroups.com
 Note that posts from new members are moderated - please be patient with
 your first post.
 To unsubscribe from this group, send email to
 clojure+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/clojure?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Clojure group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to clojure+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Clojure group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Composable mutual recursive function composition

2013-03-10 Thread Catonano
I see now the blog post. Thanks anyway


2013/3/10 Catonano caton...@gmail.com

 What´s Prismatic for ?

 Why do you build graphs of computation ?

 Thanks


 2013/3/10 Brent Millare brent.mill...@gmail.com

 I recently asked about mutual referenced support in the prismatic library
 plumbing

 https://github.com/Prismatic/plumbing

 and currently its an open question about how to implement that.

 So I made a proof-of-concept version of a graph-like library that
 supports mutual recursion.

 https://github.com/bmillare/dj.compose

 Note some differences:
 * fnb are higher order functions, so its expected you use it to wrap an
 existing anonymous function
 * functions in the bind-map are just plain functions and accept any
 number of arguments. They are not map oriented.

 I encourage those interested to the read the sources, its only 1 macro,
 and 1 function. Feedback appreciated.

 --
 --
 You received this message because you are subscribed to the Google
 Groups Clojure group.
 To post to this group, send email to clojure@googlegroups.com
 Note that posts from new members are moderated - please be patient with
 your first post.
 To unsubscribe from this group, send email to
 clojure+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/clojure?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Clojure group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to clojure+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.






-- 
-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Clojure group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Composable mutual recursive function composition

2013-03-09 Thread Brent Millare
I recently asked about mutual referenced support in the prismatic library 
plumbing

https://github.com/Prismatic/plumbing

and currently its an open question about how to implement that.

So I made a proof-of-concept version of a graph-like library that 
supports mutual recursion.

https://github.com/bmillare/dj.compose

Note some differences:
* fnb are higher order functions, so its expected you use it to wrap an 
existing anonymous function
* functions in the bind-map are just plain functions and accept any number 
of arguments. They are not map oriented.

I encourage those interested to the read the sources, its only 1 macro, and 
1 function. Feedback appreciated.

-- 
-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Clojure group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.