python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Implement a lists:map using case clauses instead of function clauses in Erlang
Can anyone tell me what this means? I am new to this and my friend recommended me to post in this website.
By the way I'm new to Erlang.
If possible I want to write a code in editor and I don't even u...
Shree
Votes: 0
Answers: 3
Erlang: gen_server in supervisor does not restart at the last known state
I'm working in Erlang with a supervisor that looks like this:
-module(a_sup).
-behaviour(supervisor).
%% API
-export([start_link/0, init/1]).
start_link() ->
supervisor:start_link({local,?MODUL...
scottstots
Votes: 0
Answers: 1
Iterate over a list and apply modulus/remainder to each element
A method that returns a new list formed by applying the second argument as a modulus operand on each list member, with two arguments: a list and a numerical value.
My current method only applies modul...
armeenf
Votes: 0
Answers: 2
How to include library in Erlang\OTP
I'm new in RabbitMQ, I want to use rabbitmq with ssl (AMQPs). Now the issue is when I read the Erlang/OTP Requirements for TLS Support, and checked my erlang setup with command code:all_loaded(). I go...
Kalpesh Panchal
Votes: 0
Answers: 1