Tagged Questions
0
votes
1answer
97 views
What replaces the MVC pattern in functional programming?
I'm a MVC web developer who's become very interested in functional programming to write web apps (specifically, I'm captivated by Erlang and Cowboy.)
What I'm having trouble finding an answer ...
0
votes
2answers
148 views
Performance tools for erlang
When writing a function like factorial:
fac(Val) when is_integer(Val)->
Visit = fun (X, _F) when X < 2 ->
1;
(X, F) ->
X * F(X ...
0
votes
2answers
78 views
How can I handle Account Number in erlang?
I'm making Bank Account Management system using ETS which will also hold current and savings account, I'm unable to figure it out that how can I generate and retain the series of account numbers since ...
0
votes
2answers
56 views
Two tables with different names and using the single record cannot be created, how can I implent this?
I'm trying to create two tables using the same record, with two different names, but it creates only any one of them or sometimes throws an exception.
Following is the code from my record file:
...
3
votes
3answers
104 views
Erlang: elegant tuple_to_list/1
I'm getting myself introduced to Erlang by Armstrongs "Programming Erlang". One Exercise is to write a reeimplementation of the tuple_to_list/1 BIF. My solution seems rather inelegant to me, ...
1
vote
4answers
92 views
case statements in lambdas
Is it possible to incorporate case statements in a lambda?
I'm trying to make a function that recursively adds two numbers recursively in Erlang with no luck.
Mult = fun(X) -> (fun(Y) -> case ...
5
votes
5answers
285 views
How do Erlang actors differ from OOP objects?
Suppose I have an Erlang actor defined like this:
counter(Num) ->
receive
{From, increment} ->
From ! {self(), new_value, Num + 1}
counter(Num + 1);
end.
And ...
2
votes
1answer
108 views
Erlang : Conditions involving user-defined functions on objects that are not pattern-matchable
In an Erlang code, I am using a dictionary like data structure which has a list of {tag, value}. eg: {robot, [{x-pos, 50}, {y-pos, 100}, {speed, 10}]. The number of elements in the list or it's order ...
0
votes
1answer
70 views
How to know if the user is online providing only the username/nick/participant but not the whole JID (Ejabberd)
I am customising module mod_muc_room and I would like to add a function that knows if the user is online but only providing the username. In the module I can find the function is_user_online:
...
0
votes
1answer
97 views
Remove & quote; and elements of a list ( erlang )
I have a record list which I want to display as a string, and then pass to an XML attribute:
Li = (get the record),
LOOKS LIKE:
?INFO_MSG("LIST::::: ~p~n", [?SETS:to_list(Li)]),
...
2
votes
1answer
135 views
How to use closures in Erlang?
I have two lists: L and E. I try to write a function, which returns another list with number of occurences from L for elements in E.
-module(mymodule).
-export([count/2]).
...
3
votes
3answers
258 views
Erlang list vs tuple comparison
Assume that there is an erlang list of lists:
Note that the size of the lists are fixed. In this case 3.
A = [[1,2,3],[4,5,6],[1,8,3],[1,9,3]]
I am trying to write function which will drop all ...
1
vote
1answer
222 views
Erlang syntax for nested function with if
I've been looking around and can't find examples of this and all of my syntax wrestling skills are failing me. Can someone please tell me how to make this compile?? My ,s ;s or .s are just wrong I ...
4
votes
2answers
258 views
Erlang equivalents of Haskell where/partial/lambda
Coming from Haskell to play with Nitrogen and running into a few things I can't find examples of, so if somebody could help me out:
Haskell's where (and or let or any type of function nesting with ...
41
votes
3answers
2k views
What's the status of current Functional Reactive Programming implementations?
I'm trying to visualize some simple automatic physical systems (such things as pendulum, robot arms,etc.) in Haskell.
Often those systems can be described by equations like
df/dt = c*f(t) + u(t)
...
5
votes
3answers
182 views
Cartesian Power of a list in Erlang
I'm trying to code an erlang Mastermind solver as an exercise (I'm a complete newbie, but I reckon it's an interesting exercise for a functional language)
I want it to be as general as possible, so I ...
8
votes
1answer
2k views
Erlang Concurrency Model vs Scala vs Golang [closed]
Recently, I've been searching deeply on Functional Programming. And by that I got to know quite a bit about Erlang and its concurrency model.
Surprisingly (for me at least) I found that it (Erlang) ...
0
votes
2answers
268 views
Erlang if else statement
Im trying to do a method where it checks the value of two atoms, if they are equivalent to each other it gonna say it's false and the other way around, if they aren't equivalent it's gonna be true.
...
0
votes
1answer
496 views
Why no functional programming languages became mainstream [closed]
Given so much praise for languages such as haskell, erlang, why none of them can become a mainstream language?
Is it due to their learning curve? Or too much symbol notation?
2
votes
3answers
289 views
The Purpose of Single Assignment
I'm currently trying to master Erlang. It's the first functional programming language that I look into and I noticed that in Erlang, each assignments that you do is a single assignment. And ...
0
votes
2answers
236 views
Erlang Iterating through list removing one element
I have the following erlang code:
lists:all(fun(Element) -> somefunction(TestCase -- [Element]) end, TestCase).
Where TestCase is an array. I'm trying to iterate over the list/array with one ...
10
votes
5answers
789 views
Is Erlang “single assignment” different from Haskell “immutable values”?
In the "Programming Erlang" book it's said that the language uses "single assignment" variables. In other articles about functional programming languages I always read of "immutable values" instead.
...
0
votes
4answers
76 views
Get rid of empty lists in a result of calling a sequence of nested functions
Let's say we have a function:
generate([],Result) ->
Result;
generate([H|T],Result) ->
case H > 0 of
true -> generate(T,[H*2|Result]);
false -> ...
-1
votes
2answers
262 views
erlang string list concatenation [closed]
I have the following property list
PropList = [{numbers, ["22", "10"]}, {etc, "22"}].
I wish to get out the list ["22", "10"] like this:
proplists:get_value(numbers, PropList).
The problem is ...
8
votes
1answer
442 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 ...
1
vote
2answers
555 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 ...
14
votes
3answers
229 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 ...
0
votes
3answers
354 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([])->[];
...
6
votes
2answers
299 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: ...
0
votes
1answer
671 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 ...
3
votes
1answer
74 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 ...
11
votes
6answers
708 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 ...
13
votes
6answers
6k 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 ...
1
vote
3answers
268 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 ;)), ...
5
votes
5answers
968 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
3answers
604 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, ...
5
votes
3answers
414 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 ...
2
votes
4answers
487 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 ...
5
votes
12answers
617 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 ...
2
votes
2answers
900 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.
4
votes
2answers
525 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 ...
16
votes
5answers
409 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 ...
0
votes
3answers
506 views
Replace in a list in Erlang
I'm trying to learn some Erlang and having trouble figuring out the best approach for a particular problem. Here's what I'm doing:
I have a big 2-D array of data (list of lists) whose values are ...
5
votes
5answers
443 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 ...
29
votes
12answers
8k 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 ...
4
votes
4answers
237 views
Erlang: simple refactoring
Consider the code:
f(command1, UserId) ->
case is_registered(UserId) of
true ->
%% do command1
ok;
false ->
not_registered
end;
...
3
votes
5answers
529 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 ...
2
votes
3answers
524 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 ...
12
votes
4answers
2k views
Is Erlang really a functional language?
I hear all the time that Erlang is a functional language, yet it is easy to call databases or non side-effect free code from a function, and commands are easily ordered by using "," commas between ...
5
votes
5answers
1k 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 ...

