The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
82 views

Is Functional Programming Similar to Self-Modifying Code? [closed]

It seems that sometimes code in functional programs accepts other code (functions) as arguments and modifies it and returns it for execution. It seems similar to self-modifying code. Does this mean ...
2
votes
1answer
108 views

C++ Compile Time Check for Sideffects

Some compilers support pure and const, but do any offer to check that these assertions hold? For example: int global_value = 42; const int global_value_const = 42; int MyPureFunction __attribute__ ...
5
votes
2answers
146 views

Logging from within a Functional Programming Paradigm

I prefer to stick as closely as possible to the functional paradigm, squeezing as close as I can get to the purely functional when my brain is up for the challenge. I use F# when possible. Usually, ...
10
votes
5answers
456 views

In pure functional languages, is data (strings, ints, floats.. ) also just functions?

I was thinking about pure Object Oriented Languages like Ruby, where everything, including numbers, int, floats, and strings are themselves objects. Is this the same thing with pure functional ...
0
votes
2answers
175 views

Abstract base class that defines a pure virtual function with a void* param. Derived class matching param is a pointer to some type

Revised, actual Base And Derived Class I am working with plus the function that instantiates it and uses the non virtual function call ShaderClass.h #ifndef SHADERCLASS_H #define ...
0
votes
1answer
107 views

how to implement this deep copy in functional programming style?

Given the following structure: class G { Node[] nodes; } class Node { Node neighbour; } The deep copy operations can be defined as: function G copy (G g) { G r = new G(); Map isom ...
17
votes
2answers
451 views

Why is catching an exception non-pure, but throwing an exception is pure?

In Haskell, you can throw an exception from purely functional code, but you can only catch in IO code. Why? Can you catch in other contexts or only the IO monad? How do other purely functional ...
9
votes
2answers
218 views

When is it okay to modify a variable in functional languages?

So I'm teaching myself functional programming using Racket Scheme, and I love it so far. As an exercise for myself, I've been trying to implement a few simple tasks in a purely functional way. I know ...
4
votes
6answers
280 views

Why is printf() an impure function?

As far as I know, impure functions are those which do not always return the same value when called with the same parameters (I must be missing something, or may be wrong, correct me if I am). So why ...
3
votes
3answers
315 views

Difference between `(Integer a) => a -> Bool` and ` Integer -> Bool`?

I wrote my first program in Haskell today. It compiles and runs successfully. And since it is not a typical "Hello World" program, it in fact does much more than that, so please congrats me :D ...
3
votes
3answers
362 views

Practical applications of confluent persistence

I'm just reading Purely Functional Worst Case Constant Time Catenable Sorted Lists by Brodal et al. and their introduction to the different kinds of persistence in the context of data structures ...
5
votes
2answers
528 views

Analysis and Design for Functional Programming [closed]

How do you deal with analysis and design phases when you plan to develop a system using a functional programming language like Haskell? My background is in imperative/object-oriented programming ...
16
votes
1answer
329 views

Timing out pure functions

How can I "kill" a pure calculation which is taking too long? I tried import System.Timeout fact 0 = 1 fact n = n * (fact $ n - 1) main = do maybeNum <- timeout (10 ^ 7) $ (return . fact) ...
7
votes
2answers
547 views

implementing a basic search engine with prefix tree

The problem is the implementing a prefix tree (Trie) in functional language without using any storage and iterative method. I am trying to solve this problem. How should I approach this problem ? Can ...
7
votes
2answers
191 views

How to know when an apparently pure Haskell interface hides unsafe operations?

I have been reading about unsafePerformIO lately, and I would like to ask you something. I'm OK with the fact that a real language should be able to interact with the external environment, so ...
0
votes
1answer
303 views

How to draw application functional diagrams?

I'm trying to find some good reads to clarify this but I'm unable to find it (or maybe I just don't know how to search this properly). What I'm trying to find is, considering that you have an ...
2
votes
1answer
260 views

Editing a purely functional graph

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 ...
4
votes
0answers
109 views

Locally editing a purely functional tree

Let's define a tree T: A / \ B C / \ D E Let's say a new node is added to E, yielding T': A / \ B C / \ D E \ G In a mutable language this is an easy task ...
0
votes
1answer
101 views

How can I iterate properly through this list

The following example is a simplification of the problem. I have a list [Either Foo Bar],and another list [Biz]. The idea is that I iterate each Biz element through [Either Foo Bar] ,from the ...
19
votes
5answers
2k views

Why are “pure” functions called “pure”?

A pure function is one that has no side effects -- it cannot do any kind of I/O and it cannot modify the state of anything -- and it is referentially transparent -- when called multiple times with the ...
31
votes
6answers
1k views

Learning Haskell with a view to learning Scala

I've read a few questions such as Scala vs Haskell discussing the merits of both languages or which to learn, but I already know that I'd like to learn Scala. I was a Java programmer at uni and now ...
7
votes
3answers
239 views

Would the ability to declare Lisp functions 'pure' be beneficial?

I have been reading a lot about Haskell lately, and the benefits that it derives from being a purely functional language. (I'm not interested in discussing monads for Lisp) It makes sense to me to ...
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 ...
3
votes
1answer
144 views

type of a function in D

I'm interested in creating a function Derivative that returns a function that is the derivative of some function that is passed to it, at some point. However, I want to be able to specialize this so ...
9
votes
2answers
400 views

F# PurelyFunctionalDataStructures WeightBiasedLeftistHeap ex 3.4

I'm working on Okasaki's Purely Functional Data Structures and trying to build F# implementations of things. I'm also going through the exercises listed in the book (some are pretty challenging). Well ...
14
votes
3answers
1k views

A way to avoid a common use of unsafePerformIO

I often find this Pattern in Haskell code: options :: MVar OptionRecord options = unsafePerformIO $ newEmptyMVar ... doSomething :: Foo -> Bar doSomething = unsafePerformIO $ do opt <- ...
3
votes
3answers
489 views

Do purely functional languages really guarantee immutability?

In a purely functional language, couldn't one still define an "assignment" operator, say, "<-", such that the command, say, "i <- 3", instead of directly assigning the immutable variable i, ...
16
votes
3answers
777 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 not pure, or ...
4
votes
2answers
226 views

Purely functional equivalent of weakhashmap?

Weak hash tables like Java's weak hash map use weak references to track the collection of unreachable keys by the garbage collector and remove bindings with that key from the collection. Weak hash ...
27
votes
5answers
2k views

What is the benefit of purely functional data structure?

There are large number of texts on data structures, and libraries of data structures code. I understand that purely functional data structure is easier to reason about. However I have trouble to ...
11
votes
3answers
2k views

Purely functional concurrent skip list

Skip lists (Pugh, 1990) provide sorted dictionaries with logarithmic-time operations like search trees but skip lists are much more amenable to concurrent updates. Is it possible to create an ...
18
votes
4answers
5k views

Clojure: working with a java.util.HashMap in an idomatic Clojure fashion

I have a java.util.HashMap object m (a return value from a call to Java code) and I'd like to get a new map with an additional key-value pair. If m were a Clojure map, I could use: (assoc m "key" ...
1
vote
3answers
285 views

Methods for side-effects in purely functional programming languages

At the moment I'm aware of the following methods to integrate side-effects into purely functional programming languages: effect systems continuations unique types monads Monads are often cited to ...
6
votes
1answer
183 views

Is it possible to write an impure template in C++?

Is it possible to write an impure template in C++? That is, a template that will sometimes give a different resulting type or int for the same template parameters. For example, is it possible to write ...
28
votes
8answers
4k views

Efficient heaps in purely functional languages

As an exercise in Haskell, I'm trying to implement heapsort. The heap is usually implemented as an array in imperative languages, but this would be hugely inefficient in purely functional languages. ...