-
-
Save binarytemple/50126256632b228e6ab1e90b189660f9 to your computer and use it in GitHub Desktop.
Interesting Atom Module
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-module(all_atoms). | |
-export([all_atoms/0, node_atoms/0, node_atoms/1]). | |
atom_by_number(Index) -> | |
binary_to_term(<<131,75,Index:24>>). | |
all_atoms() -> | |
atoms_starting_at(0). | |
atoms_starting_at(Index) -> | |
try atom_by_number(Index) of | |
Atom -> | |
[{Atom,Index}] ++ atoms_starting_at(Index + 1) | |
catch | |
error:badarg -> | |
[] | |
end. | |
node_atoms() -> | |
node_atoms(all_atoms()). | |
node_atoms(List) when is_list(List) -> | |
FilterFun = fun({Atom,_Index}) when is_atom(Atom) -> length(string:tokens(atom_to_list(Atom),"@")) == 2 end, | |
lists:filter(FilterFun, List). | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment