Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只想使用ordered_set 类型的ets。
但我输入的术语是存储在 Erlang 术语排序中,如 1、2、3、4...
如何以相反的顺序存储 Erlang 术语,如 4、3、2、1
这是不可能的。ordered_set与标准 Erlang 术语顺序一起使用,并且无法覆盖它。但是您可以使用ets:lastandets:prev从最后一个存储项迭代到第一个存储项。
ordered_set
ets:last
ets:prev