We've stopped offering our services, but you can check our last product which is still in active development.
humadroid.io is an employee and performance management software. It's an unique tool allowing everyone to be in the loop - by having up to date info about co-workers, time-off, benefits, assets, helping with one-on-ones, being a go-to place for company-wide announcements.
Check out humadroid.io
humadroid.io is an employee and performance management software. It's an unique tool allowing everyone to be in the loop - by having up to date info about co-workers, time-off, benefits, assets, helping with one-on-ones, being a go-to place for company-wide announcements.
Check out humadroid.io
Want to learn?
Elixir Course Online | Prograils - Software Development Company
Tuples
Representation
A tuple is similar to a list since it also stores elements of any type. It is, however, intended as a fixed-size container and therefore you should not manipulate its elements, cause if you do, you should use a list instead. You declare tuple elements inside of curly braces:
iex> {}
{}
iex> {1, :two, "three"}
{1, :two, "three"}
Accessing an element takes constant time, but modifying a tuple, which produces a shallow copy, takes linear time. Tuples are useful for reading data while lists are better for traversals. You will see tuples whenever you want to return multiple values from a function. We have not yet covered this topic, but keep it in mind.