Tagged Questions
A property of a function whereby an expression can be replaced by its (evaluated) value without affecting the meaning of the program.
30
votes
6answers
4k views
Is Haskell really a purely functional language considering unsafePerformIO?
Haskell is generally referenced as an example of a purely functional language. How can this be justified given the existence of System.IO.Unsafe.unsafePerformIO ?
Edit: I thought with "purely ...
25
votes
5answers
3k views
What is referential transparency?
What does the term referential transparency mean? I've heard it described as "it means you can replace equals with equals" but this seems like an inadequate explanation.
12
votes
3answers
436 views
Purity vs Referential transparency
The terms do appear to be defined differently, but I've always thought of one implying the other; I can't think of any case when an expression is referentially transparent but nor pure, or ...
12
votes
2answers
581 views
Zipper like data structure with more then one cursor
The Zipper data structure is great when one wants to traverse a tree and keep the current position, but what data structure one should use if they want to track more then one position?
Let me explain ...
11
votes
2answers
350 views
Optimization of Function Calls in Haskell
Not sure what exactly to google for this question, so I'll post it directly to SO:
Variables in Haskell are immutable
Pure functions should result in same values for same arguments
From these two ...
10
votes
4answers
281 views
What to call OOP's equivalent of “referential transparency”?
My understanding is that the term "referential transparency" can really only be applied to functional code. However, a method call on an object in object-oriented code can have a similar property, ...
10
votes
6answers
1k views
Is Haskell truly pure (is any language that deals with input and output outside the system)?
After touching on Monads in respect to functional programming, does the feature actually make a language pure, or is it just another "get out of jail free card" for reasoning of computer systems in ...
10
votes
3answers
1k views
Sampling sequences of random numbers in Haskell
I need small lists of gaussian random numbers for a simulation and so I tried the following:
import System.Random
seed = 10101
gen = mkStdGen seed
boxMuller mu sigma (r1,r2) = mu + sigma * sqrt ...
9
votes
2answers
319 views
What is the most elegant way to deal with an external library with internal state using a function programming language?
I'm currently playing around with Scala development, but I need to integrate with libraries such as box2d to handle physics. The problem is that this requires to depend on an external library which ...
9
votes
7answers
769 views
Are there any purely functional Schemes or Lisps?
I've played around with a few functional programming languages and really enjoy the s-expr syntax used by Lisps (Scheme in particular).
I also see the advantages of working in a purely functional ...
7
votes
2answers
994 views
Finding the shortest path between two points on a grid, using Haskell
This is a problem that I can easily enough solve in a non-functional manner.
But solving it in Haskell is giving me big problems. Me being inexperienced when it comes to functional programming is ...
6
votes
6answers
278 views
What happens if you compile a program that takes no input? (Haskell IO purity issues (again))
putStrLn when called with any arguments will always return a value of type IO (). I agree that's pure, I can handle that. But is it referentially transparent? I think so, because for any given input ...
6
votes
2answers
270 views
Is there a bidirectional multimap persistent data structure?
In other words, can we model many to many relationships in a persistent data structure efficiently?
A pair of unidirectional multimaps was suggested. However, I'm not sure how this would work well ...
6
votes
5answers
259 views
understanding referential transparency
Generally, I have a headache because something is wrong with my reasoning:
For 1 set of arguments, referential transparent function will always return 1 set of output values.
that means that such ...
5
votes
3answers
259 views
How to write a haskell function without IO in type sig by hiding 'state' changes
I wrote a function in haskell that takes a few parameters like Word32, String (ignore currying) and outputs IO Word32. Now, this is a function in the true sense: for the same inputs, the output will ...
5
votes
5answers
2k views
Does Haskell have variables?
I've frequently heard claims that Haskell doesn't have varibles; in particular, this answer claims that it doesn't, and it was upvoted at least nine times and accepted.
So does it have variables or ...
4
votes
2answers
304 views
How to catch (and ignore) a call to the error function?
I'm surprised I couldn't find an answer to this anywhere.
I'm writing a roguelike and I'm using the ncurses library from hackage, which is a pretty good wrapper around the ncurses library. Now ...
4
votes
3answers
277 views
How do functional languages model side-effects?
Since side-effects break referential transparency, don't they go against the point of functional languages?
3
votes
4answers
319 views
Recursively modifying parts of a data structure in Haskell
Hello guys I am new to Haskell, I would like to create a Haskell Program that can apply DeMorgan's laws on logic expressions. The problem is I can't change the given expression to a new expression ...
3
votes
2answers
150 views
Referential transparency in OCaml
I'm trying to reconcile the definition of referential transparency with how OCaml handles polymorphic types and side-effects. I read on ...
3
votes
4answers
552 views
Random-Pivot Quicksort in Haskell
Is it possible to implement a quicksort in Haskell (with RANDOM-PIVOT) that still has a simple Ord a => [a]->[a] signature?
I'm starting to understand Monads, and, for now, I'm kind of ...
3
votes
3answers
258 views
Why does laziness go well with referential transparency?
I was reading a Haskell tutorial (Learn You a Haskell) in which the author said that laziness goes well with referential transparency. After more reading and some searching, I still don't understand ...
2
votes
3answers
289 views
Languages with immutable variables by default, like Haskell
one thing that I find fascinating about Haskell is how functions and variables are the same. In most languages a variable holds a value while a function does something and then, eventually, returns a ...
2
votes
1answer
165 views
Referential Transparency
What is the meaning of the term "Non-observable" when used in context with the term "referentially transparent" in functional programming?
2
votes
1answer
54 views
Is there processor/plugin out there that would enforce referential-transparency, immutabiliyt, etc. in Java?
It seems pretty straightforward:
For example, an @Immutable on a class that the processor would then give error if there were any non-final field accesses. It would have to ensure that all ...
2
votes
3answers
266 views
Is there any benefit to porting the Haskell Edison API and Core to F#?
The Edison API and Core modules are the Haskell implementation of Purely Functional Data Structures
Do the F# and native .Net data structures cover use cases in the Edison API and Core sufficiently?
...
1
vote
2answers
54 views
Python Generator - Mutate Last Result?
I'm trying to decide between the following two definitions of my generator. Which is better? Which is "more pythonic"? And is there anyway to mitigate the drawbacks of each one?
def ...
1
vote
3answers
227 views
Extending of pure function with IO code possible?
I've written a simple XML parser in Haskell.
The function convertXML recieves contents of a XML file and returns a list of extracted values that are further processed.
One attribute of XML tag ...
0
votes
3answers
357 views
Class set method in Haskell using State-Monad
I've recently had a look at Haskell's Monad - State. I've been able to create functions that operate with this Monad, but I'm trying to encapsulate the behavior into a class, basically I'm trying to ...