Let's say there is a graph and some set of functions like:
create-node :: Graph -> (Graph, Node)
split-node :: Graph -> Node -> (Graph, Node, Node)
I would like to create versions of those functions that don't expect Graph as an argument, mainly for convenience (preferably without monads so I wouldn't need to wrap every graph manipulating piece of code in a monad block). So what about this:
create-node :: (Graph -> (Graph, Node))
split-node :: (Graph -> Node) -> ((Graph -> Node), (Graph -> Node))
Or more generally:
fun :: (Graph -> Argument) -> ... -> (Graph -> Result)
I would then be able to use the (Graph -> ...) values as if they were normal nodes. In the end, to get a real graph out of a (Graph -> ...) value, just apply it to an empty graph. Is this a reasonable approach?
create-nodefunction is identical; I'm rather wary of thesplit-nodefunction, especially if you then callsplit-nodeagain on each of the results... how do you ensure its the same graph, etc.? – ivanm Feb 6 at 3:39