Erlang – put

In this guide, we will discuss Erlang Put. This method is used to put a key, value pair in the process dictionary. Syntax put(key,value) Parameters key βˆ’ The key which needs to be…

Continue ReadingErlang – put

Erlang – get

In this guide, we will discuss Erlang get. The method returns the process dictionary as a list. Syntax get() Parameters None Return Value The method returns the process dictionary as…

Continue ReadingErlang – get

Erlang – element

In this guide, we will discuss Erlang element. The method returns the Nth element in the tuple. Syntax element(N,Tuple) Parameters N βˆ’ The position in the tuple which needs to be returned.Tuple βˆ’…

Continue ReadingErlang – element