deepblue
deepblue

Reputation: 8596

Erlang frames - dictionary datatype

I ran into some texts about the introduction of a "frame" datatype into Erlang, basically a dictionary(associative array) type thats common in other languages... one that would be preserved at runtime (unlike records)... any ideas about where this innitiative is at? will it be implemented in R13? R14? would be very usefull... I used "dict" quite often, however a built in datatype thats more lightweight would be much cooler

thanks

Upvotes: 1

Views: 809

Answers (1)

gleber
gleber

Reputation: 4392

As far as I know no one from Erlang/OTP team stated official position on this proposal. Moreover there is still no formal EEP on the subject. Though a lot of developers support this proposal, but compromise on syntax and some semantics is still to be reached. For more information see erlang-questions mailing list archive.

Upvotes: 3

Related Questions