Tagged Questions
1
vote
1answer
104 views
How do I rewrite (def) out of this Clojure code?
I have written a game loop based on deWitter's game loop.
However, I am unsure how to transfer it to a more functional state. I realize that there may need to be some mutable state left within the ...
28
votes
1answer
854 views
Maintaining complex state in Haskell
Suppose you're building a fairly large simulation in Haskell. There are many different types of entities whose attributes update as the simulation progresses. Let's say, for the sake of example, that ...
15
votes
2answers
259 views
Scala: collecting updates/changes of immutable state
I'm currently trying to apply a more functional programming style to a project involving low-level (LWJGL-based) GUI development. Obviously, in such a case it is necessary to carry around a lot of ...
3
votes
1answer
193 views
How does functional programming avoid state when it seems unavoidable?
Let's say we define a function c sum(a, b), functional programming -style, that returns the sum of its arguments. So far so good; all the nice things of FP without any problems.
Now let's say we run ...
0
votes
1answer
132 views
Can someone explain these programming terms: reference semantics, non-linear mutable state?
Can you explain these terms for me: reference semantics and value semantics (and how they contrast) and non-linear mutable state. They are mentioned in the comments to the book review in this link
...
0
votes
1answer
176 views
c++ what is meant by 'retain state' ?
I read this explanations on MSDN pages, for advantages of lambda expression over functor and function pointer. What is meant by ability to 'retain state' ? Is it related to capability to capture some ...
18
votes
2answers
3k views
Which algorithms are hard to implement in functional languages?
I'm dabbling in functional languages and I have found some algorithms (especially those that use dynamic programming) harder to write and sometimes less efficient in worst case runtime. Is there a ...
6
votes
3answers
258 views
How to Better Iterate over State in Clojure (monad?)
I just wrote this code:
(defn parameters [transform-factory state]
(lazy-seq (let [[r1 state] (uniform state)
[r2 state] (uniform state)
[t state] ...
1
vote
1answer
101 views
How can I convert indexes into a mutable array into state references in Haskell?
I'm recoding the game I asked a question, "How can I iterate over a quadruple linked 2-dimensional grid of data as if it were a 2-dimensional array?", for in Haskell.
In order to create the grid of ...
7
votes
4answers
1k views
How to represent a simple finite state machine in Ocaml?
I have written some state machine in C++ and Java but never in a functional language like Ocaml
Problem is I don't know if I can just adapt code from the object languages versions, since in Ocaml ...
5
votes
7answers
1k views
Scala: Iterate over CSV files in a functional way?
I have CSV files with comments that give column names, where the columns change throughout the file:
#c1,c2,c3
a,b,c
d,e,f
#c4,c5
g,h
i,j
I want to provide a way to iterate over (only) the data ...
8
votes
2answers
328 views
A Functional-Imperative Hybrid
Pure functional programming languages do not allow mutable data, but some computations are more naturally/intuitively expressed in an imperative way -- or an imperative version of an algorithm may be ...
1
vote
1answer
297 views
type safe state handling in functions
So I want to have a bunch of functions that receive a state and return a result with a new state. In essence, the state monad, but without the monadic methods. Unlike the state monad, the state is not ...
4
votes
3answers
602 views
State monad - adapt functions that only work with parts of the state?
I have a general state which is essentially a 3-tuple, and a number of functions which each concern themselves with parts of that state. I'm trying to work out a set of generic adapters for such ...
17
votes
5answers
2k views
Functional Reactive F# - Storing States in Games
I am a student currently learning about Functional Reactive paradigm using F#. It's radically new viewpoint for me. Yesterday I learned about creating a simple ping-pong game using this paradigm. The ...
39
votes
14answers
3k views
How can you do anything useful without mutable state?
I've been reading a lot of stuff about functional programming lately, and I can understand most of it, but the one thing I just can't wrap my head around is stateless coding. It seems to me that ...
26
votes
7answers
8k views
Advantages of stateless programming?
I've recently been learning about functional programming (specifically Haskell, but I've gone through tutorials on Lisp and Erlang as well). While I found the concepts very enlightening, I still don't ...