Most voted "erlang" questions
Erlang is a general purpose Runtime programming language and environment, with Garbage Collection, root support for competition, distribution and fault tolerance.
Learn more…9 questions
Sort by count of
-
13
votes2
answers1533
viewsMaterial for the study of functional languages: scala, Haskell and Erlang
Well, I asked a question recently and it was suspended because it is a matter of opinion of each person, so here I repeat my question to be more clear what I want: Could someone please pass me…
-
8
votes1
answer1009
viewsFunctional Programming and Referential Transparency
Referential transparency assures me that given the same input values for a function, it will always give me the same return value. As I would have to do in the case of a function that accesses the…
javascript functional-programming haskell erlang f#asked 9 years, 4 months ago Henri Cavalcante 384 -
6
votes1
answer63
viewsWhat are the differences between comparison operators in Erlang?
In Erlang, we have the following comparison operators: =:= =/= == /= It is said that the latter two can be used to make comparison between integers and floats, since the first two differentiate one…
-
4
votes1
answer200
viewsBasic competition in Erlang
Adapted of this issue no stack overflow international, whose answer is my own. The next code was given in a class. We tested the code, but I didn’t really understand how it works. How this code…
-
3
votes1
answer262
viewsIntegrate nodejs (frontend) and C ,Erlang, Go...(backend)
I have a system to be developed that will need to handle a lot of simultaneous requests, where each of these requests will probably involve some task that requires a lot of processing. Researching…
-
3
votes1
answer259
viewsWhat algorithm is that?
Knowing that: [] denotes an array [A|B] extracts the first element of the array in A and the rest of the array in B [X, Y] ++ [Z] creates a concatenated array [X, Y, Z] [ X || X <- [1, 2, 3, 4],…
-
3
votes2
answers178
viewsDuck type in Elixir
[5,a,15] = [5,10,15] Doing this type of assignment in Elixir is Duck Typing or are different concepts? I ask because I was left with doubt since on the left side is declared a "variable" without an…
-
3
votes1
answer63
viewsHow to extract a binary from a string?
I have the following decimal list in Erlang: "01000001" == [48, 49, 49, 49, 49, 49, 48] I need to create a binary type from that list, so: <<01000001>> == <<"A">> I tried to…
-
2
votes1
answer51
viewsExtract arguments from a Erlang URL
I need a lot of help in Erlang because I’m a beginner in language. I am doing a job with some friends that consists in the development of a bus oriented to service, allowing to manipulate several…
erlangasked 9 years, 7 months ago Raphael Magalhães Hoed 21