Tagged Questions
66
votes
14answers
4k views
Why did you decide “against” using Erlang?
Have you actually "tried" (means programmed in, not just read an article on it) Erlang and decided against it for a project? If so, why? Also, if you have opted to go back to your old language, or to ...
41
votes
9answers
3k views
How/why do functional languages (specifically Erlang) scale well?
I have been watching the growing visibility of functional programming languages and features for a while. I looked into them and didn't see the reason for the appeal.
Then, recently I attended Kevin ...
26
votes
9answers
3k views
Good resources on using functional programming in game development?
I'm quite new to that functional programming paradigm, but so far I like it. Since I'm into game development, I want to try it out in writing some games in purely functional programming style. I don't ...
21
votes
5answers
2k views
Mixing Erlang and Haskell
If you've bought into the functional programming paradigm, the chances are that you like both Erlang and Haskell. Both have purely functional cores and other goodness such as lightweight threads that ...
16
votes
5answers
367 views
How does one avoid creating an ad-hoc type system in dynamically typed languages?
In every project I've started in languages without type systems, I eventually begin to invent a runtime type system. Maybe the term "type system" is too strong; at the very least, I create a set of ...
16
votes
12answers
2k views
Want to add a functional language to my toolchest. Haskell or Erlang? [closed]
I've been an OO/procedural guy my whole career except in school where I did a lot of logic programming (Prolog). I work on an amazing variety of projects (freelancer) and so I don't want the tools I ...
16
votes
17answers
2k views
Gaining a better understanding of functional programming
What would you recommend for an experienced OO programmer who wants to learn more about functional programming?
Since reading Mark Dominus's Higher Order Perl, I've begun using more functional ...
15
votes
10answers
4k views
Functional languages (Erlang, F#, Haskell, Scala)
1) Are functional languages suited for web applications development?
2) Are functional languages suited for business/ERP/CRM type of applications?
12
votes
7answers
1k views
Distinctive traits of the functional languages
It is known that all functional languages share some basic properties like using functions as basic building block for programs with all the consequences like using recursion instead of iteration. ...
11
votes
3answers
177 views
What is the use of non short-circuiting boolean operators in Erlang?
I am learning Erlang from the LearnYouSomeErlang web-book. One thing that struck me while learning was the non short-circuiting boolean conjunction and disjunction operators viz; and and or. What are ...
11
votes
3answers
1k views
Erlang (Functional Programming) vs Object Oriented Programming in terms of thinking
I am learning Erlang and I am trying to create a very sample blog program. However my mind currently is trapped in the OO world (var p = new Post(); p.Title = ""; p.Save();). I would like to ...
11
votes
4answers
3k views
Erlang vs OCaml (best niche to fit)
Hi I'd like to pick up one FP language (it's always a pain when you work in a position that does not require you learn much), and after doing some research, I felt Erlang and OCaml are the two that ...
9
votes
6answers
483 views
Writing GUI in one language and main app in another
Let's say I write an app in Haskell or Erlang (or any other, doesn't matter) and I want it to work with my gui in a more gui-friendly language (my opinion) let's say Python. How to glue those two? How ...
8
votes
5answers
757 views
Advice on Learning “How to Think Functional”?
As a newbie in functional languages (I started touching Erlang a couple of weeks ago -- the first functional language I could get my hands on).
I started to writing some small algorithms (such as ...
7
votes
6answers
2k views
Learning an additional functional language: Clojure vs. Erlang?
Being a C++/ F-Sharp-Programmer, I am currently considering learning yet another functional language. What do you guys think would be a better option to learn: Clojure or Erlang?
Both languages seem ...
7
votes
3answers
1k views
What are some good Erlang Primers/Tutorials for beginners?
What are some good links for diving into Erlang and functional programming in general?
6
votes
1answer
124 views
laziness and function composition (haskell, erlang)
Can someone please explain or give some resources on how function composition works in relation to laziness?
For example how does filter (/='W') . map toUpper $ "justaword" work in Haskell compared ...
6
votes
2answers
188 views
Scala, Actors, what happens to unread inbox messages?
What happens to unread inbox messages in Scala Actors? For example two cases:1.If forget to implement react case for special message: actor!NoReactCaseMessage2. If messages comes too fast: ...
6
votes
9answers
1k views
Functional Programming: what is an “improper list”?
Could somebody explain what an "improper list" is?
Note: Thanks to all ! All you guys rock!
6
votes
2answers
247 views
How far should I take referential transparency?
I am building a website using erlang, mnesia, and webmachine. Most of the documentation I have read praises the virtues of having referentially transparent functions.
The problem is, all database ...
6
votes
5answers
446 views
immutable java
immutability, any good sources on writing immutable programs in a functional way with java?
shifting over to erlang - scala - clojure is not a possibility.
6
votes
3answers
378 views
How does one use cached data in a functional language such as Erlang?
I've been reading a bit lately about functional languages. Coming from 10+ years of OO development, I'm finding it difficult to get my head around how on earth one can point the pure functional ...
5
votes
12answers
502 views
Recursively sort non-contiguous list to list of contiguous lists
I've been trying to learn a bit of functional programming (with Haskell & Erlang) lately and I'm always amazed at the succinct solutions people can come up with when they can think recursively and ...
5
votes
5answers
340 views
Can I ignore thread safety when programming in Erlang?
I've just started learning about thread safety. This is making me code a lot more defensively, perhaps too defensively.
Would using a functional language like Erlang completely rid me of this ...
5
votes
3answers
517 views
Warnings about unused variables in Erlang
I recently started Erlang, and I notice I constantly get "Warning: variable X is unused" while compiling. For example, take the following function, which finds the maximum element in a list:
...
4
votes
5answers
335 views
Transposing a 2 dimensional matrix in Erlang
Given a matrix like below, transform it, say, 90 degrees into the second matrix below. How would you go about doing this in the cleanest way possible? Short/succinct/clear solutions where the point is ...
4
votes
2answers
283 views
map function in Erlang
In addition to having the map function available with many arities (up to 4), Prolog allows you (under certain circumstances) to map a multiple arity function onto a single list. Say you want to test ...
4
votes
4answers
192 views
Erlang: simple refactoring
Consider the code:
f(command1, UserId) ->
case is_registered(UserId) of
true ->
%% do command1
ok;
false ->
not_registered
end;
...
4
votes
5answers
771 views
How does TDD compare with Functional Programming Languages?
How does TDD compare with Functional Programming Languages like F# and Erlang?
I haven't actually worked directly with a functional programming language yet, but from what I've seen of it, you have ...
4
votes
2answers
196 views
unimportant question about erlang and functional programming
I stumbled upon this question and i realized i forgot a lot of stuff from my nonprocedural programming class.
As I was trying to understand the code it seemed to me that it's terribly long-winded, so ...
4
votes
2answers
737 views
Implementing ESB (Enterprise Service Bus) in a functional language
I am hoping that an architecture question is reasonable on Stackoverflow, so I am asking this here.
I have been trying to see where a functional language would be useful outside of math-oriented ...
4
votes
2answers
435 views
Erlang: doing a good job
I've done a bit of functional programming, and I have a couple online references, so I'm finding basic Erlang programming pretty easy.
But since I've done far more procedural/object-oriented ...
3
votes
1answer
67 views
or-like feature in case … of statement? Or maybe a more generic pattern?
I've been learning Erlang for a while now, and for to learn it I'm writing a IRC bot. This IRC bot should listen to commands in the „!command“ and the „Nick: command“ form. I pre-parse the IRC ...
3
votes
3answers
281 views
Erlang: is it possible to write the minimum function as a list fold?
Given a function:
min(A, B) when A =< B -> A;
min(_A, B) -> B.
can I use this in the function foldlin a similar fashion to this:
lists:foldl(fun min/2, 0, ...
3
votes
3answers
198 views
Practical use of improper lists in Erlang (perhaps all functional languages)
I've been reading Erlang and OTP in action, and stumbled upon a question with regards to improper lists.
Don’t be tempted to use list cells
this way even if you think you have a
clever idea ...
3
votes
5answers
378 views
How can I write simulations in Erlang?
I want to do some numerical stuff in Erlang like this:
You've got an array with the following values:
[2,3,4]
In each iteration, you calculate
0.1 * [n-1] + 0.7 *[n] + 0.2 * [n+1]
This becomes ...
3
votes
3answers
144 views
Erlang : Traversing N by N area
I am looking to traverse a NxN area, given the starting points X,Y and the size of the square to traverse. E.g. given X=10,Y=12,Size=2 - i want to generate 10,10 ; 10,11 ; 11,10 and 11,11.
I came up ...
3
votes
3answers
258 views
need help understanding this erlang code
I'm having trouble understanding this line.
[Pid2 ! {delete, V1a}
|| {Pid1a, V1a} <- PV1a, Pid2 <- P2, Pid1a /= Pid2
],
Here is what I understand:
anything before the double pipe "||" ...
2
votes
4answers
307 views
How to do list concatenation “the correct” way (using tail-recursion)
I'm working on the following Erlang exercise:
Write a function that, given a list of
lists, will concatenate them. Example:
concatenate([[1,2,3], [], [4,five]]) ⇒ [1,2,3,4,five].
And I came ...
2
votes
2answers
353 views
Erlang print 2 list
I have 2 list:
List1 = [1,2,3].
List2 = ["asd", "sda", "dsa"].
How can i print this list in following turn:
1 asd
2 sda
3 dsa
Thank you.
2
votes
3answers
409 views
Will writing my Web appication in a functional programming language such as Haskell or Erlang make it more scalable than J2EE?
I am writing a Facebook application that would use a Postgres DB along with Facebook APIs and run on Amazon EC2. (and I am hoping for heavy loads )
With Java, I know that DB would be my primary ...
2
votes
2answers
255 views
How to efficiently set one bit at a time in an Erlang binary whithout going imperative?
As an exercise I am working on a parallel implementation of the Sieve of Eratosthenes. As part of that I am implementing a sequence of bitmaps, using one bit per number to save memory. Reading bits ...
2
votes
6answers
925 views
Erlang : Returning from a function
I have a function in which I have a series of individual case statements.
case ... of
...
end,
case ... of
...
end,
...
etc.
I want to return from the function immediately when a ...
2
votes
6answers
674 views
right rotate a List in Erlang
I am getting myself familiar to Sequential Erlang (and the functional programming thinking) now. So I want to implement the following two functionality without the help of BIF. One is left_rotate ...
2
votes
5answers
457 views
functional programming model efficiency (Erlang specific)
Hi I am a newbie in the Erlang world. When I think of how we need to solve the following problem (and there are a long list of similar ones), I think it's really inefficient because we are speaking of ...
2
votes
3answers
2k views
How to Search for an item in a List in Erlang?
I am writing a cache gen-server for the company Use. I am wondering how to search an item from the list as I want the cost of the search for comparing various data structures in erlang like dict, ...
1
vote
2answers
125 views
Cons Operator “|” In Erlang
While reading the LearnYouSomeErlang and I found that cons operator is used to get the first element of list. I was a bit confused as to how that works because earlier in the book he mentions that ...
1
vote
2answers
169 views
Looking for critique of my Erlang program
I'm new to Erlang and pretty new to functional programming in general.
I've been having a really good time with Erlang so far (even though Erlang's punctuation has had me trip up a few times ;)), ...
0
votes
3answers
151 views
Erlang pattern matching of a list of records on receive
I'm trying to create a generic receive for a part of my app that requires to wait for several updates at different times.
This is the prototype that it is not working.
receive_info([])->[];
...
0
votes
1answer
192 views
Is it worthwhile learning erlang? [closed]
I was wondering is it worthwhile learning a language like Erlang. I am looking at learning a new language and the following questions are on my mind :
Will learning functional programming help ...